diff --git a/.gitignore b/.gitignore index 1ded53a1..bd43984b 100644 --- a/.gitignore +++ b/.gitignore @@ -7,6 +7,7 @@ .idea/ media/ media +logs/ Thumbs.db npm-debug.log /proj/local.py @@ -14,4 +15,4 @@ npm-debug.log -node_modules \ No newline at end of file +node_modules diff --git a/accounts/admin.py b/accounts/admin.py index d267f0d1..9457de21 100644 --- a/accounts/admin.py +++ b/accounts/admin.py @@ -13,14 +13,20 @@ from django.utils.translation import ugettext as _ from models import User from forms import UserForm, UserCreationForm, ChangePasswordForm, EmailAnnouncementForm, UserFilterForm #custom views -from functions.admin_views import AdminView, AdminListView from django.views.generic import UpdateView +from functions.admin_views import AdminView, AdminListView, paginate_results class UserListView(AdminListView): template_name = 'admin/accounts/user_list.html' form_class = UserFilterForm model = User + def get_context_data(self, **kwargs): + context = super(UserListView, self).get_context_data(**kwargs) + qs = self.model.objects.all() + result = paginate_results(qs, page=self.request.GET.get('page')) + context['object_list'] = result + return context class EditUser(UpdateView): model = User diff --git a/accounts/admin_urls.py b/accounts/admin_urls.py index 225255e1..66e92a22 100644 --- a/accounts/admin_urls.py +++ b/accounts/admin_urls.py @@ -3,10 +3,6 @@ from django.conf.urls import patterns, url from admin import UserListView, EditUser urlpatterns = patterns('', - #url(r'^registration/$', 'accounts.admin.registration'), - #url(r'^create_admin/$', 'accounts.admin.create_admin'), - #url(r'^create_md5user/$', 'accounts.admin.create_md5'), - # url(r'^change/(?P.*)/$', EditUser.as_view()), url(r'^change/(?P.*)/$', 'accounts.admin.user_change'), url(r'^all/$', UserListView.as_view()), url(r'^reset_password_email/$', 'accounts.admin.reset_password_email'), diff --git a/accounts/forms.py b/accounts/forms.py index 395ac037..2e9bc922 100644 --- a/accounts/forms.py +++ b/accounts/forms.py @@ -83,9 +83,7 @@ class UserForm(forms.ModelForm): company = forms.ChoiceField(label='Компания', choices=[(item.id, item.name) for item in Company.objects.language().all()], required=False) - organiser = forms.ChoiceField(label='Организатор', - choices=[(item.id, item.name) for item in Organiser.objects.language().all()], - required=False, initial=None) + title = forms.CharField(widget=forms.TextInput(attrs={'style': 'width: 550px'}), required=False) descriptions = forms.CharField(widget=forms.TextInput(attrs={'style': 'width: 550px'}), required=False) keywords = forms.CharField(widget=forms.TextInput(attrs={'style': 'width: 550px'}), required=False) @@ -105,9 +103,9 @@ class UserForm(forms.ModelForm): class Meta: model = User - exclude = ('username', 'email', 'last_login', 'password', 'is_admin', 'rating', 'is_superuser', 'is_staff' + exclude = ('organiser', 'username', 'email', 'last_login', 'password', 'is_admin', 'rating', 'is_superuser', 'is_staff' 'date_joined', - 'date_registered', 'date_modified') + 'date_registered', 'date_modified', 'is_active') def save(self, force_insert=False, force_update=False, commit=True): @@ -139,16 +137,16 @@ class UserForm(forms.ModelForm): profile.save() return user - def clean_url(self): - url = self.cleaned_data.get('url') - if url: - if User.objects.get(url=translit_with_separator(url)): - raise forms.ValidationError('Такой урл уже занят') - else: - return url - - def clean_organiser(self): - return clean_relation_field(self, 'organiser', Organiser) + #def clean_url(self): + # url = self.cleaned_data.get('url') + # if url: + # if User.objects.get(url=translit_with_separator(url)): + # raise forms.ValidationError('Такой урл уже занят') + # else: + # return url + + #def clean_organiser(self): + # return clean_relation_field(self, 'organiser', Organiser) def clean_company(self): return clean_relation_field(self, 'company', Company) diff --git a/accounts/models.py b/accounts/models.py index ce4e4b47..2c83a17b 100644 --- a/accounts/models.py +++ b/accounts/models.py @@ -144,6 +144,9 @@ class User(AbstractBaseUser, PermissionsMixin): class Meta: ordering=['-rating'] + def is_organiser(self): + return bool(self.organiser) + def get_full_name(self): """ Returns the first_name plus the last_name, with a space in between. diff --git a/accounts/views.py b/accounts/views.py index e4eb1243..c6cc53b5 100644 --- a/accounts/views.py +++ b/accounts/views.py @@ -8,7 +8,8 @@ from django.contrib.auth.decorators import login_required from django.utils.translation import ugettext as _, get_language from django.utils import timezone from django_messages.forms import SendForm -from django.views.generic import TemplateView, FormView, ListView +from django.views.generic import TemplateView, FormView +from functions.custom_views import ListView from sorl.thumbnail import get_thumbnail from .forms import ChangePasswordForm, EmailAnnouncementForm, FeedFilterForm from company.forms import CreateCompanyForm diff --git a/article/admin.py b/article/admin.py index 94a892a3..ff178cee 100644 --- a/article/admin.py +++ b/article/admin.py @@ -5,6 +5,7 @@ from django.core.context_processors import csrf from django.conf import settings from django.contrib.auth.decorators import login_required from django.contrib.contenttypes.models import ContentType +from django.views.generic import DeleteView #models and forms from forms import ArticleForm, ArticleDeleteForm, Article, NewsForm from theme.models import Tag @@ -16,6 +17,18 @@ from functions.custom_views import objects_list, add_object_with_file, delete_ob from functions.views_help import get_referer +class ArticleDeleteView(DeleteView): + model = Article + template_name = "admin/article/article_confirm_delete.html" + + def get_success_url(self): + if self.object.type == 1: + type = "blog" + else: + type = "news" + return "/admin/article/%s/all/" % type + + def article_all(request): """ Return list of all articles with pagination diff --git a/article/admin_urls.py b/article/admin_urls.py index cbc9b1f6..ed180fb2 100644 --- a/article/admin_urls.py +++ b/article/admin_urls.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- from django.conf.urls import patterns, url -from admin import BlogList, BlogView, NewsList, NewsView +from admin import BlogList, BlogView, NewsList, NewsView, ArticleDeleteView urlpatterns = patterns('article.admin', @@ -11,6 +11,7 @@ urlpatterns = patterns('article.admin', #url(r'^all/$', 'article_all'), url(r'^blog/all/$', BlogList.as_view()), url(r'^blog/$', BlogView.as_view()), + url(r'^delete/(?P.*)/$', ArticleDeleteView.as_view()), url(r'^news/all/$', NewsList.as_view()), url(r'^news/$', NewsView.as_view()), diff --git a/article/views.py b/article/views.py index 4b421db2..952e4193 100644 --- a/article/views.py +++ b/article/views.py @@ -1,6 +1,7 @@ # -*- coding: utf-8 -*- import json -from django.views.generic import DetailView, ListView +from django.views.generic import DetailView +from functions.custom_views import ListView from django.http import HttpResponse from models import Article from forms import ArticleFilterForm @@ -9,6 +10,7 @@ from meta.views import MetadataMixin + class NewsList(MetadataMixin, ListView): model = Article template_name = 'article/news_list.html' @@ -52,7 +54,6 @@ class NewsList(MetadataMixin, ListView): return context - class NewsDetail(MetadataMixin, DetailView): model = Article slug_field = 'slug' diff --git a/company/views.py b/company/views.py index 80a04032..d77a6ca2 100644 --- a/company/views.py +++ b/company/views.py @@ -2,7 +2,8 @@ import json from django.http import HttpResponse from django.conf import settings -from django.views.generic import ListView, DetailView +from django.views.generic import DetailView +from functions.custom_views import ListView from django.shortcuts import get_object_or_404 from django.utils.translation import ugettext as _, get_language from haystack.query import EmptySearchQuerySet @@ -21,7 +22,7 @@ from meta.views import MetadataMixin class CompanySearchView(ListView): paginate_by = 10 - template_name = 'company/search.html' + template_name = 'client/company/search.html' search_form = CompanySearchForm model = Company diff --git a/conference/views.py b/conference/views.py index bbbc63c6..c5a854e8 100644 --- a/conference/views.py +++ b/conference/views.py @@ -6,7 +6,8 @@ from django.http import HttpResponse, Http404, HttpResponseRedirect, HttpRespons from django.contrib import messages from django.shortcuts import get_object_or_404 from django.contrib.contenttypes.models import ContentType -from django.views.generic import ListView, DetailView +from django.views.generic import DetailView +from functions.custom_views import ListView from django.views.generic.edit import FormMixin from django.utils.translation import ugettext as _ from django.utils import translation diff --git a/core/admin_urls.py b/core/admin_urls.py index 81e844eb..bc8bb409 100644 --- a/core/admin_urls.py +++ b/core/admin_urls.py @@ -1,10 +1,10 @@ -from django.conf.urls import url, patterns -from views import NewPage, PageList, EditPage, DeletePage, PageDetailed - -urlpatterns = patterns('', - url(r'^new/$', NewPage.as_view(), name='new_page' ), - url(r'^all/$', PageList.as_view(), name = 'page_list'), - url(r'^edit/(?P.*)/$', EditPage.as_view(), name='edit_page'), - url(r'^delete/(?P.*)/$', DeletePage.as_view(), name='delete_page'), - url(r'^(?P.*)/$', PageDetailed.as_view(), name='page_view'), -) +from django.conf.urls import url, patterns +from views import NewPage, PageList, EditPage, DeletePage, PageDetailed + +urlpatterns = patterns('', + url(r'^new/$', NewPage.as_view(), name='new_page' ), + url(r'^all/$', PageList.as_view(), name = 'page_list'), + url(r'^edit/(?P.*)/$', EditPage.as_view(), name='edit_page'), + url(r'^delete/(?P.*)/$', DeletePage.as_view(), name='delete_page'), + url(r'^(?P.*)/$', PageDetailed.as_view(), name='page_view'), +) diff --git a/core/forms.py b/core/forms.py index 6244f97e..d00f080e 100644 --- a/core/forms.py +++ b/core/forms.py @@ -61,21 +61,12 @@ class PageForm(TranslatableModelForm): class Meta: model = Page - fields = ['url','title','h1','descriptions','keywords', 'body' ] + fields = ['url','title','h1','descriptions','keywords', 'body'] widgets = { 'body':CKEditorWidget, 'keywords':Textarea, 'descriptions':Textarea, } - def clean_url(self): - url = self.cleaned_data.get('url', None) - if url[0] == '/': - url = url[1:] - if url[-1] == '/': - url = url[:-1] - if ' ' in url: - url.replace(' ', '_') - return url diff --git a/core/models.py b/core/models.py index 268a7009..56d75875 100644 --- a/core/models.py +++ b/core/models.py @@ -4,7 +4,7 @@ from django.shortcuts import get_object_or_404 from django.db import models from exposition.models import Exposition -from settings.models import create_transl_fields +import copy from theme.models import Theme from country.models import Country from city.models import City @@ -114,24 +114,39 @@ class Page(TranslatableModel): def get_absolute_url(self): return reverse('page_view', args=[self.url]) + def __init__(self, *args, **kwargs): + super(Page, self).__init__(*args, **kwargs) + self.cache_fields = ['h1', 'body','title', 'description', 'keywords'] + self.var_cache = {var: copy.copy(getattr(self, var)) for var in self.cache_fields} + self.is_new = True + def save(self, *args, **kwargs): super(Page,self).save(*args, **kwargs) - - all_field_names = list(self._translated_field_names) - clear_f_n = [] - for field_name in all_field_names: - if field_name not in ['master', 'master_id',u'id', 'language_code']: - clear_f_n.append(field_name) - field_items = {field_name:getattr(self, field_name) for field_name in clear_f_n} - - langs = [lan[0] for lan in settings.LANGUAGES] - for lang in langs: - if lang not in self.get_available_languages(): - self.translate(lang) - for field in clear_f_n: - setattr(self, field, field_items.get(field, '')) - obj = super(Page,self).save(*args, **kwargs) - return obj + self.initial_language = 'ru' + + new_values = {field: getattr(self, field) for field in self.cache_fields} + langs = [code for code, _ in settings.LANGUAGES] + if self.is_new: + for lang in langs: + if lang not in self.get_available_languages(): + self.translate(lang) + for key, value in new_values.items(): + setattr(self, key, value) + self.save_translations(self) + else: + translations = {obj.language_code:obj for obj in list(self.translations.all())} + for lang in langs: + if lang is not self.initial_language: + tr = translations[lang] + for key, value in new_values.items(): + #if u'%s' % getattr(self, key) is u'' or getattr(self, key) is u'%s' % self.var_cache[key]: + setattr(tr, key, value) + tr.save() + + self.lazy_translation_getter(self.initial_language) + self.var_cache = {var: copy.copy(getattr(self, var)) for var in self.cache_fields} + self.is_new = False + return self def __unicode__(self): return self.url diff --git a/core/urls.py b/core/urls.py index 88f2e7c0..b449ce91 100644 --- a/core/urls.py +++ b/core/urls.py @@ -1,11 +1,11 @@ -from django.conf.urls import url, patterns -from models import LatestExpositions, CountryFeeds, CityFeeds, ThemeFeeds - - -urlpatterns = patterns('', - url(r'^latest/$', LatestExpositions()), - url(r'^country/(?P.*)/$', CountryFeeds()), - url(r'^city/(?P.*)/$', CityFeeds()), - url(r'^theme/(?P.*)/$', ThemeFeeds()), - -) +from django.conf.urls import url, patterns +from models import LatestExpositions, CountryFeeds, CityFeeds, ThemeFeeds + + +urlpatterns = patterns('', + url(r'^latest/$', LatestExpositions()), + url(r'^country/(?P.*)/$', CountryFeeds()), + url(r'^city/(?P.*)/$', CityFeeds()), + url(r'^theme/(?P.*)/$', ThemeFeeds()), + +) diff --git a/core/utils.py b/core/utils.py index ee429eee..37a7f4ce 100644 --- a/core/utils.py +++ b/core/utils.py @@ -1,11 +1,11 @@ # -*- coding: utf-8 -*- +""" +http://www.simplistix.co.uk/presentations/python-excel.pdf + +""" import xlwt import datetime - -from exposition.models import Exposition -from conference.models import Conference - from django.core.exceptions import ObjectDoesNotExist HEADER_STYLE = xlwt.easyxf('font: bold on') @@ -16,6 +16,7 @@ CELL_STYLE_MAP = ( (bool, xlwt.easyxf(num_format_str='BOOLEAN')), ) + def multi_getattr(obj, attr, default=None): attributes = attr.split(".") for i in attributes: @@ -42,33 +43,65 @@ def get_column_cell(obj, name): return ', '.join(unicode(x).strip() for x in attr.all()) return attr -def queryset_to_workbook(queryset, columns, header_style=None, default_style=None, cell_style_map=None): + +def queryset_to_workbook(queryset, columns, report_date = None): + + # defining styles for different types of cells + main_style = xlwt.Style.easyxf( + "font: name Calibri, height 600, bold False;" + "borders: left thin, right thin, top thin, bottom thin;" + "alignment: horizontal left, vertical center, indent 7;" + "pattern: pattern solid, fore_colour white;" + ) + + header_style = xlwt.Style.easyxf( + 'font: name Calibri, height 400, bold False;' + 'borders: left no_line, right no_line, top thin, bottom thin;' + 'alignment: horizontal center, shrink_to_fit True;' + 'pattern: pattern solid, fore_color gray_ega;', + ) + odd_style = xlwt.Style.easyxf( + 'font: name Calibri, height 300, bold False;' + 'borders: left thin, right thin, top thin, bottom thin;' + 'alignment: horizontal center, wrap True;' + 'pattern: pattern solid, fore_color white;', + ) + even_style = xlwt.Style.easyxf( + 'font: name Calibri, height 300, bold False;' + 'borders: left thin, right thin, top thin, bottom thin;' + 'alignment: horizontal center, wrap True;' + 'pattern: pattern solid, fore_color silver_ega;', + ) + # creating workbook and adding sheet workbook = xlwt.Workbook() - report_date = datetime.date.today() - sheet_name = 'Export {0}'.format(report_date.strftime('%Y-%m-%d')) + report_date = report_date or datetime.date.today() + sheet_name = u'My calendar {0}'.format(report_date.strftime('%Y-%B')) sheet = workbook.add_sheet(sheet_name) - if not header_style: - header_style = HEADER_STYLE - if not default_style: - default_style = DEFAULT_STYLE - if not cell_style_map: - cell_style_map = CELL_STYLE_MAP - - obj = queryset[0] - - for y, column in enumerate(columns): - header_list=[u'Название события',u'Страна',u'Город',u'Место проведения', u'Дата начала', u'Дата окончания'] - - sheet.write(0, y, header_list[y], header_style) - - for x, obj in enumerate(queryset, start=1): + # drawing head part with image + sheet.write_merge(0, 6, 0, 6, u'Мой календарь собитий на %s года' % report_date.strftime("%B %Y"), main_style) + for i in range(7): + sheet.row(i).set_style(xlwt.Style.easyxf('font:height 300;')) + sheet.insert_bitmap('/home/www/proj/media/logo.bmp', row=0, col=5, x=0, y=0, scale_x=0.3, scale_y=2) + + # drawing headers + header_list = [u'#', u'Название события',u'Даты',u'Краткое описание',u'Место проведения', u'Заметка', u'Ссылка на событие'] + for i, column in enumerate(columns): + sheet.write(8, i, header_list[i], header_style) + sheet.col(i).width = 8000 + sheet.col(0).width = 2000 + + # fill data + for x, obj in enumerate(queryset, start=9): for y, column in enumerate(columns): - value = get_column_cell(obj, column) - style = default_style - for value_type, cell_style in cell_style_map: - if isinstance(value, value_type): - style = cell_style + try: + value = getattr(obj, column) + except: + value = "-" + if x % 2 == 0: + style = even_style + else: + style = odd_style sheet.write(x, y, value, style) return workbook diff --git a/core/views.py b/core/views.py index 9e0af308..1ad5be9a 100644 --- a/core/views.py +++ b/core/views.py @@ -1,10 +1,10 @@ # -*- coding: utf-8 -*- -from django.shortcuts import render_to_response from country.models import Country from city.models import City from place_exposition.models import PlaceExposition from place_conference.models import PlaceConference -from django.views.generic import ListView, CreateView, DeleteView, UpdateView, DetailView +from django.views.generic import CreateView, DeleteView, UpdateView, DetailView +from functions.custom_views import ListView from django.core.urlresolvers import reverse_lazy from functions.views_help import split_params from django.utils.translation import ugettext as _ @@ -218,11 +218,14 @@ class PageList(ListView): template_name = 'page_admin_list.html' model = Page order = 'created' -from django import forms + + from django.http import HttpResponseRedirect +import datetime + class EditPage(UpdateView): model = Page - template_name = 'new_page.html' + template_name = 'admin/page/new_page.html' form_class = PageForm slug_url_kwarg = 'url' slug_field = 'url' @@ -233,7 +236,8 @@ class EditPage(UpdateView): return context def get_success_url(self): - return HttpResponseRedirect('/admin/page/all/') + return reverse_lazy('page_list') + class DeletePage(DeleteView): template_name = 'admin/page/page_confirm_delete.html' @@ -244,39 +248,57 @@ class DeletePage(DeleteView): class PageDetailed(DetailView): model = Page - template_name = 'client/base_catalog.html' + template_name = 'admin/page/page_template_view.html' slug_field = 'url' slug_url_kwarg = 'url' - - - # ------------ XLS Export ---------------- from django.http import HttpResponse +from django.utils.translation import get_language from .utils import queryset_to_workbook from exposition.models import Exposition from conference.models import Conference +from django.core.urlresolvers import reverse + def download_workbook(request): - data = [(36539, 'expo'),(36602, 'expo'), (3033, 'conf'), (3053, 'conf')] - qs = [] - for obj in data: - if obj[1] == 'expo': - qs.append(Exposition.objects.get(id=obj[0])) - if obj[1] == 'conf': - qs.append(Conference.objects.get(id=obj[0])) - columns = ( - 'name', - 'country.name', - 'city.name', - 'place.name', - 'data_begin', - 'data_end') - - workbook = queryset_to_workbook(qs, columns) - response = HttpResponse(content_type='application/vnd.ms-excel') - response['Content-Disposition'] = 'attachment; filename="export.xls"' - workbook.save(response) - return response + lang = get_language() + data = request.GET + if data: + qs = [] + for i,obj in enumerate(data): + if data.get('data[%i][name]'%i) == 'expo': + qs.append(Exposition.objects.language(lang).get(id=data['data[%i][value]'%i])) + elif data.get('data[%i][name]'%i) == 'conf': + qs.append(Conference.objects.language(lang).get(id=data['data[%i][value]'%i])) + + earliest_event = qs[0].data_begin + for i, obj in enumerate(qs, start=1): + if obj.data_begin < earliest_event: + earliest_event = obj.data_begin + setattr(obj, 'number', i) + setattr(obj, 'dates', u'%s - %s'%(obj.data_begin.strftime('%d %B %Y'),obj.data_end.strftime('%d %B %Y'))) + setattr(obj, 'full_place', u'%s, %s, %s' % (obj.country, obj.city, getattr(obj.place, 'name', ''))) + try: + setattr(obj, 'link', u'http://www.expomap.ru%s)'%obj.get_absolute_url()) + except: + setattr(obj, 'link', u'http://www.expomap.ru%s)'%obj.get_permanent_url()) + + columns = ( + 'number', + 'name', + 'dates', + 'main_title', + 'full_place', + 'participation_note', + 'link') + + workbook = queryset_to_workbook(qs, columns, earliest_event) + response = HttpResponse(content_type='application/vnd.ms-excel') + response['Content-Disposition'] = 'attachment; filename="My calendar.xls"' + workbook.save(response) + return response + else: + return HttpResponseRedirect(request.META.get('HTTP_REFERER'), "/profile/calendar/") diff --git a/expobanner/admin.py b/expobanner/admin.py index 5bb709d7..4c053c53 100644 --- a/expobanner/admin.py +++ b/expobanner/admin.py @@ -3,9 +3,10 @@ from django.views.generic import TemplateView, CreateView, ListView, UpdateView, from django.conf import settings from django.http import HttpResponseRedirect from django.shortcuts import get_object_or_404 -from expobanner.models import URL, BannerGroup, Banner, Paid +from django.db.models import Sum +from expobanner.models import URL, BannerGroup, Banner, Paid, MainPage, Top from expobanner.forms import UrlCreateForm, BannerCreateGroupForm, BannerCreateForm, BannerGroupUpdateForm,\ - PaidCreateForm, PaidUpdateForm, TopCreateForm + PaidCreateForm, PaidUpdateForm, TopCreateForm, BannerLinkCreateForm, MainCreateForm, MainUpdateForm, TopUpdateForm from exposition.models import Exposition @@ -33,6 +34,11 @@ class CreateBanner(AbstractCreate): form_class = BannerCreateForm +class CreateLink(AbstractCreate): + model = Banner + form_class = BannerLinkCreateForm + + # LISTS VIEWS class AbstractList(ListView): paginate_by = settings.ADMIN_PAGINATION @@ -63,6 +69,17 @@ class BannerList(AbstractList): qs = qs.filter(group__isnull=False) return qs + +class LinkList(AbstractList): + model = Banner + verbose = u'Список ссылок' + template_name = 'admin/expobanner/link_list.html' + + def get_queryset(self): + qs = super(LinkList, self).get_queryset() + qs = qs.filter(link=True) + return qs + # UPDATE VIEWS class AbstractUpdate(UpdateView): template_name = 'admin/expobanner/default_form.html' @@ -84,23 +101,48 @@ class BannerUpdate(AbstractUpdate): form_class = BannerCreateForm +class LinkUpdate(AbstractUpdate): + model = Banner + form_class = BannerLinkCreateForm + + class BannerStat(DetailView): model = Banner template_name = 'admin/expobanner/banner_stat.html' + def get_context_data(self, **kwargs): + context = super(BannerStat, self).get_context_data(**kwargs) + obj = self.object + qs = obj.banner_stat.all() + date_from, date_to = self.request.GET.get('date_from'), self.request.GET.get('date_to') + if date_from: + date_from = datetime.strptime(date_from, "%d.%m.%Y") + qs = qs.filter(date__gte=date_from) + if date_to: + date_to = datetime.strptime(date_to, "%d.%m.%Y") + qs = qs.filter(date__lte=date_to) + context['stats'] = qs + return context + + class PaidList(ListView): model = Exposition template_name = 'admin/expobanner/paid_list.html' paginate_by = settings.ADMIN_PAGINATION def get_queryset(self): - return self.model.objects.language().filter(paid_new__isnull=False) + qs = self.model.objects.language().filter(paid_new__isnull=False).order_by('-paid_new__public') + if self.request.GET.get('onlypublic'): + qs = qs.filter(paid_new__public=True) + return qs + class PaidCreate(CreateView): form_class = PaidCreateForm template_name = 'admin/expobanner/paid_create.html' success_url = '/admin/expobanners/paid/list/' + class PaidUpdate(UpdateView): model = Paid form_class = PaidUpdateForm @@ -140,6 +182,97 @@ class PaidStat(DetailView): model = Paid template_name = 'admin/expobanner/paid_stat.html' + def get_context_data(self, **kwargs): + context = super(PaidStat, self).get_context_data(**kwargs) + obj = self.object + context['all'] = obj.paidstat_set.aggregate( + official=Sum('official_clicks'), + ticket=Sum('tickets_clicks'), + participation=Sum('participation_clicks'), + catalog=Sum('catalog_clicks') + ) + qs = obj.paidstat_set.all() + date_from, date_to = self.request.GET.get('date_from'), self.request.GET.get('date_to') + if date_from: + date_from = datetime.strptime(date_from, "%d.%m.%Y") + qs = qs.filter(date__gte=date_from) + if date_to: + date_to = datetime.strptime(date_to, "%d.%m.%Y") + qs = qs.filter(date__lte=date_to) + context['stats'] = qs + return context + +# ---------------------------------- +class MainList(ListView): + model = Exposition + template_name = 'admin/expobanner/main_list.html' + paginate_by = settings.ADMIN_PAGINATION + + def get_queryset(self): + qs = self.model.objects.language().filter(main__isnull=False).order_by('-main__public') + if self.request.GET.get('onlypublic'): + qs = qs.filter(main__public=True) + return qs + + +class MainCreate(CreateView): + form_class = MainCreateForm + template_name = 'admin/expobanner/paid_create.html' + success_url = '/admin/expobanners/main/list/' + + +class MainUpdate(UpdateView): + model = MainPage + form_class = MainUpdateForm + template_name = 'admin/expobanner/default_form.html' + success_url = '/admin/expobanners/main/list/' + + + def get_context_data(self, **kwargs): + context = super(MainUpdate, self).get_context_data(**kwargs) + obj = self.object + context['exposition'] = obj.get_event() + return context + + +def main_turn(request, pk, status): + main = get_object_or_404(MainPage, pk=pk) + if status == 'on': + main.public = True + else: + main.public = False + main.save() + return HttpResponseRedirect('/admin/expobanners/main/list/') + +from datetime import datetime + +class MainStat(DetailView): + model = MainPage + template_name = 'admin/expobanner/main_stat.html' + + def get_context_data(self, **kwargs): + context = super(MainStat, self).get_context_data(**kwargs) + obj = self.object + + context['all'] = obj.link.banner_stat.aggregate( + views=Sum('view'), + clicks=Sum('click'), + unique_clicks=Sum('unique_click'), + unique_views=Sum('unique_view') + ) + qs = obj.link.banner_stat.all() + date_from, date_to = self.request.GET.get('date_from'), self.request.GET.get('date_to') + if date_from: + date_from = datetime.strptime(date_from, "%d.%m.%Y") + qs = qs.filter(date__gte=date_from) + if date_to: + date_to = datetime.strptime(date_to, "%d.%m.%Y") + qs = qs.filter(date__lte=date_to) + context['stats'] = qs + return context + +# ------------------------------------ +from datetime import date class TopList(ListView): model = Exposition @@ -147,10 +280,27 @@ class TopList(ListView): paginate_by = settings.ADMIN_PAGINATION def get_queryset(self): - return self.model.objects.language().filter(top__isnull=False) + qs = self.model.objects.language().filter(top__isnull=False).order_by('-top__fr') + if self.request.GET.get('onlypublic'): + qs = qs.filter(top__fr__lte=date.today(), top__to__gte=date.today()) + return qs class TopCreate(CreateView): form_class = TopCreateForm template_name = 'admin/expobanner/top_create.html' success_url = '/admin/expobanners/top/list/' + + +class TopUpdate(UpdateView): + model = Top + form_class = TopUpdateForm + template_name = 'admin/expobanner/top_create.html' + success_url = '/admin/expobanners/top/list/' + + + def get_context_data(self, **kwargs): + context = super(TopUpdate, self).get_context_data(**kwargs) + obj = self.object + context['exposition'] = obj.get_event() + return context diff --git a/expobanner/admin_urls.py b/expobanner/admin_urls.py index 5497da30..cce3e1aa 100644 --- a/expobanner/admin_urls.py +++ b/expobanner/admin_urls.py @@ -8,13 +8,17 @@ urlpatterns = patterns('expobanner.admin', url(r'^banners/url/$', CreateUrl.as_view(), name='expobanner-create_url'), url(r'^banners/group/$', CreateBannerGroup.as_view(), name='expobanner-create_group'), url(r'^banners/banner/$', CreateBanner.as_view(), name='expobanner-create_banner'), + url(r'^banners/link/$', CreateLink.as_view(), name='expobanner-create_link'), url(r'^banners/url/list/$', UrlList.as_view(), name='expobanner-list_url'), url(r'^banners/group/list/$', BannerGroupList.as_view(), name='expobanner-list_group'), url(r'^banners/banner/list/$', BannerList.as_view(), name='expobanner-list_banner'), + url(r'^banners/link/list/$', LinkList.as_view(), name='expobanner-list_link'), url(r'^banners/url/(?P\d+)/edit/$', UrlUpdate.as_view(), name='expobanner-update_url'), url(r'^banners/group/(?P\d+)/edit/$', BannerGroupUpdate.as_view(), name='expobanner-update_group'), url(r'^banners/banner/(?P\d+)/edit/$', BannerUpdate.as_view(), name='expobanner-update_banner'), + url(r'^banners/link/(?P\d+)/edit/$', LinkUpdate.as_view(), name='expobanner-update_link'), url(r'^banners/banner/(?P\d+)/stat/$', BannerStat.as_view(), name='expobanner_stat_banner'), + url(r'^banners/banner/(?P\d+)/stat/$', BannerStat.as_view(), name='expobanner_stat_link'), # paid url(r'^paid/list/$', PaidList.as_view(), name='expobanner-list_paid'), url(r'^paid/(?P\d+)/edit/$', PaidUpdate.as_view(), name='expobanner-update_paid'), @@ -23,7 +27,13 @@ urlpatterns = patterns('expobanner.admin', url(r'^paid/(?P\d+)/stat/$', PaidStat.as_view(), name='expobanner_stat_paid'), # top url(r'^top/list/$', TopList.as_view(), name='expobanner-list_top'), - url(r'^top/(?P\d+)/edit/$', PaidUpdate.as_view(), name='expobanner-update_top'), + url(r'^top/(?P\d+)/edit/$', TopUpdate.as_view(), name='expobanner-update_top'), url(r'^top/$', TopCreate.as_view(), name='expobanner-create_top'), - url(r'^top/(?P\d+)/stat/$', PaidStat.as_view(), name='expobanner_stat_top'), + url(r'^top/(?P\d+)/stat/$', MainStat.as_view(), name='expobanner_stat_top'), + # main page + url(r'^main/list/$', MainList.as_view(), name='expobanner-list_main'), + url(r'^main/(?P\d+)/edit/$', MainUpdate.as_view(), name='expobanner-update_main'), + url(r'^main/$', MainCreate.as_view(), name='expobanner-create_main'), + url(r'^main/turn/(?P\d+)/(?P.*)/$', main_turn, name='expobanner-main-turn'), + url(r'^main/(?P\d+)/stat/$', MainStat.as_view(), name='expobanner_stat_main'), ) \ No newline at end of file diff --git a/expobanner/forms.py b/expobanner/forms.py index 5c3b6473..84d45965 100644 --- a/expobanner/forms.py +++ b/expobanner/forms.py @@ -1,14 +1,15 @@ # -*- coding: utf-8 -*- from django import forms -from expobanner.models import URL, BannerGroup, Banner, Paid, Top +from expobanner.models import URL, BannerGroup, Banner, Paid, Top, MainPage from exposition.models import Exposition from country.models import Country -from city.models import City +from ckeditor.widgets import CKEditorWidget from theme.models import Theme, Tag class UrlCreateForm(forms.ModelForm): verbose = u'Создать урл' + class Meta: model = URL exclude = ['created_at', 'updated_at', 'sites'] @@ -16,12 +17,14 @@ class UrlCreateForm(forms.ModelForm): class BannerCreateGroupForm(forms.ModelForm): verbose = u'Создать групу' + class Meta: model = BannerGroup exclude = ['created_at', 'updated_at', 'speed'] class BannerGroupUpdateForm(BannerCreateGroupForm): verbose = u'Изменить групу' + class Meta: model = BannerGroup exclude = ['created_at', 'updated_at', 'slug', 'speed'] @@ -29,15 +32,28 @@ class BannerGroupUpdateForm(BannerCreateGroupForm): class BannerCreateForm(forms.ModelForm): verbose = u'Создать банер' - #country = forms.ChoiceField(label=u'Страна', choices=[('', ' ')] + [(c.id, c.name) for c in Country.objects.all()], required=False) - #theme = forms.ChoiceField(label=u'Тематика', required=False, - # choices=[('', ' ')] + [(item.id, item.name) for item in Theme.objects.language().all()]) - #city = forms.CharField(label=u'Город', widget=forms.HiddenInput(), required=False) - #tag = forms.CharField(label=u'Тег', widget=forms.HiddenInput(), required=False) + text = forms.CharField(label=u'Текст', required=False, widget=CKEditorWidget) + class Meta: + model = Banner + exclude = ['created_at', 'updated_at', 'often', 'paid', 'stat_pswd', 'cookie', 'link'] + + +class BannerLinkCreateForm(forms.ModelForm): + verbose = u'Отслеживаемую ссылку' class Meta: model = Banner - exclude = ['created_at', 'updated_at', 'often', 'paid', 'stat_pswd'] + fields = ['public', 'alt', 'url'] + exclude = ['created_at', 'updated_at', 'often', 'paid', 'stat_pswd', 'cookie', 'link'] + + def save(self, commit=True): + banner = super(BannerLinkCreateForm, self).save(commit=False) + if commit: + banner.link =True + banner.save() + + return banner + class ClientStatForm(forms.Form): @@ -91,6 +107,36 @@ class PaidCreateForm(forms.ModelForm): raise forms.ValidationError(u'Такой выставки не существует') return expo +class MainCreateForm(forms.ModelForm): + verbose = u'Добавить выставку на главную' + exposition = forms.CharField(label=u'Выставка', widget=forms.HiddenInput()) + + class Meta: + model = MainPage + fields = ['position', 'public'] + + def save(self, commit=True): + main = super(MainCreateForm, self).save(commit=False) + if commit: + expo = self.cleaned_data['exposition'] + link = expo.get_permanent_url() + link_b = Banner.objects.create_for_paid(expo, link, 'main_page_link') + main.link = link_b + main.save() + + expo.main = main + expo.save() + return main + + def clean_exposition(self): + expo_id = self.cleaned_data['exposition'] + try: + expo = Exposition.objects.get(id=expo_id) + except Exposition.DoesNotExist: + raise forms.ValidationError(u'Такой выставки не существует') + return expo + + class PaidUpdateForm(forms.ModelForm): tickets = forms.URLField(label=u'Линк на билеты') participation = forms.URLField(label=u'Линк на участие') @@ -126,17 +172,23 @@ class PaidUpdateForm(forms.ModelForm): return paid +class MainUpdateForm(forms.ModelForm): + class Meta: + model = MainPage + fields = ['position', 'public'] + + class TopCreateForm(forms.ModelForm): verbose = u'Создать выставку в топе' exposition = forms.CharField(label=u'Выставка', widget=forms.HiddenInput()) country = forms.MultipleChoiceField(label=u'Страна', choices=[('', ' ')] + [(c.id, c.name) for c in Country.objects.all()], required=False) theme = forms.MultipleChoiceField(label=u'Тематика', required=False, choices=[('', ' ')] + [(item.id, item.name) for item in Theme.objects.language().all()]) - excluded_cities = forms.CharField(label=u'Город', widget=forms.HiddenInput(), required=False) - excluded_tags = forms.CharField(label=u'Тег', widget=forms.HiddenInput(), required=False) + #excluded_cities = forms.CharField(label=u'Город', widget=forms.HiddenInput(), required=False) + #excluded_tags = forms.CharField(label=u'Тег', widget=forms.HiddenInput(), required=False) class Meta: model = Top - fields = ['catalog', 'position', 'theme', 'excluded_tags', 'country', 'excluded_cities', 'fr', 'to'] + fields = ['catalog', 'position', 'theme', 'country', 'fr', 'to'] def save(self, commit=True): top = super(TopCreateForm, self).save(commit=False) @@ -149,15 +201,22 @@ class TopCreateForm(forms.ModelForm): top.theme.clear() for theme in self.cleaned_data['theme']: top.theme.add(theme) + top.country.clear() + for country in self.cleaned_data['country']: + top.country.add(country) self.save_m2m = save_m2m if commit: expo = self.cleaned_data['exposition'] + link = expo.get_permanent_url() + link_b = Banner.objects.create_for_paid(expo, link, 'top_link') + top.link = link_b top.save() self.save_m2m() expo.top = top expo.save() + return top def clean_theme(self): @@ -178,4 +237,34 @@ class TopCreateForm(forms.ModelForm): expo = Exposition.objects.get(id=expo_id) except Exposition.DoesNotExist: raise forms.ValidationError(u'Такой выставки не существует') - return expo \ No newline at end of file + return expo + + +class TopUpdateForm(forms.ModelForm): + verbose = u'Изменить выставку' + class Meta: + model = Top + fields = ['catalog', 'position', 'theme', 'country', 'fr', 'to'] + + def save(self, commit=True): + top = super(TopUpdateForm, self).save(commit=False) + # Prepare a 'save_m2m' method for the form, + old_save_m2m = self.save_m2m + + def save_m2m(): + old_save_m2m() + # This is where we actually link the pizza with toppings + top.theme.clear() + for theme in self.cleaned_data['theme']: + top.theme.add(theme) + top.country.clear() + for country in self.cleaned_data['country']: + top.country.add(country) + + self.save_m2m = save_m2m + + if commit: + + top.save() + self.save_m2m() + return top \ No newline at end of file diff --git a/expobanner/management/commands/banner_log_update.py b/expobanner/management/commands/banner_log_update.py index 86cfb920..9b795176 100644 --- a/expobanner/management/commands/banner_log_update.py +++ b/expobanner/management/commands/banner_log_update.py @@ -9,7 +9,7 @@ class Command(BaseCommand): def handle(self, *args, **options): today = date.today() # banners - for banner in Banner.objects.select_related('group').filter(public=True, group__isnull=False): + for banner in Banner.objects.select_related('group').filter(public=True): try: logstat = LogStat.objects.get(banner=banner, group=banner.group, date=today) except LogStat.DoesNotExist: diff --git a/expobanner/managers.py b/expobanner/managers.py index 42e82670..3c78cc31 100644 --- a/expobanner/managers.py +++ b/expobanner/managers.py @@ -1,77 +1,79 @@ -# -*- coding: utf-8 -* -from datetime import date -from random import choice, shuffle -from django.db import models -from django.db.models import Q -from django.core.cache import cache - - -class BiasedManager(models.Manager): - def by_time(self, **kwargs): - all = super(BiasedManager, self).get_query_set().filter(**kwargs) - result = [] - for i in all: - for j in range(i.often): - result.append(i) - return result - - def one(self, **kwargs): - return choice(self.by_time(**kwargs)) - - def by_often(self, **kwargs): - result = self.by_time(**kwargs) - shuffle(result) - return result - - def create_for_paid(self, expo, url, role): - try: - name = str(expo.name) - except UnicodeEncodeError, UnicodeDecodeError: - name = expo.url - - alt = u'%s_%s'%(name, role) - return self.create(alt=alt, url=url, paid=True) - -class BannerGroupCached(models.Manager): - def all(self): - key = 'banner_group_all' - result = cache.get(key) - if not result: - result = list(self.filter(public=True)) - cache.set(key, result, 90) - return result - - def group_banners(self): - key = 'banner_group_banners' - result = cache.get(key) - if not result: - groups = self.all() - today = date.today() - result = {} - for group in groups: - result[group.slug] = list(group.banners.prefetch_related('urls', 'theme', 'country')\ - .filter(public=True, fr__lte=today)\ - .filter(Q(to__gte=today) | Q(to__isnull=True)).extra({})) - cache.set(key, result, 70) - - return result - - -class URLCached(models.Manager): - def all(self): - key = 'banner_url_all' - result = cache.get(key) - if not result: - result = list(self.filter(public=True)) - cache.set(key, result, 150) - return result - -class TopCached(models.Manager): - def all(self): - key = 'expo_b_top_all' - result = cache.get(key) - if not result: - result = list(self.prefetch_related('theme', 'country', 'excluded_tags', 'excluded_cities').all()) - cache.set(key, result, 80) - +# -*- coding: utf-8 -* +from datetime import date +from random import choice, shuffle +from django.db import models +from django.db.models import Q +from django.core.cache import cache + + +class BiasedManager(models.Manager): + def by_time(self, **kwargs): + all = super(BiasedManager, self).get_query_set().filter(**kwargs) + result = [] + for i in all: + for j in range(i.often): + result.append(i) + return result + + def one(self, **kwargs): + return choice(self.by_time(**kwargs)) + + def by_often(self, **kwargs): + result = self.by_time(**kwargs) + shuffle(result) + return result + + def create_for_paid(self, expo, url, role): + try: + name = str(expo.name) + except UnicodeEncodeError, UnicodeDecodeError: + name = expo.url + + alt = u'%s_%s'%(name, role) + return self.create(alt=alt, url=url, paid=True) + +class BannerGroupCached(models.Manager): + def all(self): + key = 'banner_group_all' + result = cache.get(key) + if not result: + result = list(self.filter(public=True)) + cache.set(key, result, 90) + return result + + def group_banners(self): + key = 'banner_group_banners' + result = cache.get(key) + if not result: + groups = self.all() + today = date.today() + result = {} + for group in groups: + result[group.slug] = list(group.banners.prefetch_related('urls', 'theme', 'country')\ + .filter(public=True, fr__lte=today)\ + .filter(Q(to__gte=today) | Q(to__isnull=True))) + cache.set(key, result, 70) + + return result + + +class URLCached(models.Manager): + def all(self): + key = 'banner_url_all' + result = cache.get(key) + if not result: + result = list(self.filter(public=True)) + cache.set(key, result, 150) + return result + +class TopCached(models.Manager): + def all(self): + key = 'expo_b_top_all' + result = cache.get(key) + if not result: + today = date.today() + result = list(self.prefetch_related('theme', 'country', 'excluded_tags', 'excluded_cities'). + filter(fr__lte=today).filter(Q(to__gte=today) | Q(to__isnull=True))) + cache.set(key, result, 80) + return result \ No newline at end of file diff --git a/expobanner/models.py b/expobanner/models.py index b49c914f..2208fc9a 100644 --- a/expobanner/models.py +++ b/expobanner/models.py @@ -1,299 +1,328 @@ -# -*- coding: utf-8 -*- -import random -import hashlib -from datetime import datetime, date -from django.db import models -from django.utils.translation import ugettext_lazy as _ -from django.conf import settings -from django.contrib.sites.models import Site -from django.db.models.signals import post_save -from .managers import BiasedManager, BannerGroupCached, URLCached, TopCached -from .mixins import StatMixin -from theme.models import Theme -from country.models import Country - - -class URL(models.Model): - title = models.CharField(verbose_name=u'Заголовок', max_length=256) - url = models.CharField(verbose_name=u'URL or URL RegEx', max_length=2048) - regex = models.BooleanField(verbose_name=u'RegEx', default=False) - sites = models.ManyToManyField(Site, related_name='site_urls', verbose_name=_('Sites'), null=True, blank=True) - - public = models.BooleanField(verbose_name=u'Активный', default=True) - created_at = models.DateTimeField(verbose_name=_('Created At'), auto_now_add=True) - updated_at = models.DateTimeField(verbose_name=_('Updated At'), auto_now=True) - - objects = models.Manager() - cached = URLCached() - - def __unicode__(self): - return self.title - - class Meta: - ordering = ['-created_at'] - verbose_name = _('URL') - verbose_name_plural = _('URLs') - - def get_admin_url(self): - return '/admin/expobanners/banners/url/%d/edit/'%self.id - - -class BannerGroup (models.Model): - name = models.CharField(verbose_name=u'Имя', max_length=255) - slug = models.SlugField(verbose_name=u'URL', unique=True) - width = models.PositiveSmallIntegerField(verbose_name=u'Ширина', default=0) - height = models.PositiveSmallIntegerField(verbose_name=u'Высота', default=0) - speed = models.PositiveSmallIntegerField(verbose_name=u'Скорость отображения', default=2000) - - public = models.BooleanField(verbose_name=u'Активная', default=True) - created_at = models.DateTimeField(verbose_name=_('Created At'), auto_now_add=True) - updated_at = models.DateTimeField(verbose_name=_('Updated At'), auto_now=True) - - objects = models.Manager() - cached = BannerGroupCached() - - def size(self): - return '%sx%s' % (self.width, self.height) - - def __unicode__(self): - return '%s - [%s x %s]' % (self.name, self.width, self.height) - - class Meta: - ordering = ['name'] - verbose_name = _('Banner Group') - verbose_name_plural = _('Banner Groups') - - def get_admin_url(self): - return '/admin/expobanners/banners/group/%d/edit/'%self.id - - -class Banner(models.Model, StatMixin): - objects = BiasedManager() - - title = models.CharField(verbose_name=u'Заголовок', max_length=255, blank=True) - alt = models.CharField(verbose_name=_('Alt'), max_length=255) - - text = models.TextField(verbose_name=u'Текст', blank=True, null=True) - img = models.FileField(verbose_name=u'Картинка', upload_to='expo_upload', blank=True, null=True) - url = models.CharField(verbose_name=u'URL', max_length=1024) - fr = models.DateField(default=date.today()) - to = models.DateField(blank=True, null=True) - - theme = models.ManyToManyField(Theme, blank=True, null=True, verbose_name=u'Тематика') - country = models.ManyToManyField(Country, blank=True, null=True, verbose_name=u'Страна') - - sort = models.PositiveSmallIntegerField(verbose_name=u'Сорт', default=500) - - group = models.ForeignKey(BannerGroup, related_name='banners', verbose_name=u'Место', null=True, blank=True) - often = models.PositiveSmallIntegerField( - verbose_name=_('Often'), - help_text=_('A ten will display 10 times more often that a one.'), - choices=[[i, i] for i in range(11)], - default=1 - ) - urls = models.ManyToManyField(URL, related_name='url_banners', verbose_name=_('URLs'), null=True, blank=True) - - html = models.BooleanField(verbose_name=_('HTML?'), default=False) - flash = models.BooleanField(verbose_name=_('Flash?'), default=False) - js = models.BooleanField(verbose_name=_('Javascript?'), default=False) - paid = models.BooleanField(verbose_name=_('Is Paid event link?'), default=False) - - public = models.BooleanField(verbose_name=u'Активный', default=True) - created_at = models.DateTimeField(verbose_name=_('Created At'), auto_now_add=True) - updated_at = models.DateTimeField(verbose_name=_('Updated At'), auto_now=True) - - stat_pswd = models.CharField(max_length=16) - - class Meta: - ordering = ['-public'] - - def get_admin_url(self): - return '/admin/expobanners/banners/banner/%d/edit/'%self.id - - - def key(slef): - if hasattr(settings, 'SECRET_KEY'): - key = str(datetime.now()) + settings.SECRET_KEY - else: - key = str(datetime.now()) - return hashlib.md5(key).hexdigest() - - def log(self, request, type): - log = { - 'type': type, - 'banner': self, - 'group': self.group, - 'ip': request.META.get('REMOTE_ADDR'), - 'user_agent': request.META.get('HTTP_USER_AGENT'), - 'page': request.META.get('HTTP_REFERER'), - } - - if request.user.is_authenticated(): - log['user'] = request.user - return Log.objects.create(**log) - - @models.permalink - def image(self): - return ('banner_view', (), {'banner_id': self.pk, 'key': self.key()}) - - def impressions(self): - return Log.objects.filter(banner=self.pk, type=0).count() - - def views(self): - return Log.objects.filter(banner=self.pk, type=1).count() - - def clicks(self): - return Log.objects.filter(banner=self.pk, type=2).count() - - def __unicode__(self): - return self.title or self.alt - - def get_absolute_url(self): - if self.url == '#': - return self.url - else: - @models.permalink - def get_absolute_url(self): - return ('banner_click', (), {'banner_id': self.pk, 'key': self.key()}) - return get_absolute_url(self) - - def get_click_link(self): - return '/expo-b/click/%d/'%self.id - - class Meta: - ordering = ['sort'] - verbose_name = _('Banner') - verbose_name_plural = _('Banners') - - -class Log(models.Model): - banner = models.ForeignKey(Banner, related_name='banner_logs') - group = models.ForeignKey(BannerGroup, related_name='group_logs', verbose_name=_('Group'), blank=True, null=True) - urls = models.ManyToManyField(URL, related_name='url_logs', verbose_name=_('URLs'), blank=True) - - user = models.ForeignKey(settings.AUTH_USER_MODEL, null=True, blank=True, related_name='users', verbose_name=_('User')) - datetime = models.DateTimeField(verbose_name=_('Clicked At'), auto_now_add=True) - ip = models.IPAddressField(verbose_name=_('IP'), null=True, blank=True) - user_agent = models.CharField(verbose_name=_('User Agent'), max_length=1024, null=True, blank=True) - page = models.URLField(verbose_name=_('Page'), null=True, blank=True) - key = models.CharField(verbose_name=_('User Agent'), max_length=32, null=True, blank=True) - TYPE_CHOICES = ( - (0, 'impressions'), - (1, 'view'), - (2, 'click') - ) - - type = models.PositiveSmallIntegerField(verbose_name=_('Type'), max_length=1, default=0, choices=TYPE_CHOICES) - - def __unicode__(self): - return '%s - (%s)' % (self.banner, self.datetime) - - -class LogStat(models.Model): - banner = models.ForeignKey(Banner, related_name='banner_stat', verbose_name=_('Banner'), blank=True) - group = models.ForeignKey(BannerGroup, related_name='group_stat', verbose_name=_('Group'), blank=True, null=True) - urls = models.ManyToManyField(URL, related_name='url_bloks', verbose_name=_('URLs'), null=True, blank=True) - - date = models.DateField(verbose_name=_('Data')) - view = models.PositiveIntegerField(verbose_name=_('Views')) - click = models.PositiveIntegerField(verbose_name=_('Clicks')) - unique_click = models.PositiveIntegerField(verbose_name=_('Unique Views'), blank=True, null=True) - unique_view = models.PositiveIntegerField(verbose_name=_('Unique Clicks')) - - def __unicode__(self): - return '%s - (%s)' % (self.banner, self.date) - - -# ------------------ -class Paid(models.Model, StatMixin): - tickets = models.ForeignKey(Banner, related_name='paid_tickets') - participation = models.ForeignKey(Banner, related_name='paid_participation') - official = models.ForeignKey(Banner, related_name='paid_official') - catalog = models.ForeignKey(Banner, related_name='paid_catalog') - logo = models.ImageField(upload_to='expo-b/paid', blank=True) - organiser = models.CharField(max_length=100, blank=True) - public = models.BooleanField(default=True, verbose_name=u'Активная') - stat_pswd = models.CharField(max_length=16) - created = models.DateTimeField(auto_now_add=True) - modified = models.DateTimeField(auto_now=True) - - class Meta: - ordering = ['-public'] - - def get_event(self): - if self.exposition_set.all().exists(): - return self.exposition_set.all()[0] - return None - - -class PaidStat(models.Model): - paid = models.ForeignKey(Paid) - date = models.DateField(verbose_name=_('Date')) - page_views = models.PositiveIntegerField(default=0) - price_views = models.PositiveIntegerField(default=0) - catalog_views = models.PositiveIntegerField(default=0) - catalog_clicks = models.PositiveIntegerField(default=0) - tickets_clicks = models.PositiveIntegerField(default=0) - participation_clicks = models.PositiveIntegerField(default=0) - official_clicks = models.PositiveIntegerField(default=0) - - -class Top(models.Model, StatMixin): - catalog = models.CharField(max_length=16, verbose_name=u'Каталог для топа') - position = models.PositiveIntegerField(blank=True, default=2, null=True, verbose_name=u'Позиция') - theme = models.ManyToManyField('theme.Theme', blank=True, null=True, verbose_name=u'Тематики') - excluded_tags = models.ManyToManyField('theme.Tag', blank=True, null=True, verbose_name=u'Исключить теги') - country = models.ManyToManyField('country.Country', blank=True, null=True, verbose_name=u'Страны') - excluded_cities = models.ManyToManyField('city.City', blank=True, null=True, verbose_name=u'Исключить города') - fr = models.DateField(default=date.today(), verbose_name=u'Начало') - to = models.DateField(blank=True, null=True, verbose_name=u'Конец') - stat_pswd = models.CharField(max_length=16) - - objects = models.Manager() - cached = TopCached() - - class Meta: - ordering = ['position'] - - def get_event(self): - try: - return self.exposition_set.all()[0] - except IndexError: - return None - -class TopStat(models.Model): - date = models.DateField() - theme = models.ForeignKey('theme.Theme', blank=True, null=True) - tag = models.ForeignKey('theme.Tag', blank=True, null=True) - country = models.ForeignKey('country.Country', blank=True, null=True) - city = models.ForeignKey('city.City', blank=True, null=True) - views = models.PositiveIntegerField(default=0) - clicks = models.PositiveIntegerField(default=0) - -def generatePassword(length=5): - """ - generate random password - """ - SYMBOLS = [',', '.', '?', '!', '-', '+', '1', '2', '3', '4', '5', '6', '7', '8', - '9', '0', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', - 'm', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', 'A', - 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', - 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', '#'] - PASSWORD_LENGTH = length - newPassword = [] - for i in range(PASSWORD_LENGTH): - newPassword.append(SYMBOLS[random.randrange(0, len(SYMBOLS))]) - return ''.join(newPassword) - - -def generate_stat_pass(sender, **kwargs): - obj = kwargs['instance'] - if not obj.stat_pswd: - obj.stat_pswd = generatePassword() - obj.save() - - - -post_save.connect(generate_stat_pass, sender=Banner) -post_save.connect(generate_stat_pass, sender=Paid) -post_save.connect(generate_stat_pass, sender=Top) +# -*- coding: utf-8 -*- +import random +import hashlib +from datetime import datetime, date +from django.db import models +from django.utils.translation import ugettext_lazy as _ +from django.conf import settings +from django.contrib.sites.models import Site +from django.db.models.signals import post_save +from .managers import BiasedManager, BannerGroupCached, URLCached, TopCached +from .mixins import StatMixin +from theme.models import Theme +from country.models import Country + + +class URL(models.Model): + title = models.CharField(verbose_name=u'Заголовок', max_length=256) + url = models.CharField(verbose_name=u'URL or URL RegEx', max_length=2048) + regex = models.BooleanField(verbose_name=u'RegEx', default=False) + sites = models.ManyToManyField(Site, related_name='site_urls', verbose_name=_('Sites'), null=True, blank=True) + + public = models.BooleanField(verbose_name=u'Активный', default=True) + created_at = models.DateTimeField(verbose_name=_('Created At'), auto_now_add=True) + updated_at = models.DateTimeField(verbose_name=_('Updated At'), auto_now=True) + + objects = models.Manager() + cached = URLCached() + + def __unicode__(self): + return self.title + + class Meta: + ordering = ['-created_at'] + verbose_name = _('URL') + verbose_name_plural = _('URLs') + + def get_admin_url(self): + return '/admin/expobanners/banners/url/%d/edit/'%self.id + + +class BannerGroup (models.Model): + name = models.CharField(verbose_name=u'Имя', max_length=255) + slug = models.SlugField(verbose_name=u'URL', unique=True) + width = models.PositiveSmallIntegerField(verbose_name=u'Ширина', default=0) + height = models.PositiveSmallIntegerField(verbose_name=u'Высота', default=0) + speed = models.PositiveSmallIntegerField(verbose_name=u'Скорость отображения', default=2000) + + public = models.BooleanField(verbose_name=u'Активная', default=True) + created_at = models.DateTimeField(verbose_name=_('Created At'), auto_now_add=True) + updated_at = models.DateTimeField(verbose_name=_('Updated At'), auto_now=True) + + objects = models.Manager() + cached = BannerGroupCached() + + def size(self): + return '%sx%s' % (self.width, self.height) + + def __unicode__(self): + return '%s - [%s x %s]' % (self.name, self.width, self.height) + + class Meta: + ordering = ['name'] + verbose_name = _('Banner Group') + verbose_name_plural = _('Banner Groups') + + def get_admin_url(self): + return '/admin/expobanners/banners/group/%d/edit/'%self.id + + +class Banner(models.Model, StatMixin): + objects = BiasedManager() + + title = models.CharField(verbose_name=u'Заголовок', max_length=255, blank=True) + alt = models.CharField(verbose_name=_('Alt'), max_length=255) + + text = models.TextField(verbose_name=u'Текст', blank=True, null=True) + img = models.FileField(verbose_name=u'Картинка', upload_to='expo_upload', blank=True, null=True) + url = models.CharField(verbose_name=u'URL', max_length=1024) + fr = models.DateField(default=date.today()) + to = models.DateField(blank=True, null=True) + + theme = models.ManyToManyField(Theme, blank=True, null=True, verbose_name=u'Тематика') + country = models.ManyToManyField(Country, blank=True, null=True, verbose_name=u'Страна') + + sort = models.PositiveSmallIntegerField(verbose_name=u'Сорт', default=500) + + group = models.ForeignKey(BannerGroup, related_name='banners', verbose_name=u'Место', null=True, blank=True) + often = models.PositiveSmallIntegerField( + verbose_name=_('Often'), + help_text=_('A ten will display 10 times more often that a one.'), + choices=[[i, i] for i in range(11)], + default=1 + ) + urls = models.ManyToManyField(URL, related_name='url_banners', verbose_name=_('URLs'), null=True, blank=True) + + html = models.BooleanField(verbose_name=_('HTML?'), default=False) + flash = models.BooleanField(verbose_name=_('Flash?'), default=False) + popup = models.BooleanField(verbose_name=_('Popup?'), default=False) + paid = models.BooleanField(verbose_name=_('Is Paid event link?'), default=False) + link = models.BooleanField(verbose_name=_('Is simple link?'), default=False) + # for detecting popups + cookie = models.CharField(max_length=30, blank=True, null=True, default=settings.DEFAULT_POPUP_COOKIE) + + public = models.BooleanField(verbose_name=u'Активный', default=True) + created_at = models.DateTimeField(verbose_name=_('Created At'), auto_now_add=True) + updated_at = models.DateTimeField(verbose_name=_('Updated At'), auto_now=True) + + stat_pswd = models.CharField(max_length=16) + + class Meta: + ordering = ['-public'] + + def get_admin_url(self): + return '/admin/expobanners/banners/banner/%d/edit/'%self.id + + def key(slef): + if hasattr(settings, 'SECRET_KEY'): + key = str(datetime.now()) + settings.SECRET_KEY + else: + key = str(datetime.now()) + return hashlib.md5(key).hexdigest() + + def log(self, request, type): + log = { + 'type': type, + 'banner': self, + 'group': self.group, + 'ip': request.META.get('REMOTE_ADDR'), + 'user_agent': request.META.get('HTTP_USER_AGENT'), + 'page': request.META.get('HTTP_REFERER'), + } + + if request.user.is_authenticated(): + log['user'] = request.user + return Log.objects.create(**log) + + @models.permalink + def image(self): + return ('banner_view', (), {'banner_id': self.pk, 'key': self.key()}) + + def impressions(self): + return Log.objects.filter(banner=self.pk, type=0).count() + + def views(self): + return Log.objects.filter(banner=self.pk, type=1).count() + + def clicks(self): + return Log.objects.filter(banner=self.pk, type=2).count() + + def __unicode__(self): + return self.title or self.alt + + def get_absolute_url(self): + if self.url == '#': + return self.url + else: + @models.permalink + def get_absolute_url(self): + return ('banner_click', (), {'banner_id': self.pk, 'key': self.key()}) + return get_absolute_url(self) + + def get_click_link(self): + return '/expo-b/click/%d/'%self.id + + class Meta: + ordering = ['sort'] + verbose_name = _('Banner') + verbose_name_plural = _('Banners') + + +class Log(models.Model): + banner = models.ForeignKey(Banner, related_name='banner_logs') + group = models.ForeignKey(BannerGroup, related_name='group_logs', verbose_name=_('Group'), blank=True, null=True) + urls = models.ManyToManyField(URL, related_name='url_logs', verbose_name=_('URLs'), blank=True) + + user = models.ForeignKey(settings.AUTH_USER_MODEL, null=True, blank=True, related_name='users', verbose_name=_('User')) + datetime = models.DateTimeField(verbose_name=_('Clicked At'), auto_now_add=True) + ip = models.IPAddressField(verbose_name=_('IP'), null=True, blank=True) + user_agent = models.CharField(verbose_name=_('User Agent'), max_length=1024, null=True, blank=True) + page = models.URLField(verbose_name=_('Page'), null=True, blank=True) + key = models.CharField(verbose_name=_('User Agent'), max_length=32, null=True, blank=True) + TYPE_CHOICES = ( + (0, 'impressions'), + (1, 'view'), + (2, 'click') + ) + + type = models.PositiveSmallIntegerField(verbose_name=_('Type'), max_length=1, default=0, choices=TYPE_CHOICES) + + def __unicode__(self): + return '%s - (%s)' % (self.banner, self.datetime) + + +class LogStat(models.Model): + banner = models.ForeignKey(Banner, related_name='banner_stat', verbose_name=_('Banner'), blank=True) + group = models.ForeignKey(BannerGroup, related_name='group_stat', verbose_name=_('Group'), blank=True, null=True) + urls = models.ManyToManyField(URL, related_name='url_bloks', verbose_name=_('URLs'), null=True, blank=True) + + date = models.DateField(verbose_name=_('Data')) + view = models.PositiveIntegerField(verbose_name=_('Views')) + click = models.PositiveIntegerField(verbose_name=_('Clicks')) + unique_click = models.PositiveIntegerField(verbose_name=_('Unique Views'), blank=True, null=True) + unique_view = models.PositiveIntegerField(verbose_name=_('Unique Clicks')) + + def __unicode__(self): + return '%s - (%s)' % (self.banner, self.date) + + class Meta: + ordering = ['-date'] + + +# ------------------ +class Paid(models.Model, StatMixin): + tickets = models.ForeignKey(Banner, related_name='paid_tickets') + participation = models.ForeignKey(Banner, related_name='paid_participation') + official = models.ForeignKey(Banner, related_name='paid_official') + catalog = models.ForeignKey(Banner, related_name='paid_catalog') + logo = models.ImageField(upload_to='expo-b/paid', blank=True) + organiser = models.CharField(max_length=100, blank=True) + public = models.BooleanField(default=True, verbose_name=u'Активная') + stat_pswd = models.CharField(max_length=16) + created = models.DateTimeField(auto_now_add=True) + modified = models.DateTimeField(auto_now=True) + + class Meta: + ordering = ['-public'] + + def get_event(self): + try: + return self.exposition_set.all()[0] + except IndexError: + return None + + +class PaidStat(models.Model): + paid = models.ForeignKey(Paid) + date = models.DateField(verbose_name=_('Date')) + page_views = models.PositiveIntegerField(default=0) + price_views = models.PositiveIntegerField(default=0) + catalog_views = models.PositiveIntegerField(default=0) + catalog_clicks = models.PositiveIntegerField(default=0) + tickets_clicks = models.PositiveIntegerField(default=0) + participation_clicks = models.PositiveIntegerField(default=0) + official_clicks = models.PositiveIntegerField(default=0) + + class Meta: + ordering = ['-date'] + + +class Top(models.Model, StatMixin): + link = models.ForeignKey(Banner) + catalog = models.CharField(max_length=16, verbose_name=u'Каталог для топа') + position = models.PositiveIntegerField(blank=True, default=2, null=True, verbose_name=u'Позиция') + theme = models.ManyToManyField('theme.Theme', blank=True, null=True, verbose_name=u'Тематики') + excluded_tags = models.ManyToManyField('theme.Tag', blank=True, null=True, verbose_name=u'Исключить теги') + country = models.ManyToManyField('country.Country', blank=True, null=True, verbose_name=u'Страны') + excluded_cities = models.ManyToManyField('city.City', blank=True, null=True, verbose_name=u'Исключить города') + fr = models.DateField(default=date.today(), verbose_name=u'Начало') + to = models.DateField(blank=True, null=True, verbose_name=u'Конец') + stat_pswd = models.CharField(max_length=16) + + objects = models.Manager() + cached = TopCached() + + class Meta: + ordering = ['position'] + + def get_event(self): + try: + return self.exposition_set.all()[0] + except IndexError: + return None + + +class TopStat(models.Model): + date = models.DateField() + theme = models.ForeignKey('theme.Theme', blank=True, null=True) + tag = models.ForeignKey('theme.Tag', blank=True, null=True) + country = models.ForeignKey('country.Country', blank=True, null=True) + city = models.ForeignKey('city.City', blank=True, null=True) + views = models.PositiveIntegerField(default=0) + clicks = models.PositiveIntegerField(default=0) + + +class MainPage(models.Model, StatMixin): + link = models.ForeignKey(Banner) + position = models.PositiveIntegerField(blank=True, default=2, null=True, verbose_name=u'Позиция') + public = models.BooleanField(default=True, verbose_name=u'Активная') + stat_pswd = models.CharField(max_length=16) + created = models.DateTimeField(auto_now_add=True) + modified = models.DateTimeField(auto_now=True) + + class Meta: + ordering = ['-public'] + + def get_event(self): + try: + return self.exposition_set.all()[0] + except IndexError: + return None + + +def generatePassword(length=5): + """ + generate random password + """ + SYMBOLS = [',', '.', '?', '!', '-', '+', '1', '2', '3', '4', '5', '6', '7', '8', + '9', '0', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', + 'm', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', 'A', + 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', + 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', '#'] + PASSWORD_LENGTH = length + newPassword = [] + for i in range(PASSWORD_LENGTH): + newPassword.append(SYMBOLS[random.randrange(0, len(SYMBOLS))]) + return ''.join(newPassword) + + +def generate_stat_pass(sender, **kwargs): + obj = kwargs['instance'] + if not obj.stat_pswd: + obj.stat_pswd = generatePassword() + obj.save() + + +post_save.connect(generate_stat_pass, sender=Banner) +post_save.connect(generate_stat_pass, sender=Paid) +post_save.connect(generate_stat_pass, sender=Top) diff --git a/expobanner/templates/slider.html b/expobanner/templates/slider.html index fcd6bd12..e2dd73ac 100644 --- a/expobanner/templates/slider.html +++ b/expobanner/templates/slider.html @@ -1,74 +1,74 @@ -{% load thumbnail %} - -{% if banners %} - -
- - -
    - {% for banner in banners %} -
  • - {{ forloop.counter }} -
  • - {% endfor %} -
- - 〈   -   〉 - -
- - - - - +{% load thumbnail %} + +{% if banners %} + +
+ + +
    + {% for banner in banners %} +
  • + {{ forloop.counter }} +
  • + {% endfor %} +
+ + 〈   +   〉 + +
+ + + + + {% endif %} \ No newline at end of file diff --git a/expobanner/templatetags/banner.py b/expobanner/templatetags/banner.py index c1491a74..f7257f1c 100644 --- a/expobanner/templatetags/banner.py +++ b/expobanner/templatetags/banner.py @@ -1,74 +1,74 @@ -from ..models import Banner -from ..models import BannerGroup -from ..models import URL - -from django import template - -# For render tag -from django.template import Context -from django.template import Template - -import re - -register = template.Library() - - -@register.simple_tag(takes_context=True) -def banner_group(context, group, tpl='group.html'): - try: - page_url = context['request'].path_info - site = context['request'].site - group = BannerGroup.objects.get(slug=group) - good_urls = [] - for url in URL.objects.filter(public=True, sites__in=[site]): - if url.regex: - url_re = re.compile(url.url) - if url_re.findall(page_url): - good_urls.append(url) - elif page_url == url.url: - good_urls.append(url) - banners = Banner.objects.filter(public=True, group=group, urls__in=good_urls) - except: - banners = False - group = False - if(banners and group): - context['banners'] = banners - context['group'] = group - - t = template.loader.get_template(tpl) - return t.render(template.Context(context)) - - -@register.simple_tag(takes_context=True) -def banner_one(context, banner_id, tpl='banner.html'): - try: - page_url = context['request'].path_info - site = context['request'].site - good_urls = [] - for url in URL.objects.filter(public=True, sites__in=[site]): - if url.regex: - url_re = re.compile(url.url) - if url_re.findall(page_url): - good_urls.append(url) - elif page_url == url.url: - good_urls.append(url) - - banner = Banner.objects.get(id=banner_id, public=True, urls__in=good_urls) - except: - banner = False - - context['banner'] = banner - - t = template.loader.get_template(tpl) - return t.render(template.Context(context)) - - -# block render -@register.simple_tag(takes_context=True) -def render(context, content): - try: - tpl = Template(content) - content = Context(context) - return tpl.render(content) - except: - return 'Render Error' +from ..models import Banner +from ..models import BannerGroup +from ..models import URL + +from django import template + +# For render tag +from django.template import Context +from django.template import Template + +import re + +register = template.Library() + + +@register.simple_tag(takes_context=True) +def banner_group(context, group, tpl='group.html'): + try: + page_url = context['request'].path_info + site = context['request'].site + group = BannerGroup.objects.get(slug=group) + good_urls = [] + for url in URL.objects.filter(public=True, sites__in=[site]): + if url.regex: + url_re = re.compile(url.url) + if url_re.findall(page_url): + good_urls.append(url) + elif page_url == url.url: + good_urls.append(url) + banners = Banner.objects.filter(public=True, group=group, urls__in=good_urls) + except: + banners = False + group = False + if(banners and group): + context['banners'] = banners + context['group'] = group + + t = template.loader.get_template(tpl) + return t.render(template.Context(context)) + + +@register.simple_tag(takes_context=True) +def banner_one(context, banner_id, tpl='banner.html'): + try: + page_url = context['request'].path_info + site = context['request'].site + good_urls = [] + for url in URL.objects.filter(public=True, sites__in=[site]): + if url.regex: + url_re = re.compile(url.url) + if url_re.findall(page_url): + good_urls.append(url) + elif page_url == url.url: + good_urls.append(url) + + banner = Banner.objects.get(id=banner_id, public=True, urls__in=good_urls) + except: + banner = False + + context['banner'] = banner + + t = template.loader.get_template(tpl) + return t.render(template.Context(context)) + + +# block render +@register.simple_tag(takes_context=True) +def render(context, content): + try: + tpl = Template(content) + content = Context(context) + return tpl.render(content) + except: + return 'Render Error' diff --git a/expobanner/urls.py b/expobanner/urls.py index 189b2023..65e3a854 100644 --- a/expobanner/urls.py +++ b/expobanner/urls.py @@ -1,13 +1,13 @@ -from django.conf.urls import url -from expobanner.stat_views import * -from . import views - -urlpatterns = [ - url(r'^click/(?P\d{1,4})/$', views.click, name='banner_click'), - #url(r'^view/(?P\d+)/$', views.view, name='banner_view'), - # - url(r'^get-banners/$', views.get_banners), - url(r'^get-tops/$', views.get_top), - url(r'^banner/(?P\d+)/stat/$', BannerStat.as_view(), name='banner_stat_client'), - url(r'^paid/(?P\d+)/stat/$', PaidStat.as_view(), name='paid_stat_client'), -] +from django.conf.urls import url +from expobanner.stat_views import * +from . import views + +urlpatterns = [ + url(r'^click/(?P\d{1,4})/$', views.click, name='banner_click'), + #url(r'^view/(?P\d+)/$', views.view, name='banner_view'), + # + url(r'^get-banners/$', views.get_banners), + url(r'^get-tops/$', views.get_top), + url(r'^banner/(?P\d+)/stat/$', BannerStat.as_view(), name='banner_stat_client'), + url(r'^paid/(?P\d+)/stat/$', PaidStat.as_view(), name='paid_stat_client'), +] diff --git a/expobanner/utils.py b/expobanner/utils.py index 9c4222a2..f3e457cf 100644 --- a/expobanner/utils.py +++ b/expobanner/utils.py @@ -1,5 +1,7 @@ # -*- coding: utf-8 -*- +import re import random +import datetime from django.db import connection def get_client_ip(request): @@ -10,6 +12,32 @@ def get_client_ip(request): ip = request.META.get('REMOTE_ADDR') return ip +def get_referer_view(request, default=None): + ''' + Return the referer view of the current request + + Example: + + def some_view(request): + ... + referer_view = get_referer_view(request) + return HttpResponseRedirect(referer_view, '/accounts/login/') + ''' + + # if the user typed the url directly in the browser's address bar + referer = request.META.get('HTTP_REFERER') + if not referer: + return default + + # remove the protocol and split the url at the slashes + referer = re.sub('^https?:\/\/', '', referer).split('/') + if referer[0] != request.META.get('SERVER_NAME'): + return default + + # add the slash at the relative path's view and finished + referer = u'/' + u'/'.join(referer[1:]) + return referer + def get_by_sort(banner_list): max_sort = 0 for banner in banner_list: @@ -19,12 +47,26 @@ def get_by_sort(banner_list): result = [banner for banner in banner_list if banner.sort == max_sort] return result +def set_cookie(response, key, value, days_expire = 7): + if days_expire is None: + max_age = 365 * 24 * 60 * 60 #one year + else: + max_age = days_expire * 24 * 60 * 60 + expires = datetime.datetime.strftime(datetime.datetime.utcnow() + datetime.timedelta(seconds=max_age), "%a, %d-%b-%Y %H:%M:%S GMT") + response.set_cookie(key, value, max_age=max_age, expires=expires) + return response + -def get_banner_by_params(banners_list, urls, params): +def get_banner_by_params(banners_list, urls, params, request): thematic_banners = [] url_banners = [] for banner in banners_list: + # check popups + if banner.popup: + cookie = request.COOKIES.get(banner.cookie) + if cookie: + continue # check by theme banner_theme_ids = [str(theme.id) for theme in banner.theme.all()] if banner_theme_ids: @@ -64,14 +106,18 @@ def get_banner_by_params(banners_list, urls, params): continue if thematic_banners: - return random.choice(thematic_banners) - if url_banners: - return random.choice(url_banners) - return None - - #print('END. NUMBER of queries = %d'%len(connection.queries)) + result = thematic_banners + elif url_banners: + result = url_banners + else: + result = [] + if result: + sort_result = get_by_sort(result) + return random.choice(sort_result) + else: + return None -def get_top_events(tops, params): +def get_top_events(tops, params, request): catalog = params.get('catalog') country = params.get('country', '') theme = params.get('theme', []) @@ -108,5 +154,6 @@ def get_top_events(tops, params): for top in sorted_top: event = top.get_event() if event: + top.link.log(request, 1) events.append(event) return events \ No newline at end of file diff --git a/expobanner/views.py b/expobanner/views.py index 96540cdc..3d6df21c 100644 --- a/expobanner/views.py +++ b/expobanner/views.py @@ -1,84 +1,97 @@ -# -*- coding: utf-8 -*- -import json -import re -from django.http import HttpResponse -from django.shortcuts import redirect, get_object_or_404 -from django.shortcuts import render_to_response -from django.template import RequestContext -from .models import Banner, BannerGroup, URL, Top -from expobanner.utils import get_by_sort, get_banner_by_params, get_client_ip, get_top_events - - -def click(request, banner_id): - banner = get_object_or_404(Banner, pk=banner_id) - banner.log(request, 2) - return redirect(banner.url) - - -def view(request, banner_id): - banner = get_object_or_404(Banner, pk=banner_id) - banner.log(request, 1) - return redirect(banner.img.url) - -def get_banners(request): - #url = request.GET.get('url', '/') - url = request.META.get('HTTP_REFERER', '/') - # get urls by current url - urls = URL.cached.all() - good_urls = [] - for u in urls: - if u.regex: - url_re = re.compile(u.url) - if url_re.findall(url): - good_urls.append(u) - elif url == u.url: - good_urls.append(u) - # fill parameters dict - params = {'theme': request.GET.getlist('theme', []), - 'tag': request.GET.get('tag'), - 'country': request.GET.get('country'), - 'city': request.GET.get('city'), - 'ip': get_client_ip(request)} - - group_banners = BannerGroup.cached.group_banners() - result = [] - # get banners for all groups - for group, banners in group_banners.iteritems(): - banner = get_banner_by_params(banners, good_urls, params) - if banner: - if banner.js or banner.html: - text = banner.text - img = '' - alt = '' - is_img = False - else: - text = '' - img = banner.img.url - alt = banner.alt - is_img = True - result.append({'id': group, - 'url': banner.get_click_link(), - 'is_html': banner.html, - 'is_flash': banner.flash, - 'is_img': is_img, - 'is_js': banner.js, - 'img': img, - 'alt': alt, - 'text': text - }) - # add view log - banner.log(request, 1) - - return HttpResponse(json.dumps(result, indent=4), content_type='application/json') - -def get_top(request): - params = {'theme': request.GET.getlist('theme', []), - 'tag': request.GET.get('tag'), - 'country': request.GET.get('country'), - 'city': request.GET.get('city'), - 'catalog': request.GET.get('catalog')} - - tops = Top.cached.all() - events = get_top_events(tops, params) - context = {'objects': events} +# -*- coding: utf-8 -*- +import json +import re +from django.http import HttpResponse +from django.shortcuts import redirect, get_object_or_404 +from django.shortcuts import render_to_response +from django.template import RequestContext +from .models import Banner, BannerGroup, URL, Top +from expobanner.utils import get_banner_by_params, get_client_ip, get_top_events, get_referer_view, set_cookie + + +def click(request, banner_id): + banner = get_object_or_404(Banner, pk=banner_id) + banner.log(request, 2) + return redirect(banner.url) + + +def view(request, banner_id): + banner = get_object_or_404(Banner, pk=banner_id) + banner.log(request, 1) + return redirect(banner.img.url) + +def get_banners(request): + url = get_referer_view(request, default='/') + # get urls by current url + urls = URL.cached.all() + good_urls = [] + for u in urls: + if u.regex: + url_re = re.compile(u.url) + if url_re.findall(url): + good_urls.append(u) + elif url == u.url: + good_urls.append(u) + # fill parameters dict + params = {'theme': request.GET.getlist('theme', []), + 'tag': request.GET.get('tag'), + 'country': request.GET.get('country'), + 'city': request.GET.get('city'), + 'ip': get_client_ip(request)} + + group_banners = BannerGroup.cached.group_banners() + result = [] + cookie = None + # get banners for all groups + places = request.GET.getlist('places', []) + + for group, banners in group_banners.iteritems(): + if group not in places: + # on this page there is no such group + continue + banner = get_banner_by_params(banners, good_urls, params, request) + if banner: + if banner.html: + text = banner.text + img = '' + alt = '' + is_img = False + else: + text = '' + try: + img = banner.img.url + except ValueError: + continue + alt = banner.alt + is_img = True + result.append({'id': group, + 'url': banner.get_click_link(), + 'is_html': banner.html, + 'is_flash': banner.flash, + 'is_img': is_img, + 'is_popup': banner.popup, + 'img': img, + 'alt': alt, + 'text': text + }) + if banner.popup: + cookie = banner.cookie + # add view log + banner.log(request, 1) + response = HttpResponse(json.dumps(result, indent=4), content_type='application/json') + if cookie: + response = set_cookie(response, cookie, '1') + + return response + +def get_top(request): + params = {'theme': request.GET.getlist('theme', []), + 'tag': request.GET.get('tag'), + 'country': request.GET.get('country'), + 'city': request.GET.get('city'), + 'catalog': request.GET.get('catalog')} + + tops = Top.cached.all() + events = get_top_events(tops, params, request) + context = {'objects': events} return render_to_response('client/includes/exposition/expo_top.html', context, context_instance=RequestContext(request)) \ No newline at end of file diff --git a/exposition/forms.py b/exposition/forms.py index 990fc457..7036432a 100644 --- a/exposition/forms.py +++ b/exposition/forms.py @@ -2,8 +2,6 @@ from django import forms from django.conf import settings from ckeditor.widgets import CKEditorWidget -from tinymce.widgets import TinyMCE -from django.core.exceptions import ValidationError from django.forms.util import ErrorList from django.core.validators import validate_email, URLValidator from django.utils.translation import ugettext as _ @@ -13,15 +11,11 @@ from theme.models import Tag from country.models import Country from theme.models import Theme from organiser.models import Organiser -from accounts.models import User -from company.models import Company from city.models import City -from service.models import Service from place_exposition.models import PlaceExposition #functions -from functions.translate import populate_all, fill_trans_fields_all, fill_with_signal +from functions.translate import fill_with_signal from functions.form_check import is_positive_integer -from functions.files import check_tmp_files from functions.form_check import translit_with_separator from settings.settings import date_formats from functions.admin_forms import AdminFilterForm @@ -223,7 +217,6 @@ class ExpositionCreateForm(forms.Form): exposition.country = Country.objects.get(id=data['country']) exposition.city = City.objects.get(id=data['city']) - if data.get('place'): exposition.place = PlaceExposition.objects.get(id=data['place']) else: @@ -365,7 +358,6 @@ class ExpositionCreateForm(forms.Form): price_catalog = cleaned_data.get('price_catalog').strip() return is_positive_integer(price_catalog) - def clean_visitors(self): """ checking visitors @@ -455,6 +447,12 @@ class ExpositionCreateForm(forms.Form): discount = cleaned_data.get('discount').strip() return is_positive_integer(discount) + + + + + + class ExpositionDeleteForm(forms.ModelForm): url = forms.CharField(widget=forms.HiddenInput()) diff --git a/exposition/manager.py b/exposition/manager.py index 1c9deec7..bf08f166 100644 --- a/exposition/manager.py +++ b/exposition/manager.py @@ -10,6 +10,7 @@ class ClientManager(TranslationManager): def upcoming(self): return self.filter(data_begin__gte=datetime.datetime.now().date()) + """ from exposition.models import Exposition diff --git a/exposition/models.py b/exposition/models.py index 76b7177f..8a38e1a9 100644 --- a/exposition/models.py +++ b/exposition/models.py @@ -59,6 +59,8 @@ class Exposition(TranslatableModel, EventMixin, ExpoMixin): data_end = models.DateField(verbose_name='Дата окончания') services = BitField(flags=flags) # relations + creator = models.ForeignKey('accounts.User', verbose_name=u'Создатель', on_delete=models.SET_NULL, + related_name='exposition_creator', blank=True, null=True) country = models.ForeignKey('country.Country', verbose_name='Страна', on_delete=models.PROTECT, related_name='exposition_country') city = models.ForeignKey('city.City', verbose_name='Город', on_delete=models.PROTECT, @@ -158,14 +160,12 @@ class Exposition(TranslatableModel, EventMixin, ExpoMixin): paid_new = models.ForeignKey('expobanner.Paid', blank=True, null=True, on_delete=models.SET_NULL) top = models.ForeignKey('expobanner.Top', blank=True, null=True, on_delete=models.SET_NULL) + main = models.ForeignKey('expobanner.MainPage', blank=True, null=True, on_delete=models.SET_NULL) #set manager of this model(fisrt manager is default) objects = ExpoManager() enable = ClientManager() imports = ExpoImportManager() - - - def __unicode__(self): return self.lazy_translation_getter('name', unicode(self.pk)) @@ -306,6 +306,18 @@ class Exposition(TranslatableModel, EventMixin, ExpoMixin): def theme_ids(self): return [item['id'] for item in self.theme.all().values('id')] + def get_main_link(self): + if self.main: + return self.main.link.get_click_link() + else: + return self.get_permanent_url() + + def get_top_link(self): + if self.top: + return self.top.link.get_click_link() + else: + return self.get_permanent_url() + class Statistic(TranslatableModel): exposition = models.ForeignKey(Exposition, related_name='statistic') diff --git a/exposition/views.py b/exposition/views.py index 43f5fb8f..b35e42a6 100644 --- a/exposition/views.py +++ b/exposition/views.py @@ -4,7 +4,8 @@ import datetime from django.http import HttpResponseRedirect, HttpResponse, HttpResponsePermanentRedirect from django.contrib.contenttypes.models import ContentType from django.conf import settings -from django.views.generic import ListView, DetailView +from django.views.generic import DetailView +from functions.custom_views import ListView from django.utils.translation import ugettext as _ from django.shortcuts import get_object_or_404 from django.http import Http404 @@ -433,7 +434,9 @@ class ExpoCityCatalog(ExpoCatalog): return qs def get_context_data(self, **kwargs): context = super(ExpoCityCatalog, self).get_context_data(**kwargs) - context['city'] = str(self.kwargs['city'].id) + city = self.kwargs['city'] + context['country'] = str(city.country_id) + context['city'] = str(city.id) return context diff --git a/functions/admin_views.py b/functions/admin_views.py index 0fb38183..d20b361d 100644 --- a/functions/admin_views.py +++ b/functions/admin_views.py @@ -90,6 +90,7 @@ def paginate_results(qs, page=None): return result +from hvad.models import TranslatableModel class AdminListView(FormView): def get_form(self, form_class): @@ -126,7 +127,10 @@ class AdminListView(FormView): def get_context_data(self, **kwargs): context = super(AdminListView, self).get_context_data(**kwargs) - qs = self.model.objects.language().all().order_by('name') + if issubclass(self.model, TranslatableModel): + qs = self.model.objects.language('all').all().order_by('name') + else: + qs = self.model.objects.all().order_by('name') result = paginate_results(qs, page=self.request.GET.get('page')) context['object_list'] = result return context diff --git a/functions/custom_views.py b/functions/custom_views.py index dfbc9071..5c526815 100644 --- a/functions/custom_views.py +++ b/functions/custom_views.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- from django.shortcuts import render_to_response -from django.http import HttpResponseRedirect, HttpResponse +from django.http import HttpResponseRedirect, HttpResponse, Http404 from django.core.context_processors import csrf from django.conf import settings from django.contrib.auth.decorators import login_required @@ -18,8 +18,51 @@ from hvad.utils import get_translation_aware_manager #python import random +from django.views.generic import ListView as OldListView -from country.models import Country +class ListView(OldListView): + """ + List of modules, where overrided ListView is used: + - accounts.views + - article.views + - company.views + - conference.views + - core.views + - exposition.views + - photologue.views + - place_exposition.views + - specialist_catalog.views + - translator.views + """ + def paginate_queryset(self, queryset, page_size): + """ + Paginate the queryset, if needed. + """ + paginator = self.get_paginator(queryset, page_size, allow_empty_first_page=self.get_allow_empty()) + page_kwarg = self.page_kwarg + page = self.kwargs.get(page_kwarg) or self.request.GET.get(page_kwarg) or 1 + try: + page_number = int(page) + except ValueError: + if page == 'last': + page_number = paginator.num_pages + else: + raise Http404(_("Page is not 'last', nor can it be converted to an int.")) + try: + page = paginator.page(page_number) + self.kwargs['home'] = False + + except EmptyPage as e: + page = paginator.page(1) + self.kwargs['home'] = True + return (paginator, page, page.object_list, page.has_other_pages()) + + def get(self, request, *args, **kwargs): + response = super(ListView, self).get(request, *args, **kwargs) + if self.kwargs.get("home"): + return HttpResponseRedirect("/") + else: + return response @login_required @@ -186,7 +229,7 @@ def delete_object(request, Model, Form, url, prev_page,): return render_to_response('delete.html', args) #-----class------------------ -from django.views.generic import ListView, DetailView +from django.views.generic import DetailView from functions.views_help import split_params from city.models import City diff --git a/functions/models_methods.py b/functions/models_methods.py index 35121ea9..c5c45e58 100644 --- a/functions/models_methods.py +++ b/functions/models_methods.py @@ -25,6 +25,21 @@ class ExpoManager(TranslationManager): except: return None + def expo_main(self): + lang = translation.get_language() + key = 'expo_main_page_key_%s'%lang + result = cache.get(key) + if not result: + result = list(self.language(lang). + select_related('country', 'city', 'place', 'main'). + prefetch_related('tag'). + filter(main__isnull=False). + filter(main__public=True)) + cache.set(key, result, 45) + + return result + + class CityManager(TranslationManager): cache_time = 600 diff --git a/import_xls/excel_settings.py b/import_xls/excel_settings.py index 182c7482..936c5913 100644 --- a/import_xls/excel_settings.py +++ b/import_xls/excel_settings.py @@ -27,7 +27,7 @@ def get_theme(value): def get_tag(value): - tag_names = [item['name'] for item in value.all().values('name')] + tag_names = [item['name'] for item in value.language('ru').all().values('name')] return ','.join(tag_names) def get_place_type(value): diff --git a/locale/en/LC_MESSAGES/django.po b/locale/en/LC_MESSAGES/django.po index 5141fd62..301efef5 100644 Binary files a/locale/en/LC_MESSAGES/django.po and b/locale/en/LC_MESSAGES/django.po differ diff --git a/logs/django_request.log b/logs/django_request.log new file mode 100644 index 00000000..e69de29b diff --git a/logs/mylog.log b/logs/mylog.log new file mode 100644 index 00000000..5dfa1096 --- /dev/null +++ b/logs/mylog.log @@ -0,0 +1,16 @@ +2015-07-28 12:23:39,172 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 12:23:39,175 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 12:23:39,200 [DEBUG] django.db.backends: (0.002) SHOW TABLES; args=() +2015-07-28 12:23:39,201 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 12:23:39,232 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 12:23:39,233 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 12:23:39,247 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 12:23:39,248 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 12:23:39,284 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 12:23:39,285 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 12:23:39,304 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 12:23:39,305 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 12:23:39,460 [DEBUG] root: Using default logger +2015-07-28 12:23:39,460 [DEBUG] root: Using default logger +2015-07-28 12:24:17,361 [DEBUG] django.db.backends: (0.001) SELECT `accounts_user`.`id`, `accounts_user`.`password`, `accounts_user`.`last_login`, `accounts_user`.`is_superuser`, `accounts_user`.`email`, `accounts_user`.`username`, `accounts_user`.`first_name`, `accounts_user`.`last_name`, `accounts_user`.`rating`, `accounts_user`.`url`, `accounts_user`.`is_active`, `accounts_user`.`is_staff`, `accounts_user`.`is_admin`, `accounts_user`.`date_joined`, `accounts_user`.`date_registered`, `accounts_user`.`date_modified`, `accounts_user`.`organiser_id`, `accounts_user`.`translator_id`, `accounts_user`.`company_id`, `accounts_user`.`position` FROM `accounts_user` WHERE `accounts_user`.`email` = 'vaniakov95@gmail.com' ; args=('vaniakov95@gmail.com',) +2015-07-28 12:24:25,526 [DEBUG] django.db.backends: (0.000) SELECT `accounts_user`.`id`, `accounts_user`.`password`, `accounts_user`.`last_login`, `accounts_user`.`is_superuser`, `accounts_user`.`email`, `accounts_user`.`username`, `accounts_user`.`first_name`, `accounts_user`.`last_name`, `accounts_user`.`rating`, `accounts_user`.`url`, `accounts_user`.`is_active`, `accounts_user`.`is_staff`, `accounts_user`.`is_admin`, `accounts_user`.`date_joined`, `accounts_user`.`date_registered`, `accounts_user`.`date_modified`, `accounts_user`.`organiser_id`, `accounts_user`.`translator_id`, `accounts_user`.`company_id`, `accounts_user`.`position` FROM `accounts_user` WHERE `accounts_user`.`email` = 'vaniakov95@gmail.com' ; args=('vaniakov95@gmail.com',) diff --git a/logs/mylog.log.1 b/logs/mylog.log.1 new file mode 100644 index 00000000..09851959 --- /dev/null +++ b/logs/mylog.log.1 @@ -0,0 +1,7056 @@ +2015-07-28 11:11:44,907 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:11:44,910 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:11:44,936 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:11:44,937 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:11:44,957 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:11:44,958 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:11:45,019 [DEBUG] django.db.backends: (0.002) SHOW TABLES; args=() +2015-07-28 11:11:45,020 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:11:45,094 [DEBUG] django.db.backends: (0.002) SHOW TABLES; args=() +2015-07-28 11:11:45,096 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:11:45,106 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:11:45,107 [DEBUG] django.db.backends: (0.001) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:11:45,168 [DEBUG] django.db.backends: (0.001) SELECT DISTINCT `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect`, `theme_theme_translation`.`name` FROM `theme_theme` INNER JOIN `exposition_exposition_theme` ON (`theme_theme`.`id` = `exposition_exposition_theme`.`theme_id`) INNER JOIN `exposition_exposition` ON (`exposition_exposition_theme`.`exposition_id` = `exposition_exposition`.`id`) INNER JOIN `exposition_exposition_theme` T4 ON (`exposition_exposition`.`id` = T4.`exposition_id`) INNER JOIN `theme_theme` T5 ON (T4.`theme_id` = T5.`id`) INNER JOIN `theme_theme_translation` ON (`theme_theme`.`id` = `theme_theme_translation`.`master_id`) WHERE (T5.`id` IS NOT NULL AND `theme_theme_translation`.`language_code` = 'ru' ) ORDER BY `theme_theme_translation`.`name` ASC; args=('ru',) +2015-07-28 11:11:45,175 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 1 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:11:45,177 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 2 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:11:45,180 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 75 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:11:45,182 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 94 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:11:45,184 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 3 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:11:45,187 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 37 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:11:45,189 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 84 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:11:45,191 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 4 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:11:45,193 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 64 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:11:45,196 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 77 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:11:45,198 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 6 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:11:45,200 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 7 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:11:45,203 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 8 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:11:45,205 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 5 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:11:45,207 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 10 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:11:45,210 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 11 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:11:45,212 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 74 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:11:45,214 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 70 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:11:45,216 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 73 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:11:45,219 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 69 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:11:45,221 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 71 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:11:45,223 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 68 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:11:45,226 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 72 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:11:45,228 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 45 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:11:45,230 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 13 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:11:45,233 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 14 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:11:45,235 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 42 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:11:45,237 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 15 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:11:45,240 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 43 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:11:45,242 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 27 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:11:45,244 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 22 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:11:45,246 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 16 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:11:45,249 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 17 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:11:45,251 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 87 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:11:45,253 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 44 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:11:45,256 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 50 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:11:45,258 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 18 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:11:45,260 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 21 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:11:45,262 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 62 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:11:45,265 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 51 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:11:45,267 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 23 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:11:45,269 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 97 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:11:45,272 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 9 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:11:45,274 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 31 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:11:45,276 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 63 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:11:45,279 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 24 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:11:45,281 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 26 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:11:45,283 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 28 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:11:45,286 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 30 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:11:45,288 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 34 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:11:45,290 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 90 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:11:45,292 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 54 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:11:45,295 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 48 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:11:45,297 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 32 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:11:45,300 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 29 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:11:45,302 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 83 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:11:45,304 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 35 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:11:45,306 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 36 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:11:45,309 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 38 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:11:45,311 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 39 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:11:45,313 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 40 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:11:45,317 [DEBUG] django.db.backends: (0.000) SELECT `country_area_translation`.`id`, `country_area_translation`.`name`, `country_area_translation`.`language_code`, `country_area_translation`.`master_id`, `country_area`.`id` FROM `country_area_translation` LEFT OUTER JOIN `country_area` ON (`country_area_translation`.`master_id` = `country_area`.`id`) LEFT OUTER JOIN `country_area_translation` T3 ON (`country_area`.`id` = T3.`master_id`) WHERE `country_area_translation`.`language_code` = 'ru' ORDER BY T3.`name` ASC; args=('ru',) +2015-07-28 11:11:45,323 [DEBUG] django.db.backends: (0.000) SELECT DISTINCT `exposition_exposition`.`country_id` FROM `exposition_exposition`; args=() +2015-07-28 11:11:45,342 [DEBUG] django.db.backends: (0.014) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id`, `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country_translation` LEFT OUTER JOIN `country_country` ON (`country_country_translation`.`master_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` T3 ON (`country_country`.`id` = T3.`master_id`) WHERE (`country_country_translation`.`master_id` IN (2, 5, 6, 7, 8, 10, 11, 13, 14, 16, 17, 19, 20, 25, 27, 31, 33, 35, 38, 39, 40, 41, 42, 45, 46, 47, 48, 50, 51, 52, 53, 54, 55, 56, 60, 62, 64, 66, 72, 73, 76, 78, 80, 81, 82, 83, 84, 85, 86, 87, 89, 90, 91, 92, 93, 96, 97, 99, 101, 103, 104, 106, 107, 108, 109, 110, 111, 112, 113, 115, 117, 118, 119, 120, 121, 129, 130, 134, 135, 136, 137, 138, 140, 141, 142, 143, 146, 147, 148, 150, 152, 154, 155, 157, 158, 159, 160, 163, 164, 165, 166, 169, 172, 177, 179, 181, 184, 186, 187, 189, 191, 194, 198, 199, 201, 204, 205, 206, 207) AND `country_country_translation`.`language_code` = 'ru' ) ORDER BY T3.`name` ASC; args=(2, 5, 6, 7, 8, 10, 11, 13, 14, 16, 17, 19, 20, 25, 27, 31, 33, 35, 38, 39, 40, 41, 42, 45, 46, 47, 48, 50, 51, 52, 53, 54, 55, 56, 60, 62, 64, 66, 72, 73, 76, 78, 80, 81, 82, 83, 84, 85, 86, 87, 89, 90, 91, 92, 93, 96, 97, 99, 101, 103, 104, 106, 107, 108, 109, 110, 111, 112, 113, 115, 117, 118, 119, 120, 121, 129, 130, 134, 135, 136, 137, 138, 140, 141, 142, 143, 146, 147, 148, 150, 152, 154, 155, 157, 158, 159, 160, 163, 164, 165, 166, 169, 172, 177, 179, 181, 184, 186, 187, 189, 191, 194, 198, 199, 201, 204, 205, 206, 207, 'ru') +2015-07-28 11:11:45,424 [DEBUG] django.db.backends: (0.001) SELECT DISTINCT `exposition_exposition`.`city_id` FROM `exposition_exposition`; args=() +2015-07-28 11:11:45,536 [DEBUG] django.db.backends: (0.099) SELECT `city_city_translation`.`id`, `city_city_translation`.`name`, `city_city_translation`.`region`, `city_city_translation`.`transport`, `city_city_translation`.`description`, `city_city_translation`.`famous_places`, `city_city_translation`.`shoping`, `city_city_translation`.`title`, `city_city_translation`.`descriptions`, `city_city_translation`.`keywords`, `city_city_translation`.`language_code`, `city_city_translation`.`master_id`, `city_city`.`id`, `city_city`.`services`, `city_city`.`url`, `city_city`.`old_url`, `city_city`.`inflect`, `city_city`.`country_id`, `city_city`.`code_IATA_id`, `city_city`.`population`, `city_city`.`phone_code`, `city_city`.`created`, `city_city`.`modified` FROM `city_city_translation` LEFT OUTER JOIN `city_city` ON (`city_city_translation`.`master_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` T3 ON (`city_city`.`id` = T3.`master_id`) WHERE (`city_city_translation`.`master_id` IN (-3730078, -3714993, -3714825, -3712125, -3414440, -3366242, -3212216, -3178767, -3160026, -3148348, -3106433, -3103581, -3102179, -3096108, -3091069, -3043275, -3042207, -3041912, -3040171, -3039267, -3038516, -3035173, -3034952, -3034701, -3034353, -3033871, -3033722, -3033718, -3029851, -3025025, -3024639, -3024309, -3024007, -3023495, -3023028, -3019679, -3019601, -3019132, -3015114, -3014703, -3013492, -3011273, -3006514, -3006140, -2996563, -2996523, -2996338, -2995930, -2994531, -2993218, -2990203, -2989168, -2981973, -2981545, -2980155, -2979687, -2974927, -2974462, -2972003, -2971968, -2970528, -2970141, -2969511, -2968530, -2967687, -2966930, -2966853, -2966244, -2964223, -2963575, -2962281, -2961506, -2960561, -2958321, -2950121, -2943527, -2941648, -2941280, -2936665, -2936262, -2934420, -2928684, -2928280, -2924570, -2924116, -2923678, -2923066, -2919283, -2918852, -2917908, -2916144, -2911004, -2899145, -2897205, -2896749, -2896432, -2886873, -2886746, -2883930, -2882404, -2880021, -2879191, -2877435, -2873843, -2866283, -2767043, -2764584, -2762812, -2753453, -2745636, -2744199, -2742107, -2739166, -2738616, -2737683, -2706092, -2705195, -2698521, -2679652, -2651804, -2648877, -2637882, -2625737, -2625660, -2624430, -2620663, -2615647, -2612321, -2611829, -2608164, -2607615, -2605646, -2605287, -2604911, -2604469, -2603961, -2603267, -2602512, -2602369, -2601889, -2601422, -2601144, -2600941, -2600535, -2600279, -2598194, -2597039, -2595943, -2595805, -2595386, -2594262, -2593403, -2593386, -2593226, -2592344, -2591777, -2590919, -2590498, -2589989, -2587757, -2579372, -2554935, -2554859, -2554817, -2554447, -2554000, -2553210, -2552994, -2552969, -2552809, -2552548, -2552151, -2552078, -2551757, -2551753, -2551451, -2551274, -2551235, -2551183, -2524279, -2503264, -2492129, -2482986, -2437894, -2424066, -2421883, -2404760, -2403010, -2402530, -2366485, -2353539, -2343962, -2342388, -2334555, -2334218, -2334069, -2331392, -2325645, -2276223, -2266494, -2258072, -2214877, -2173088, -2170180, -2167973, -2160205, -2159655, -2159606, -2156821, -2154520, -2154382, -2152943, -2152921, -2152403, -2152218, -2149006, -2147365, -2145932, -2145615, -2145280, -2145032, -2144863, -2144807, -2144141, -2144027, -2143610, -2140640, -2140567, -2140479, -2140452, -2112243, -2111972, -2111367, -2108361, -2106102, -2103041, -2102835, -2098033, -2097803, -2097701, -2093654, -2092770, -2092511, -2092174, -2090174, -2089356, -2088270, -2067935, -1997013, -1995515, -1995499, -1995338, -1992480, -1989985, -1982354, -1981445, -1971112, -1965564, -1964016, -1963947, -1959925, -1958757, -1956109, -1955925, -1955538, -1953257, -1951346, -1946324, -1941830, -1938815, -1935855, -1931786, -1931562, -1931546, -1930776, -1930588, -1929528, -1928564, -1925268, -1925258, -1924917, -1924465, -1922199, -1920233, -1919813, -1919548, -1912283, -1908634, -1908524, -1907161, -1905938, -1905584, -1903802, -1901835, -1900813, -1900774, -1900349, -1899743, -1898541, -1891486, -1887737, -1887191, -1883308, -1879835, -1876794, -1876356, -1871728, -1870735, -1865133, -1865057, -1862713, -1854320, -1853327, -1852370, -1849281, -1849253, -1847131, -1845975, -1843341, -1842944, -1841161, -1839098, -1839089, -1835238, -1832757, -1829320, -1829149, -1823084, -1822614, -1822294, -1821461, -1817680, -1810561, -1809855, -1804271, -1803994, -1800018, -1799639, -1794220, -1791959, -1790622, -1789153, -1788826, -1785903, -1785461, -1785434, -1783292, -1772098, -1771821, -1771505, -1771148, -1767857, -1766996, -1766950, -1762397, -1761951, -1761619, -1761123, -1760373, -1757722, -1756500, -1752234, -1751596, -1749194, -1747422, -1746443, -1743231, -1743182, -1743172, -1743065, -1742412, -1740635, -1736191, -1708147, -1704008, -1698603, -1690669, -1690444, -1690063, -1684228, -1679595, -1671447, -1669612, -1658079, -1655011, -1605526, -1603135, -1594675, -1586844, -1569058, -1563952, -1561728, -1555188, -1510346, -1508289, -1506909, -1504189, -1502950, -1502554, -1501986, -1476743, -1476233, -1476098, -1474712, -1474436, -1473937, -1473290, -1473278, -1473166, -1473153, -1471697, -1469710, -1468251, -1466824, -1464183, -1462807, -1462490, -1461464, -1461340, -1460939, -1460750, -1458949, -1457525, -1457494, -1456928, -1456813, -1456116, -1455068, -1454990, -1454460, -1454215, -1453260, -1452485, -1451964, -1451260, -1450921, -1450618, -1449947, -1449506, -1448468, -1447831, -1447117, -1447079, -1446426, -1442302, -1441792, -1441598, -1439527, -1438621, -1438604, -1432734, -1430647, -1426096, -1425294, -1424668, -1424354, -1423981, -1423684, -1421049, -1420906, -1420711, -1420293, -1419880, -1419454, -1418879, -1417924, -1416533, -1416177, -1416098, -1415036, -1413751, -1412526, -1412490, -1412198, -1411930, -1411193, -1409631, -1408925, -1408707, -1408524, -1408370, -1407705, -1407646, -1407447, -1407029, -1406959, -1406943, -1406939, -1406659, -1389822, -1388513, -1373945, -1368052, -1364995, -1353149, -1273769, -1273448, -1272393, -1240261, -1224926, -1217214, -1204094, -1187190, -1161664, -1156174, -1153951, -1151501, -1151195, -1148082, -1133206, -1113265, -1109108, -1064708, -1060168, -1059331, -1058303, -1057311, -1055659, -1054041, -1051195, -1049092, -1045268, -1044367, -1043968, -1041356, -1041320, -1038078, -1037865, -1037001, -1034272, -1033783, -1022136, -1013034, -979186, -970362, -955658, -938457, -932573, -927505, -926345, -910015, -904020, -901202, -897490, -878181, -872376, -851960, -850553, -844468, -843247, -840999, -840694, -838489, -837298, -829252, -826292, -814876, -801546, -789552, -787987, -785169, -784833, -782831, -782371, -782066, -781545, -781147, -779238, -775423, -773700, -765055, -761917, -759102, -755097, -755070, -749276, -746541, -745666, -740501, -735347, -735338, -732885, -731701, -728704, -727574, -722356, -717105, -716583, -713900, -708814, -700816, -679351, -671824, -669871, -667833, -666610, -666453, -663509, -657942, -657510, -644901, -629138, -596596, -594819, -592318, -579943, -578472, -576096, -575268, -574890, -573541, -572899, -571851, -570760, -569541, -569498, -567785, -564968, -564064, -562447, -561990, -559845, -553173, -552065, -542884, -542184, -537080, -534433, -531881, -529478, -524856, -523642, -519859, -514340, -513922, -510625, -507561, -507224, -501414, -501400, -496361, -493705, -480007, -458371, -440623, -409149, -407214, -406201, -406131, -402849, -402059, -395224, -391076, -390787, -390625, -385774, -384328, -384004, -373608, -372490, -372124, -370210, -352647, -337471, -290692, -290263, -284421, -280816, -277697, -273837, -268972, -248593, -246227, -242701, -240905, -237874, -235402, -233817, -226438, -207091, -168008, -132209, -132092, -132007, -131482, -131346, -130938, -130280, -129709, -126693, -126468, -126373, -125476, -124464, -124336, -123999, -123662, -123097, -122902, -122630, -121865, -121726, -121562, -120965, -120405, -118701, -118400, -117787, -117543, -117387, -117144, -117062, -116503, -115251, -115132, -113456, -112463, -112155, -111758, -111742, -111474, -111328, -111255, -110636, -110393, -108649, -101579, -96492, -95841, -94996, -93264, -91364, -90608, -90313, -89574, -87271, -77143, -74897, -73635, -39119, -38833, -32910, -28159, -20029, 79514, 213835, 399912, 20000374, 20001823, 20002205, 20002633, 20006680, 20006890, 20007132, 20007417, 20011324, 20012479, 20012526, 20013079, 20014160, 20014181, 20014579, 20014887, 20015057, 20015251, 20015274, 20015300, 20015533, 20015688, 20015725, 20015732, 20015742, 20015758, 20015795, 20016502, 20016621, 20017286, 20017349, 20021098, 20021296, 20022339, 20022659, 20022757, 20022851, 20022879, 20023182, 20023488, 20023524, 20024246, 20024809, 20025805, 20029490, 20030916, 20033146, 20033173, 20035538, 20037880, 20038859, 20040350, 20042778, 20046010, 20046120, 20050264, 20053799, 20054014, 20058684, 20061597, 20061717, 20063602, 20064211, 20064402, 20066659, 20067845, 20069878, 20075118, 20079110, 20080494, 20081054, 20081509, 20083006, 20085250, 20088325, 20090971, 20097593, 20097630, 20097871, 20103321, 20103791, 20104896, 20104955, 20108940, 20111994, 20115245, 20116092, 20123619, 20123908, 20127504, 20128111, 20128215, 20131185, 20133956, 20134081, 20137860, 20144883, 20145091, 20150599, 20150817, 20154335, 900000000, 900039384, 900039435, 900040280, 900047975, 900048034, 900048213, 900048870, 900049526, 900049585, 900050012, 900052829, 900052833, 900052834, 900052835, 900052836, 900052837, 900052838, 900052839, 900052840, 900052841, 900052842, 900052844, 900052845, 900052846, 900052847, 900052848, 900052849, 900052851, 900052853, 900052854, 900052855, 900052856) AND `city_city_translation`.`language_code` = 'ru' ) ORDER BY T3.`name` ASC; args=(-3730078, -3714993, -3714825, -3712125, -3414440, -3366242, -3212216, -3178767, -3160026, -3148348, -3106433, -3103581, -3102179, -3096108, -3091069, -3043275, -3042207, -3041912, -3040171, -3039267, -3038516, -3035173, -3034952, -3034701, -3034353, -3033871, -3033722, -3033718, -3029851, -3025025, -3024639, -3024309, -3024007, -3023495, -3023028, -3019679, -3019601, -3019132, -3015114, -3014703, -3013492, -3011273, -3006514, -3006140, -2996563, -2996523, -2996338, -2995930, -2994531, -2993218, -2990203, -2989168, -2981973, -2981545, -2980155, -2979687, -2974927, -2974462, -2972003, -2971968, -2970528, -2970141, -2969511, -2968530, -2967687, -2966930, -2966853, -2966244, -2964223, -2963575, -2962281, -2961506, -2960561, -2958321, -2950121, -2943527, -2941648, -2941280, -2936665, -2936262, -2934420, -2928684, -2928280, -2924570, -2924116, -2923678, -2923066, -2919283, -2918852, -2917908, -2916144, -2911004, -2899145, -2897205, -2896749, -2896432, -2886873, -2886746, -2883930, -2882404, -2880021, -2879191, -2877435, -2873843, -2866283, -2767043, -2764584, -2762812, -2753453, -2745636, -2744199, -2742107, -2739166, -2738616, -2737683, -2706092, -2705195, -2698521, -2679652, -2651804, -2648877, -2637882, -2625737, -2625660, -2624430, -2620663, -2615647, -2612321, -2611829, -2608164, -2607615, -2605646, -2605287, -2604911, -2604469, -2603961, -2603267, -2602512, -2602369, -2601889, -2601422, -2601144, -2600941, -2600535, -2600279, -2598194, -2597039, -2595943, -2595805, -2595386, -2594262, -2593403, -2593386, -2593226, -2592344, -2591777, -2590919, -2590498, -2589989, -2587757, -2579372, -2554935, -2554859, -2554817, -2554447, -2554000, -2553210, -2552994, -2552969, -2552809, -2552548, -2552151, -2552078, -2551757, -2551753, -2551451, -2551274, -2551235, -2551183, -2524279, -2503264, -2492129, -2482986, -2437894, -2424066, -2421883, -2404760, -2403010, -2402530, -2366485, -2353539, -2343962, -2342388, -2334555, -2334218, -2334069, -2331392, -2325645, -2276223, -2266494, -2258072, -2214877, -2173088, -2170180, -2167973, -2160205, -2159655, -2159606, -2156821, -2154520, -2154382, -2152943, -2152921, -2152403, -2152218, -2149006, -2147365, -2145932, -2145615, -2145280, -2145032, -2144863, -2144807, -2144141, -2144027, -2143610, -2140640, -2140567, -2140479, -2140452, -2112243, -2111972, -2111367, -2108361, -2106102, -2103041, -2102835, -2098033, -2097803, -2097701, -2093654, -2092770, -2092511, -2092174, -2090174, -2089356, -2088270, -2067935, -1997013, -1995515, -1995499, -1995338, -1992480, -1989985, -1982354, -1981445, -1971112, -1965564, -1964016, -1963947, -1959925, -1958757, -1956109, -1955925, -1955538, -1953257, -1951346, -1946324, -1941830, -1938815, -1935855, -1931786, -1931562, -1931546, -1930776, -1930588, -1929528, -1928564, -1925268, -1925258, -1924917, -1924465, -1922199, -1920233, -1919813, -1919548, -1912283, -1908634, -1908524, -1907161, -1905938, -1905584, -1903802, -1901835, -1900813, -1900774, -1900349, -1899743, -1898541, -1891486, -1887737, -1887191, -1883308, -1879835, -1876794, -1876356, -1871728, -1870735, -1865133, -1865057, -1862713, -1854320, -1853327, -1852370, -1849281, -1849253, -1847131, -1845975, -1843341, -1842944, -1841161, -1839098, -1839089, -1835238, -1832757, -1829320, -1829149, -1823084, -1822614, -1822294, -1821461, -1817680, -1810561, -1809855, -1804271, -1803994, -1800018, -1799639, -1794220, -1791959, -1790622, -1789153, -1788826, -1785903, -1785461, -1785434, -1783292, -1772098, -1771821, -1771505, -1771148, -1767857, -1766996, -1766950, -1762397, -1761951, -1761619, -1761123, -1760373, -1757722, -1756500, -1752234, -1751596, -1749194, -1747422, -1746443, -1743231, -1743182, -1743172, -1743065, -1742412, -1740635, -1736191, -1708147, -1704008, -1698603, -1690669, -1690444, -1690063, -1684228, -1679595, -1671447, -1669612, -1658079, -1655011, -1605526, -1603135, -1594675, -1586844, -1569058, -1563952, -1561728, -1555188, -1510346, -1508289, -1506909, -1504189, -1502950, -1502554, -1501986, -1476743, -1476233, -1476098, -1474712, -1474436, -1473937, -1473290, -1473278, -1473166, -1473153, -1471697, -1469710, -1468251, -1466824, -1464183, -1462807, -1462490, -1461464, -1461340, -1460939, -1460750, -1458949, -1457525, -1457494, -1456928, -1456813, -1456116, -1455068, -1454990, -1454460, -1454215, -1453260, -1452485, -1451964, -1451260, -1450921, -1450618, -1449947, -1449506, -1448468, -1447831, -1447117, -1447079, -1446426, -1442302, -1441792, -1441598, -1439527, -1438621, -1438604, -1432734, -1430647, -1426096, -1425294, -1424668, -1424354, -1423981, -1423684, -1421049, -1420906, -1420711, -1420293, -1419880, -1419454, -1418879, -1417924, -1416533, -1416177, -1416098, -1415036, -1413751, -1412526, -1412490, -1412198, -1411930, -1411193, -1409631, -1408925, -1408707, -1408524, -1408370, -1407705, -1407646, -1407447, -1407029, -1406959, -1406943, -1406939, -1406659, -1389822, -1388513, -1373945, -1368052, -1364995, -1353149, -1273769, -1273448, -1272393, -1240261, -1224926, -1217214, -1204094, -1187190, -1161664, -1156174, -1153951, -1151501, -1151195, -1148082, -1133206, -1113265, -1109108, -1064708, -1060168, -1059331, -1058303, -1057311, -1055659, -1054041, -1051195, -1049092, -1045268, -1044367, -1043968, -1041356, -1041320, -1038078, -1037865, -1037001, -1034272, -1033783, -1022136, -1013034, -979186, -970362, -955658, -938457, -932573, -927505, -926345, -910015, -904020, -901202, -897490, -878181, -872376, -851960, -850553, -844468, -843247, -840999, -840694, -838489, -837298, -829252, -826292, -814876, -801546, -789552, -787987, -785169, -784833, -782831, -782371, -782066, -781545, -781147, -779238, -775423, -773700, -765055, -761917, -759102, -755097, -755070, -749276, -746541, -745666, -740501, -735347, -735338, -732885, -731701, -728704, -727574, -722356, -717105, -716583, -713900, -708814, -700816, -679351, -671824, -669871, -667833, -666610, -666453, -663509, -657942, -657510, -644901, -629138, -596596, -594819, -592318, -579943, -578472, -576096, -575268, -574890, -573541, -572899, -571851, -570760, -569541, -569498, -567785, -564968, -564064, -562447, -561990, -559845, -553173, -552065, -542884, -542184, -537080, -534433, -531881, -529478, -524856, -523642, -519859, -514340, -513922, -510625, -507561, -507224, -501414, -501400, -496361, -493705, -480007, -458371, -440623, -409149, -407214, -406201, -406131, -402849, -402059, -395224, -391076, -390787, -390625, -385774, -384328, -384004, -373608, -372490, -372124, -370210, -352647, -337471, -290692, -290263, -284421, -280816, -277697, -273837, -268972, -248593, -246227, -242701, -240905, -237874, -235402, -233817, -226438, -207091, -168008, -132209, -132092, -132007, -131482, -131346, -130938, -130280, -129709, -126693, -126468, -126373, -125476, -124464, -124336, -123999, -123662, -123097, -122902, -122630, -121865, -121726, -121562, -120965, -120405, -118701, -118400, -117787, -117543, -117387, -117144, -117062, -116503, -115251, -115132, -113456, -112463, -112155, -111758, -111742, -111474, -111328, -111255, -110636, -110393, -108649, -101579, -96492, -95841, -94996, -93264, -91364, -90608, -90313, -89574, -87271, -77143, -74897, -73635, -39119, -38833, -32910, -28159, -20029, 79514, 213835, 399912, 20000374, 20001823, 20002205, 20002633, 20006680, 20006890, 20007132, 20007417, 20011324, 20012479, 20012526, 20013079, 20014160, 20014181, 20014579, 20014887, 20015057, 20015251, 20015274, 20015300, 20015533, 20015688, 20015725, 20015732, 20015742, 20015758, 20015795, 20016502, 20016621, 20017286, 20017349, 20021098, 20021296, 20022339, 20022659, 20022757, 20022851, 20022879, 20023182, 20023488, 20023524, 20024246, 20024809, 20025805, 20029490, 20030916, 20033146, 20033173, 20035538, 20037880, 20038859, 20040350, 20042778, 20046010, 20046120, 20050264, 20053799, 20054014, 20058684, 20061597, 20061717, 20063602, 20064211, 20064402, 20066659, 20067845, 20069878, 20075118, 20079110, 20080494, 20081054, 20081509, 20083006, 20085250, 20088325, 20090971, 20097593, 20097630, 20097871, 20103321, 20103791, 20104896, 20104955, 20108940, 20111994, 20115245, 20116092, 20123619, 20123908, 20127504, 20128111, 20128215, 20131185, 20133956, 20134081, 20137860, 20144883, 20145091, 20150599, 20150817, 20154335, 900000000, 900039384, 900039435, 900040280, 900047975, 900048034, 900048213, 900048870, 900049526, 900049585, 900050012, 900052829, 900052833, 900052834, 900052835, 900052836, 900052837, 900052838, 900052839, 900052840, 900052841, 900052842, 900052844, 900052845, 900052846, 900052847, 900052848, 900052849, 900052851, 900052853, 900052854, 900052855, 900052856, 'ru') +2015-07-28 11:11:46,046 [DEBUG] django.db.backends: (0.000) SELECT `country_area_translation`.`id`, `country_area_translation`.`name`, `country_area_translation`.`language_code`, `country_area_translation`.`master_id`, `country_area`.`id` FROM `country_area_translation` LEFT OUTER JOIN `country_area` ON (`country_area_translation`.`master_id` = `country_area`.`id`) LEFT OUTER JOIN `country_area_translation` T3 ON (`country_area`.`id` = T3.`master_id`) WHERE `country_area_translation`.`language_code` = 'ru' ORDER BY T3.`name` ASC; args=('ru',) +2015-07-28 11:11:46,238 [DEBUG] django.db.backends: (0.005) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE `theme_theme_translation`.`language_code` = 'ru' ORDER BY `theme_theme_translation`.`name` ASC; args=('ru',) +2015-07-28 11:11:46,250 [DEBUG] django.db.backends: (0.000) SELECT `country_area_translation`.`id`, `country_area_translation`.`name`, `country_area_translation`.`language_code`, `country_area_translation`.`master_id`, `country_area`.`id` FROM `country_area_translation` LEFT OUTER JOIN `country_area` ON (`country_area_translation`.`master_id` = `country_area`.`id`) LEFT OUTER JOIN `country_area_translation` T3 ON (`country_area`.`id` = T3.`master_id`) WHERE `country_area_translation`.`language_code` = 'ru' ORDER BY T3.`name` ASC; args=('ru',) +2015-07-28 11:11:46,395 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:11:46,406 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:11:46,409 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:11:46,411 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:11:46,413 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:11:46,416 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:11:46,418 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:11:46,421 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:11:46,423 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:11:46,426 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:11:46,428 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:11:46,431 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:11:46,433 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:11:46,436 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:11:46,438 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:11:46,441 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:11:46,444 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:11:46,446 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:11:46,448 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:11:46,451 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:11:46,453 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:11:46,456 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:11:46,458 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:11:46,461 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:11:46,463 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:11:46,466 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:11:46,468 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:11:46,471 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:11:46,473 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:11:46,476 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:11:46,478 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:11:46,481 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:11:46,483 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:11:46,486 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:11:46,488 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:11:46,490 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:11:46,493 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:11:46,495 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:11:46,498 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:11:46,500 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:11:46,502 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:11:46,505 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:11:46,507 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:11:46,509 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:11:46,512 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:11:46,514 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:11:46,517 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:11:46,519 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:11:46,521 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:11:46,524 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:11:46,526 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:11:46,529 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:11:46,531 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:11:46,533 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:11:46,536 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:11:46,538 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:11:46,540 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:11:46,543 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:11:46,545 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:11:46,548 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:11:46,550 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:11:46,552 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:11:46,555 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:11:46,557 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:11:46,560 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:11:46,562 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:11:46,564 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:11:46,567 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:11:46,569 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:11:46,572 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:11:46,574 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:11:46,577 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:11:46,579 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:11:46,581 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:11:46,584 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:11:46,586 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:11:46,588 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:11:46,591 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:11:46,593 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:11:46,595 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:11:46,598 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:11:46,600 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:11:46,602 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:11:46,605 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:11:46,607 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:11:46,609 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:11:46,612 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:11:46,614 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:11:46,616 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:11:46,618 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:11:46,621 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:11:46,623 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:11:46,625 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:11:46,628 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:11:46,630 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:11:46,632 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:11:46,635 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:11:46,637 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:11:46,639 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:11:46,641 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:11:46,644 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:11:46,654 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:11:46,656 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:11:46,659 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:11:46,661 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:11:46,663 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:11:46,666 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:11:46,668 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:11:46,670 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:11:46,673 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:11:46,675 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:11:46,677 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:11:46,680 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:11:46,682 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:11:46,684 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:11:46,687 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:11:46,689 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:11:46,691 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:11:46,694 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:11:46,696 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:11:46,698 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:11:46,701 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:11:46,703 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:11:46,705 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:11:46,708 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:11:46,710 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:11:46,713 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:11:46,715 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:11:46,717 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:11:46,720 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:11:46,722 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:11:46,724 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:11:46,727 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:11:46,729 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:11:46,731 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:11:46,733 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:11:46,736 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:11:46,738 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:11:46,741 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:11:46,743 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:11:46,745 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:11:46,748 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:11:46,750 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:11:46,752 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:11:46,755 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:11:46,757 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:11:46,759 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:11:46,764 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:11:46,767 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:11:46,769 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:11:46,771 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:11:46,774 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:11:46,776 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:11:46,779 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:11:46,781 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:11:46,783 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:11:46,786 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:11:46,788 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:11:46,790 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:11:46,793 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:11:46,795 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:11:46,797 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:11:46,800 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:11:46,802 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:11:46,804 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:11:46,806 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:11:46,809 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:11:46,811 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:11:46,814 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:11:46,816 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:11:46,818 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:11:46,820 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:11:46,823 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:11:46,825 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:11:46,827 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:11:46,830 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:11:46,832 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:11:46,834 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:11:46,837 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:11:46,839 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:11:46,841 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:11:46,843 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:11:46,846 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:11:46,848 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:11:46,850 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:11:46,853 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:11:46,855 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:11:46,857 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:11:46,860 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:11:46,862 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:11:46,864 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:11:46,867 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:11:46,869 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:11:46,871 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:11:46,874 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:11:46,876 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:11:46,878 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:11:46,880 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:11:46,883 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:11:46,885 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:11:46,887 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:11:46,890 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:11:46,893 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:11:46,895 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:11:46,897 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:11:46,899 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:11:47,027 [DEBUG] django.db.backends: (0.124) SELECT `company_company_translation`.`id`, `company_company_translation`.`name`, `company_company_translation`.`specialization`, `company_company_translation`.`description`, `company_company_translation`.`address_inf`, `company_company_translation`.`title`, `company_company_translation`.`descriptions`, `company_company_translation`.`keywords`, `company_company_translation`.`language_code`, `company_company_translation`.`master_id`, `company_company`.`id`, `company_company`.`url`, `company_company`.`creator_id`, `company_company`.`country_id`, `company_company`.`city_id`, `company_company`.`address`, `company_company`.`staff_number`, `company_company`.`phone`, `company_company`.`fax`, `company_company`.`web_page`, `company_company`.`email`, `company_company`.`facebook`, `company_company`.`twitter`, `company_company`.`linkedin`, `company_company`.`vk`, `company_company`.`foundation`, `company_company`.`rating`, `company_company`.`created`, `company_company`.`modified`, `company_company`.`logo` FROM `company_company_translation` LEFT OUTER JOIN `company_company` ON (`company_company_translation`.`master_id` = `company_company`.`id`) WHERE `company_company_translation`.`language_code` = 'ru' ORDER BY `company_company`.`rating` DESC, `company_company_translation`.`master_id` ASC; args=('ru',) +2015-07-28 11:11:47,496 [DEBUG] django.db.backends: (0.138) SELECT `organiser_organiser_translation`.`id`, `organiser_organiser_translation`.`name`, `organiser_organiser_translation`.`specialization`, `organiser_organiser_translation`.`description`, `organiser_organiser_translation`.`representation`, `organiser_organiser_translation`.`address_inf`, `organiser_organiser_translation`.`title`, `organiser_organiser_translation`.`descriptions`, `organiser_organiser_translation`.`keywords`, `organiser_organiser_translation`.`language_code`, `organiser_organiser_translation`.`master_id`, `organiser_organiser`.`id`, `organiser_organiser`.`url`, `organiser_organiser`.`country_id`, `organiser_organiser`.`city_id`, `organiser_organiser`.`address`, `organiser_organiser`.`logo`, `organiser_organiser`.`rating`, `organiser_organiser`.`phone`, `organiser_organiser`.`fax`, `organiser_organiser`.`web_page`, `organiser_organiser`.`email`, `organiser_organiser`.`facebook`, `organiser_organiser`.`twitter`, `organiser_organiser`.`linkedin`, `organiser_organiser`.`vk`, `organiser_organiser`.`foundation`, `organiser_organiser`.`events_number`, `organiser_organiser`.`staff_number`, `organiser_organiser`.`created`, `organiser_organiser`.`modified`, `organiser_organiser`.`active` FROM `organiser_organiser_translation` LEFT OUTER JOIN `organiser_organiser` ON (`organiser_organiser_translation`.`master_id` = `organiser_organiser`.`id`) WHERE `organiser_organiser_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:11:47,895 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:11:47,917 [DEBUG] django.db.backends: (0.001) SELECT DISTINCT `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect`, `theme_theme_translation`.`name` FROM `theme_theme` INNER JOIN `exposition_exposition_theme` ON (`theme_theme`.`id` = `exposition_exposition_theme`.`theme_id`) INNER JOIN `exposition_exposition` ON (`exposition_exposition_theme`.`exposition_id` = `exposition_exposition`.`id`) INNER JOIN `exposition_exposition_theme` T4 ON (`exposition_exposition`.`id` = T4.`exposition_id`) INNER JOIN `theme_theme` T5 ON (T4.`theme_id` = T5.`id`) INNER JOIN `theme_theme_translation` ON (`theme_theme`.`id` = `theme_theme_translation`.`master_id`) WHERE (T5.`id` IS NOT NULL AND `theme_theme_translation`.`language_code` = 'ru' ) ORDER BY `theme_theme_translation`.`name` ASC; args=('ru',) +2015-07-28 11:11:47,926 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 1 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:11:47,929 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 2 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:11:47,931 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 75 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:11:47,933 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 94 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:11:47,935 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 3 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:11:47,938 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 37 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:11:47,940 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 84 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:11:47,942 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 4 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:11:47,944 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 64 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:11:47,947 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 77 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:11:47,949 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 6 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:11:47,951 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 7 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:11:47,953 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 8 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:11:47,956 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 5 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:11:47,958 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 10 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:11:47,960 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 11 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:11:47,962 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 74 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:11:47,964 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 70 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:11:47,967 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 73 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:11:47,969 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 69 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:11:47,971 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 71 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:11:47,974 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 68 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:11:47,976 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 72 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:11:47,978 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 45 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:11:47,981 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 13 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:11:47,983 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 14 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:11:47,985 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 42 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:11:47,987 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 15 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:11:47,990 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 43 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:11:47,992 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 27 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:11:47,994 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 22 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:11:47,996 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 16 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:11:47,999 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 17 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:11:48,001 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 87 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:11:48,003 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 44 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:11:48,005 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 50 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:11:48,008 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 18 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:11:48,010 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 21 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:11:48,012 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 62 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:11:48,016 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 51 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:11:48,018 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 23 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:11:48,020 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 97 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:11:48,023 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 9 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:11:48,025 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 31 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:11:48,027 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 63 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:11:48,030 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 24 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:11:48,032 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 26 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:11:48,034 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 28 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:11:48,037 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 30 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:11:48,039 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 34 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:11:48,041 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 90 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:11:48,043 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 54 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:11:48,046 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 48 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:11:48,048 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 32 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:11:48,050 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 29 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:11:48,052 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 83 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:11:48,055 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 35 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:11:48,057 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 36 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:11:48,059 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 38 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:11:48,061 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 39 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:11:48,063 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 40 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:11:48,065 [DEBUG] django.db.backends: (0.000) SELECT `country_area_translation`.`id`, `country_area_translation`.`name`, `country_area_translation`.`language_code`, `country_area_translation`.`master_id`, `country_area`.`id` FROM `country_area_translation` LEFT OUTER JOIN `country_area` ON (`country_area_translation`.`master_id` = `country_area`.`id`) LEFT OUTER JOIN `country_area_translation` T3 ON (`country_area`.`id` = T3.`master_id`) WHERE `country_area_translation`.`language_code` = 'ru' ORDER BY T3.`name` ASC; args=('ru',) +2015-07-28 11:11:48,312 [DEBUG] django.db.backends: (0.060) SELECT `place_exposition_placeexposition_translation`.`id`, `place_exposition_placeexposition_translation`.`name`, `place_exposition_placeexposition_translation`.`main_title`, `place_exposition_placeexposition_translation`.`description`, `place_exposition_placeexposition_translation`.`adress`, `place_exposition_placeexposition_translation`.`title`, `place_exposition_placeexposition_translation`.`descriptions`, `place_exposition_placeexposition_translation`.`keywords`, `place_exposition_placeexposition_translation`.`total_year_action`, `place_exposition_placeexposition_translation`.`language_code`, `place_exposition_placeexposition_translation`.`master_id`, `place_exposition_placeexposition`.`id`, `place_exposition_placeexposition`.`url`, `place_exposition_placeexposition`.`country_id`, `place_exposition_placeexposition`.`city_id`, `place_exposition_placeexposition`.`photogallery_id`, `place_exposition_placeexposition`.`type`, `place_exposition_placeexposition`.`address`, `place_exposition_placeexposition`.`phone`, `place_exposition_placeexposition`.`fax`, `place_exposition_placeexposition`.`web_page`, `place_exposition_placeexposition`.`email`, `place_exposition_placeexposition`.`foundation_year`, `place_exposition_placeexposition`.`event_in_year`, `place_exposition_placeexposition`.`total_area`, `place_exposition_placeexposition`.`closed_area`, `place_exposition_placeexposition`.`open_area`, `place_exposition_placeexposition`.`total_pavilions`, `place_exposition_placeexposition`.`total_halls`, `place_exposition_placeexposition`.`virtual_tour`, `place_exposition_placeexposition`.`wifi`, `place_exposition_placeexposition`.`bank`, `place_exposition_placeexposition`.`children_room`, `place_exposition_placeexposition`.`disabled_service`, `place_exposition_placeexposition`.`conference_centre`, `place_exposition_placeexposition`.`business_centre`, `place_exposition_placeexposition`.`online_registration`, `place_exposition_placeexposition`.`cafe`, `place_exposition_placeexposition`.`terminals`, `place_exposition_placeexposition`.`parking`, `place_exposition_placeexposition`.`press_centre`, `place_exposition_placeexposition`.`mobile_application`, `place_exposition_placeexposition`.`logo`, `place_exposition_placeexposition`.`rating`, `place_exposition_placeexposition`.`partner`, `place_exposition_placeexposition`.`created`, `place_exposition_placeexposition`.`modified`, `place_exposition_placeexposition`.`views`, `place_exposition_placeexposition`.`is_published` FROM `place_exposition_placeexposition_translation` LEFT OUTER JOIN `place_exposition_placeexposition` ON (`place_exposition_placeexposition_translation`.`master_id` = `place_exposition_placeexposition`.`id`) WHERE `place_exposition_placeexposition_translation`.`language_code` = 'ru' ORDER BY `place_exposition_placeexposition`.`rating` DESC, `place_exposition_placeexposition_translation`.`master_id` ASC; args=('ru',) +2015-07-28 11:11:48,612 [DEBUG] django.db.backends: (0.131) SELECT `organiser_organiser_translation`.`id`, `organiser_organiser_translation`.`name`, `organiser_organiser_translation`.`specialization`, `organiser_organiser_translation`.`description`, `organiser_organiser_translation`.`representation`, `organiser_organiser_translation`.`address_inf`, `organiser_organiser_translation`.`title`, `organiser_organiser_translation`.`descriptions`, `organiser_organiser_translation`.`keywords`, `organiser_organiser_translation`.`language_code`, `organiser_organiser_translation`.`master_id`, `organiser_organiser`.`id`, `organiser_organiser`.`url`, `organiser_organiser`.`country_id`, `organiser_organiser`.`city_id`, `organiser_organiser`.`address`, `organiser_organiser`.`logo`, `organiser_organiser`.`rating`, `organiser_organiser`.`phone`, `organiser_organiser`.`fax`, `organiser_organiser`.`web_page`, `organiser_organiser`.`email`, `organiser_organiser`.`facebook`, `organiser_organiser`.`twitter`, `organiser_organiser`.`linkedin`, `organiser_organiser`.`vk`, `organiser_organiser`.`foundation`, `organiser_organiser`.`events_number`, `organiser_organiser`.`staff_number`, `organiser_organiser`.`created`, `organiser_organiser`.`modified`, `organiser_organiser`.`active` FROM `organiser_organiser_translation` LEFT OUTER JOIN `organiser_organiser` ON (`organiser_organiser_translation`.`master_id` = `organiser_organiser`.`id`) WHERE `organiser_organiser_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:11:49,115 [DEBUG] django.db.backends: (0.119) SELECT `company_company_translation`.`id`, `company_company_translation`.`name`, `company_company_translation`.`specialization`, `company_company_translation`.`description`, `company_company_translation`.`address_inf`, `company_company_translation`.`title`, `company_company_translation`.`descriptions`, `company_company_translation`.`keywords`, `company_company_translation`.`language_code`, `company_company_translation`.`master_id`, `company_company`.`id`, `company_company`.`url`, `company_company`.`creator_id`, `company_company`.`country_id`, `company_company`.`city_id`, `company_company`.`address`, `company_company`.`staff_number`, `company_company`.`phone`, `company_company`.`fax`, `company_company`.`web_page`, `company_company`.`email`, `company_company`.`facebook`, `company_company`.`twitter`, `company_company`.`linkedin`, `company_company`.`vk`, `company_company`.`foundation`, `company_company`.`rating`, `company_company`.`created`, `company_company`.`modified`, `company_company`.`logo` FROM `company_company_translation` LEFT OUTER JOIN `company_company` ON (`company_company_translation`.`master_id` = `company_company`.`id`) WHERE `company_company_translation`.`language_code` = 'ru' ORDER BY `company_company`.`rating` DESC, `company_company_translation`.`master_id` ASC; args=('ru',) +2015-07-28 11:11:49,445 [DEBUG] django.db.backends: (0.008) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:11:49,456 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:11:49,458 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:11:49,460 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:11:49,463 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:11:49,465 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:11:49,467 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:11:49,469 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:11:49,472 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:11:49,474 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:11:49,476 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:11:49,479 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:11:49,481 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:11:49,483 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:11:49,485 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:11:49,488 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:11:49,490 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:11:49,492 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:11:49,494 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:11:49,497 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:11:49,499 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:11:49,501 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:11:49,504 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:11:49,506 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:11:49,508 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:11:49,511 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:11:49,513 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:11:49,515 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:11:49,517 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:11:49,520 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:11:49,522 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:11:49,524 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:11:49,526 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:11:49,529 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:11:49,531 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:11:49,533 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:11:49,535 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:11:49,538 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:11:49,540 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:11:49,542 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:11:49,544 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:11:49,547 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:11:49,549 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:11:49,551 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:11:49,554 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:11:49,556 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:11:49,558 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:11:49,560 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:11:49,563 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:11:49,565 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:11:49,567 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:11:49,570 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:11:49,572 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:11:49,574 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:11:49,577 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:11:49,579 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:11:49,582 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:11:49,584 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:11:49,586 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:11:49,588 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:11:49,591 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:11:49,593 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:11:49,595 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:11:49,597 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:11:49,600 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:11:49,602 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:11:49,604 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:11:49,606 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:11:49,609 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:11:49,611 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:11:49,613 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:11:49,616 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:11:49,618 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:11:49,620 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:11:49,622 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:11:49,625 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:11:49,627 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:11:49,629 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:11:49,631 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:11:49,634 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:11:49,637 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:11:49,640 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:11:49,642 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:11:49,644 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:11:49,647 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:11:49,649 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:11:49,651 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:11:49,653 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:11:49,656 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:11:49,658 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:11:49,660 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:11:49,663 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:11:49,665 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:11:49,667 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:11:49,669 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:11:49,672 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:11:49,674 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:11:49,676 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:11:49,678 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:11:49,681 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:11:49,683 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:11:49,693 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:11:49,696 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:11:49,698 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:11:49,700 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:11:49,703 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:11:49,705 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:11:49,707 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:11:49,709 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:11:49,712 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:11:49,714 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:11:49,716 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:11:49,718 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:11:49,721 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:11:49,723 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:11:49,725 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:11:49,727 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:11:49,730 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:11:49,732 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:11:49,734 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:11:49,737 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:11:49,739 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:11:49,741 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:11:49,743 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:11:49,746 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:11:49,748 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:11:49,750 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:11:49,752 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:11:49,755 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:11:49,757 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:11:49,759 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:11:49,761 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:11:49,764 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:11:49,766 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:11:49,768 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:11:49,770 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:11:49,773 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:11:49,775 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:11:49,777 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:11:49,779 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:11:49,782 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:11:49,784 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:11:49,786 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:11:49,788 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:11:49,791 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:11:49,793 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:11:49,795 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:11:49,797 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:11:49,800 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:11:49,802 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:11:49,804 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:11:49,806 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:11:49,809 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:11:49,811 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:11:49,813 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:11:49,815 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:11:49,818 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:11:49,820 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:11:49,822 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:11:49,825 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:11:49,827 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:11:49,829 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:11:49,831 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:11:49,834 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:11:49,836 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:11:49,838 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:11:49,840 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:11:49,843 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:11:49,845 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:11:49,847 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:11:49,849 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:11:49,852 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:11:49,854 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:11:49,856 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:11:49,858 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:11:49,861 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:11:49,863 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:11:49,865 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:11:49,867 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:11:49,870 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:11:49,872 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:11:49,874 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:11:49,877 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:11:49,879 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:11:49,881 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:11:49,883 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:11:49,886 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:11:49,888 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:11:49,890 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:11:49,892 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:11:49,895 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:11:49,897 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:11:49,899 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:11:49,901 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:11:49,904 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:11:49,906 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:11:49,908 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:11:49,910 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:11:49,913 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:11:49,915 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:11:49,917 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:11:49,920 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:11:49,922 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:11:49,925 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:11:49,927 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:11:49,929 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:11:49,933 [DEBUG] django.db.backends: (0.003) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE `theme_theme_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:11:50,077 [DEBUG] django.db.backends: (0.133) SELECT `organiser_organiser_translation`.`id`, `organiser_organiser_translation`.`name`, `organiser_organiser_translation`.`specialization`, `organiser_organiser_translation`.`description`, `organiser_organiser_translation`.`representation`, `organiser_organiser_translation`.`address_inf`, `organiser_organiser_translation`.`title`, `organiser_organiser_translation`.`descriptions`, `organiser_organiser_translation`.`keywords`, `organiser_organiser_translation`.`language_code`, `organiser_organiser_translation`.`master_id`, `organiser_organiser`.`id`, `organiser_organiser`.`url`, `organiser_organiser`.`country_id`, `organiser_organiser`.`city_id`, `organiser_organiser`.`address`, `organiser_organiser`.`logo`, `organiser_organiser`.`rating`, `organiser_organiser`.`phone`, `organiser_organiser`.`fax`, `organiser_organiser`.`web_page`, `organiser_organiser`.`email`, `organiser_organiser`.`facebook`, `organiser_organiser`.`twitter`, `organiser_organiser`.`linkedin`, `organiser_organiser`.`vk`, `organiser_organiser`.`foundation`, `organiser_organiser`.`events_number`, `organiser_organiser`.`staff_number`, `organiser_organiser`.`created`, `organiser_organiser`.`modified`, `organiser_organiser`.`active` FROM `organiser_organiser_translation` LEFT OUTER JOIN `organiser_organiser` ON (`organiser_organiser_translation`.`master_id` = `organiser_organiser`.`id`) WHERE `organiser_organiser_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:11:50,536 [DEBUG] django.db.backends: (0.008) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:11:50,547 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:11:50,549 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:11:50,551 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:11:50,554 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:11:50,556 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:11:50,558 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:11:50,561 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:11:50,563 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:11:50,565 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:11:50,567 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:11:50,570 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:11:50,572 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:11:50,574 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:11:50,576 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:11:50,579 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:11:50,581 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:11:50,583 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:11:50,586 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:11:50,588 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:11:50,590 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:11:50,592 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:11:50,595 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:11:50,597 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:11:50,599 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:11:50,602 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:11:50,604 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:11:50,606 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:11:50,608 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:11:50,611 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:11:50,613 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:11:50,615 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:11:50,617 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:11:50,620 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:11:50,622 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:11:50,624 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:11:50,626 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:11:50,629 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:11:50,631 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:11:50,633 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:11:50,636 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:11:50,638 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:11:50,640 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:11:50,642 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:11:50,645 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:11:50,647 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:11:50,649 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:11:50,651 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:11:50,654 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:11:50,656 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:11:50,658 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:11:50,660 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:11:50,663 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:11:50,665 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:11:50,667 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:11:50,670 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:11:50,672 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:11:50,674 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:11:50,676 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:11:50,679 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:11:50,681 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:11:50,683 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:11:50,685 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:11:50,688 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:11:50,690 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:11:50,692 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:11:50,694 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:11:50,697 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:11:50,699 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:11:50,701 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:11:50,703 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:11:50,706 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:11:50,708 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:11:50,710 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:11:50,713 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:11:50,715 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:11:50,717 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:11:50,719 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:11:50,722 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:11:50,724 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:11:50,726 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:11:50,729 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:11:50,731 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:11:50,733 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:11:50,735 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:11:50,738 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:11:50,740 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:11:50,742 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:11:50,744 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:11:50,747 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:11:50,749 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:11:50,751 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:11:50,753 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:11:50,756 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:11:50,758 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:11:50,760 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:11:50,762 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:11:50,765 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:11:50,767 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:11:50,769 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:11:50,771 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:11:50,782 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:11:50,784 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:11:50,786 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:11:50,789 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:11:50,791 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:11:50,793 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:11:50,795 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:11:50,798 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:11:50,800 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:11:50,802 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:11:50,805 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:11:50,807 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:11:50,809 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:11:50,811 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:11:50,814 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:11:50,816 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:11:50,818 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:11:50,820 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:11:50,823 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:11:50,825 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:11:50,827 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:11:50,829 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:11:50,831 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:11:50,834 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:11:50,836 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:11:50,838 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:11:50,840 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:11:50,843 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:11:50,845 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:11:50,847 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:11:50,849 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:11:50,852 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:11:50,854 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:11:50,856 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:11:50,859 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:11:50,861 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:11:50,863 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:11:50,865 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:11:50,868 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:11:50,870 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:11:50,872 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:11:50,874 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:11:50,877 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:11:50,879 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:11:50,881 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:11:50,883 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:11:50,886 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:11:50,888 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:11:50,890 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:11:50,892 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:11:50,895 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:11:50,897 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:11:50,899 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:11:50,901 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:11:50,904 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:11:50,906 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:11:50,908 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:11:50,910 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:11:50,913 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:11:50,915 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:11:50,917 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:11:50,919 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:11:50,922 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:11:50,924 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:11:50,926 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:11:50,929 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:11:50,931 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:11:50,933 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:11:50,936 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:11:50,938 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:11:50,940 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:11:50,942 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:11:50,945 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:11:50,947 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:11:50,949 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:11:50,951 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:11:50,954 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:11:50,956 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:11:50,958 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:11:50,960 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:11:50,963 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:11:50,965 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:11:50,967 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:11:50,969 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:11:50,972 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:11:50,974 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:11:50,976 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:11:50,978 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:11:50,981 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:11:50,983 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:11:50,985 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:11:50,987 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:11:50,989 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:11:50,992 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:11:50,994 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:11:50,996 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:11:50,999 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:11:51,001 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:11:51,003 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:11:51,005 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:11:51,008 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:11:51,011 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:11:51,013 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:11:51,015 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:11:51,017 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:11:51,062 [DEBUG] django.db.backends: (0.003) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE `theme_theme_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:11:51,085 [DEBUG] django.db.backends: (0.000) SELECT `place_conference_placeconference_translation`.`id`, `place_conference_placeconference_translation`.`name`, `place_conference_placeconference_translation`.`main_title`, `place_conference_placeconference_translation`.`description`, `place_conference_placeconference_translation`.`adress`, `place_conference_placeconference_translation`.`hall_capacity`, `place_conference_placeconference_translation`.`title`, `place_conference_placeconference_translation`.`descriptions`, `place_conference_placeconference_translation`.`keywords`, `place_conference_placeconference_translation`.`total_year_action`, `place_conference_placeconference_translation`.`language_code`, `place_conference_placeconference_translation`.`master_id`, `place_conference_placeconference`.`id`, `place_conference_placeconference`.`url`, `place_conference_placeconference`.`country_id`, `place_conference_placeconference`.`city_id`, `place_conference_placeconference`.`type`, `place_conference_placeconference`.`address`, `place_conference_placeconference`.`phone`, `place_conference_placeconference`.`fax`, `place_conference_placeconference`.`web_page`, `place_conference_placeconference`.`email`, `place_conference_placeconference`.`foundation_year`, `place_conference_placeconference`.`total_capacity`, `place_conference_placeconference`.`amount_halls`, `place_conference_placeconference`.`exposition_hall`, `place_conference_placeconference`.`exp_hall_area`, `place_conference_placeconference`.`video_link`, `place_conference_placeconference`.`wifi`, `place_conference_placeconference`.`multimedia_equipment`, `place_conference_placeconference`.`conference_call`, `place_conference_placeconference`.`translate_equipment`, `place_conference_placeconference`.`banquet_hall`, `place_conference_placeconference`.`catering`, `place_conference_placeconference`.`hotel`, `place_conference_placeconference`.`created`, `place_conference_placeconference`.`modified`, `place_conference_placeconference`.`views` FROM `place_conference_placeconference_translation` LEFT OUTER JOIN `place_conference_placeconference` ON (`place_conference_placeconference_translation`.`master_id` = `place_conference_placeconference`.`id`) WHERE `place_conference_placeconference_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:11:51,225 [DEBUG] django.db.backends: (0.138) SELECT `organiser_organiser_translation`.`id`, `organiser_organiser_translation`.`name`, `organiser_organiser_translation`.`specialization`, `organiser_organiser_translation`.`description`, `organiser_organiser_translation`.`representation`, `organiser_organiser_translation`.`address_inf`, `organiser_organiser_translation`.`title`, `organiser_organiser_translation`.`descriptions`, `organiser_organiser_translation`.`keywords`, `organiser_organiser_translation`.`language_code`, `organiser_organiser_translation`.`master_id`, `organiser_organiser`.`id`, `organiser_organiser`.`url`, `organiser_organiser`.`country_id`, `organiser_organiser`.`city_id`, `organiser_organiser`.`address`, `organiser_organiser`.`logo`, `organiser_organiser`.`rating`, `organiser_organiser`.`phone`, `organiser_organiser`.`fax`, `organiser_organiser`.`web_page`, `organiser_organiser`.`email`, `organiser_organiser`.`facebook`, `organiser_organiser`.`twitter`, `organiser_organiser`.`linkedin`, `organiser_organiser`.`vk`, `organiser_organiser`.`foundation`, `organiser_organiser`.`events_number`, `organiser_organiser`.`staff_number`, `organiser_organiser`.`created`, `organiser_organiser`.`modified`, `organiser_organiser`.`active` FROM `organiser_organiser_translation` LEFT OUTER JOIN `organiser_organiser` ON (`organiser_organiser_translation`.`master_id` = `organiser_organiser`.`id`) WHERE `organiser_organiser_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:11:51,610 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:11:51,621 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:11:51,623 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:11:51,625 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:11:51,627 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:11:51,630 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:11:51,632 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:11:51,634 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:11:51,637 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:11:51,639 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:11:51,641 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:11:51,643 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:11:51,646 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:11:51,648 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:11:51,650 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:11:51,652 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:11:51,655 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:11:51,657 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:11:51,659 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:11:51,661 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:11:51,664 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:11:51,666 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:11:51,668 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:11:51,670 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:11:51,673 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:11:51,675 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:11:51,677 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:11:51,679 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:11:51,682 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:11:51,684 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:11:51,686 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:11:51,688 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:11:51,691 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:11:51,693 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:11:51,695 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:11:51,697 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:11:51,700 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:11:51,702 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:11:51,704 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:11:51,706 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:11:51,709 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:11:51,711 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:11:51,713 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:11:51,715 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:11:51,718 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:11:51,720 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:11:51,722 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:11:51,724 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:11:51,727 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:11:51,729 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:11:51,731 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:11:51,733 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:11:51,736 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:11:51,738 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:11:51,740 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:11:51,742 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:11:51,745 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:11:51,747 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:11:51,749 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:11:51,751 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:11:51,754 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:11:51,756 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:11:51,758 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:11:51,760 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:11:51,763 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:11:51,765 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:11:51,767 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:11:51,769 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:11:51,772 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:11:51,774 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:11:51,776 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:11:51,779 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:11:51,781 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:11:51,783 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:11:51,785 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:11:51,788 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:11:51,790 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:11:51,792 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:11:51,794 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:11:51,796 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:11:51,799 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:11:51,801 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:11:51,803 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:11:51,806 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:11:51,808 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:11:51,810 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:11:51,812 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:11:51,815 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:11:51,817 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:11:51,819 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:11:51,821 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:11:51,824 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:11:51,826 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:11:51,828 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:11:51,830 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:11:51,833 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:11:51,835 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:11:51,837 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:11:51,839 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:11:51,842 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:11:51,844 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:11:51,854 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:11:51,857 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:11:51,859 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:11:51,861 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:11:51,863 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:11:51,866 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:11:51,868 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:11:51,870 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:11:51,872 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:11:51,875 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:11:51,877 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:11:51,879 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:11:51,882 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:11:51,884 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:11:51,887 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:11:51,889 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:11:51,891 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:11:51,894 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:11:51,896 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:11:51,898 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:11:51,900 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:11:51,903 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:11:51,905 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:11:51,908 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:11:51,910 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:11:51,912 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:11:51,915 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:11:51,917 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:11:51,919 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:11:51,921 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:11:51,924 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:11:51,926 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:11:51,928 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:11:51,930 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:11:51,933 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:11:51,935 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:11:51,937 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:11:51,939 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:11:51,942 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:11:51,944 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:11:51,946 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:11:51,948 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:11:51,951 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:11:51,953 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:11:51,955 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:11:51,957 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:11:51,960 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:11:51,962 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:11:51,964 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:11:51,966 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:11:51,968 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:11:51,971 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:11:51,973 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:11:51,975 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:11:51,977 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:11:51,980 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:11:51,982 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:11:51,984 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:11:51,986 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:11:51,989 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:11:51,991 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:11:51,993 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:11:51,995 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:11:51,998 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:11:52,000 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:11:52,002 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:11:52,004 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:11:52,007 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:11:52,009 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:11:52,011 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:11:52,014 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:11:52,016 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:11:52,018 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:11:52,020 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:11:52,022 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:11:52,025 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:11:52,027 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:11:52,029 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:11:52,031 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:11:52,034 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:11:52,036 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:11:52,038 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:11:52,040 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:11:52,043 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:11:52,045 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:11:52,047 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:11:52,049 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:11:52,052 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:11:52,054 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:11:52,056 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:11:52,058 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:11:52,061 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:11:52,063 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:11:52,065 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:11:52,067 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:11:52,070 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:11:52,072 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:11:52,074 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:11:52,076 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:11:52,079 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:11:52,081 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:11:52,084 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:11:52,086 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:11:52,088 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:11:52,090 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:11:52,095 [DEBUG] django.db.backends: (0.003) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE `theme_theme_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:11:52,121 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:11:52,132 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:11:52,134 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:11:52,136 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:11:52,140 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:11:52,144 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:11:52,147 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:11:52,149 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:11:52,151 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:11:52,153 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:11:52,156 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:11:52,158 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:11:52,160 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:11:52,163 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:11:52,165 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:11:52,167 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:11:52,169 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:11:52,172 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:11:52,174 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:11:52,176 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:11:52,179 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:11:52,181 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:11:52,183 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:11:52,185 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:11:52,188 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:11:52,190 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:11:52,192 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:11:52,195 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:11:52,197 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:11:52,199 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:11:52,201 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:11:52,204 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:11:52,206 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:11:52,208 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:11:52,211 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:11:52,213 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:11:52,215 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:11:52,218 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:11:52,220 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:11:52,222 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:11:52,224 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:11:52,227 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:11:52,229 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:11:52,231 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:11:52,234 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:11:52,236 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:11:52,238 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:11:52,240 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:11:52,243 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:11:52,245 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:11:52,247 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:11:52,250 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:11:52,254 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:11:52,258 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:11:52,262 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:11:52,266 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:11:52,270 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:11:52,273 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:11:52,275 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:11:52,278 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:11:52,280 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:11:52,282 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:11:52,285 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:11:52,287 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:11:52,289 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:11:52,291 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:11:52,294 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:11:52,296 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:11:52,298 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:11:52,300 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:11:52,303 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:11:52,305 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:11:52,307 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:11:52,310 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:11:52,312 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:11:52,314 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:11:52,316 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:11:52,319 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:11:52,321 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:11:52,323 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:11:52,325 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:11:52,328 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:11:52,330 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:11:52,332 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:11:52,334 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:11:52,337 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:11:52,339 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:11:52,341 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:11:52,343 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:11:52,346 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:11:52,348 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:11:52,350 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:11:52,352 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:11:52,355 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:11:52,357 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:11:52,359 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:11:52,362 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:11:52,364 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:11:52,366 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:11:52,368 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:11:52,371 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:11:52,381 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:11:52,383 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:11:52,386 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:11:52,388 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:11:52,390 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:11:52,392 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:11:52,395 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:11:52,397 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:11:52,399 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:11:52,402 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:11:52,404 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:11:52,406 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:11:52,409 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:11:52,411 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:11:52,413 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:11:52,415 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:11:52,418 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:11:52,420 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:11:52,422 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:11:52,424 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:11:52,427 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:11:52,429 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:11:52,431 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:11:52,433 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:11:52,436 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:11:52,438 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:11:52,440 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:11:52,442 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:11:52,445 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:11:52,447 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:11:52,449 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:11:52,451 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:11:52,454 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:11:52,456 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:11:52,458 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:11:52,460 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:11:52,463 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:11:52,465 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:11:52,467 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:11:52,469 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:11:52,472 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:11:52,474 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:11:52,476 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:11:52,478 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:11:52,481 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:11:52,483 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:11:52,485 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:11:52,488 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:11:52,490 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:11:52,492 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:11:52,494 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:11:52,497 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:11:52,499 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:11:52,501 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:11:52,503 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:11:52,505 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:11:52,508 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:11:52,510 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:11:52,512 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:11:52,514 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:11:52,517 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:11:52,519 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:11:52,521 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:11:52,524 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:11:52,526 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:11:52,528 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:11:52,530 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:11:52,532 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:11:52,535 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:11:52,537 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:11:52,539 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:11:52,541 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:11:52,544 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:11:52,546 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:11:52,548 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:11:52,550 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:11:52,553 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:11:52,555 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:11:52,557 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:11:52,560 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:11:52,562 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:11:52,564 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:11:52,566 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:11:52,569 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:11:52,571 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:11:52,573 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:11:52,576 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:11:52,578 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:11:52,580 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:11:52,582 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:11:52,585 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:11:52,587 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:11:52,589 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:11:52,591 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:11:52,594 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:11:52,596 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:11:52,598 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:11:52,600 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:11:52,603 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:11:52,605 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:11:52,608 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:11:52,610 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:11:52,612 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:11:52,614 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:11:52,617 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:11:52,621 [DEBUG] django.db.backends: (0.003) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE `theme_theme_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:11:52,691 [DEBUG] django.db.backends: (0.060) SELECT `place_exposition_placeexposition_translation`.`id`, `place_exposition_placeexposition_translation`.`name`, `place_exposition_placeexposition_translation`.`main_title`, `place_exposition_placeexposition_translation`.`description`, `place_exposition_placeexposition_translation`.`adress`, `place_exposition_placeexposition_translation`.`title`, `place_exposition_placeexposition_translation`.`descriptions`, `place_exposition_placeexposition_translation`.`keywords`, `place_exposition_placeexposition_translation`.`total_year_action`, `place_exposition_placeexposition_translation`.`language_code`, `place_exposition_placeexposition_translation`.`master_id`, `place_exposition_placeexposition`.`id`, `place_exposition_placeexposition`.`url`, `place_exposition_placeexposition`.`country_id`, `place_exposition_placeexposition`.`city_id`, `place_exposition_placeexposition`.`photogallery_id`, `place_exposition_placeexposition`.`type`, `place_exposition_placeexposition`.`address`, `place_exposition_placeexposition`.`phone`, `place_exposition_placeexposition`.`fax`, `place_exposition_placeexposition`.`web_page`, `place_exposition_placeexposition`.`email`, `place_exposition_placeexposition`.`foundation_year`, `place_exposition_placeexposition`.`event_in_year`, `place_exposition_placeexposition`.`total_area`, `place_exposition_placeexposition`.`closed_area`, `place_exposition_placeexposition`.`open_area`, `place_exposition_placeexposition`.`total_pavilions`, `place_exposition_placeexposition`.`total_halls`, `place_exposition_placeexposition`.`virtual_tour`, `place_exposition_placeexposition`.`wifi`, `place_exposition_placeexposition`.`bank`, `place_exposition_placeexposition`.`children_room`, `place_exposition_placeexposition`.`disabled_service`, `place_exposition_placeexposition`.`conference_centre`, `place_exposition_placeexposition`.`business_centre`, `place_exposition_placeexposition`.`online_registration`, `place_exposition_placeexposition`.`cafe`, `place_exposition_placeexposition`.`terminals`, `place_exposition_placeexposition`.`parking`, `place_exposition_placeexposition`.`press_centre`, `place_exposition_placeexposition`.`mobile_application`, `place_exposition_placeexposition`.`logo`, `place_exposition_placeexposition`.`rating`, `place_exposition_placeexposition`.`partner`, `place_exposition_placeexposition`.`created`, `place_exposition_placeexposition`.`modified`, `place_exposition_placeexposition`.`views`, `place_exposition_placeexposition`.`is_published` FROM `place_exposition_placeexposition_translation` LEFT OUTER JOIN `place_exposition_placeexposition` ON (`place_exposition_placeexposition_translation`.`master_id` = `place_exposition_placeexposition`.`id`) WHERE `place_exposition_placeexposition_translation`.`language_code` = 'ru' ORDER BY `place_exposition_placeexposition`.`rating` DESC, `place_exposition_placeexposition_translation`.`master_id` ASC; args=('ru',) +2015-07-28 11:11:52,864 [DEBUG] django.db.backends: (0.000) SELECT `place_conference_placeconference_translation`.`id`, `place_conference_placeconference_translation`.`name`, `place_conference_placeconference_translation`.`main_title`, `place_conference_placeconference_translation`.`description`, `place_conference_placeconference_translation`.`adress`, `place_conference_placeconference_translation`.`hall_capacity`, `place_conference_placeconference_translation`.`title`, `place_conference_placeconference_translation`.`descriptions`, `place_conference_placeconference_translation`.`keywords`, `place_conference_placeconference_translation`.`total_year_action`, `place_conference_placeconference_translation`.`language_code`, `place_conference_placeconference_translation`.`master_id`, `place_conference_placeconference`.`id`, `place_conference_placeconference`.`url`, `place_conference_placeconference`.`country_id`, `place_conference_placeconference`.`city_id`, `place_conference_placeconference`.`type`, `place_conference_placeconference`.`address`, `place_conference_placeconference`.`phone`, `place_conference_placeconference`.`fax`, `place_conference_placeconference`.`web_page`, `place_conference_placeconference`.`email`, `place_conference_placeconference`.`foundation_year`, `place_conference_placeconference`.`total_capacity`, `place_conference_placeconference`.`amount_halls`, `place_conference_placeconference`.`exposition_hall`, `place_conference_placeconference`.`exp_hall_area`, `place_conference_placeconference`.`video_link`, `place_conference_placeconference`.`wifi`, `place_conference_placeconference`.`multimedia_equipment`, `place_conference_placeconference`.`conference_call`, `place_conference_placeconference`.`translate_equipment`, `place_conference_placeconference`.`banquet_hall`, `place_conference_placeconference`.`catering`, `place_conference_placeconference`.`hotel`, `place_conference_placeconference`.`created`, `place_conference_placeconference`.`modified`, `place_conference_placeconference`.`views` FROM `place_conference_placeconference_translation` LEFT OUTER JOIN `place_conference_placeconference` ON (`place_conference_placeconference_translation`.`master_id` = `place_conference_placeconference`.`id`) WHERE `place_conference_placeconference_translation`.`language_code` = 'ru' ORDER BY `place_conference_placeconference_translation`.`name` ASC; args=('ru',) +2015-07-28 11:11:52,877 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:11:52,888 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:11:52,890 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:11:52,892 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:11:52,895 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:11:52,897 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:11:52,899 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:11:52,902 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:11:52,904 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:11:52,906 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:11:52,909 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:11:52,911 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:11:52,913 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:11:52,915 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:11:52,918 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:11:52,920 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:11:52,922 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:11:52,924 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:11:52,927 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:11:52,929 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:11:52,931 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:11:52,933 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:11:52,936 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:11:52,938 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:11:52,940 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:11:52,942 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:11:52,945 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:11:52,947 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:11:52,949 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:11:52,951 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:11:52,954 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:11:52,956 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:11:52,958 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:11:52,960 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:11:52,963 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:11:52,965 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:11:52,967 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:11:52,969 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:11:52,972 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:11:52,974 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:11:52,976 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:11:52,979 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:11:52,981 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:11:52,983 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:11:52,985 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:11:52,988 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:11:52,990 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:11:52,992 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:11:52,995 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:11:52,997 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:11:52,999 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:11:53,002 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:11:53,004 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:11:53,006 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:11:53,009 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:11:53,011 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:11:53,013 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:11:53,016 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:11:53,018 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:11:53,020 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:11:53,023 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:11:53,025 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:11:53,027 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:11:53,030 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:11:53,032 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:11:53,034 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:11:53,036 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:11:53,039 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:11:53,041 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:11:53,043 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:11:53,046 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:11:53,048 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:11:53,050 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:11:53,053 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:11:53,055 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:11:53,057 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:11:53,059 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:11:53,062 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:11:53,064 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:11:53,066 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:11:53,068 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:11:53,071 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:11:53,073 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:11:53,075 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:11:53,077 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:11:53,080 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:11:53,082 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:11:53,084 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:11:53,086 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:11:53,089 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:11:53,091 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:11:53,093 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:11:53,095 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:11:53,098 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:11:53,100 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:11:53,102 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:11:53,104 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:11:53,107 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:11:53,109 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:11:53,111 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:11:53,113 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:11:53,124 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:11:53,126 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:11:53,129 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:11:53,131 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:11:53,133 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:11:53,135 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:11:53,138 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:11:53,140 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:11:53,142 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:11:53,145 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:11:53,147 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:11:53,149 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:11:53,152 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:11:53,154 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:11:53,156 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:11:53,158 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:11:53,161 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:11:53,163 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:11:53,165 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:11:53,168 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:11:53,170 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:11:53,172 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:11:53,175 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:11:53,177 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:11:53,179 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:11:53,182 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:11:53,184 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:11:53,186 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:11:53,189 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:11:53,191 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:11:53,193 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:11:53,195 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:11:53,198 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:11:53,200 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:11:53,202 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:11:53,204 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:11:53,207 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:11:53,209 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:11:53,211 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:11:53,214 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:11:53,216 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:11:53,218 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:11:53,220 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:11:53,223 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:11:53,225 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:11:53,227 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:11:53,229 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:11:53,232 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:11:53,234 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:11:53,236 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:11:53,238 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:11:53,241 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:11:53,243 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:11:53,245 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:11:53,247 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:11:53,250 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:11:53,252 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:11:53,254 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:11:53,256 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:11:53,258 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:11:53,261 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:11:53,263 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:11:53,265 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:11:53,267 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:11:53,270 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:11:53,272 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:11:53,274 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:11:53,276 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:11:53,279 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:11:53,281 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:11:53,283 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:11:53,285 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:11:53,288 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:11:53,290 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:11:53,292 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:11:53,295 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:11:53,297 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:11:53,299 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:11:53,301 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:11:53,304 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:11:53,306 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:11:53,308 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:11:53,310 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:11:53,313 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:11:53,315 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:11:53,317 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:11:53,319 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:11:53,322 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:11:53,324 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:11:53,326 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:11:53,328 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:11:53,330 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:11:53,333 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:11:53,335 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:11:53,337 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:11:53,339 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:11:53,342 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:11:53,344 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:11:53,346 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:11:53,348 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:11:53,351 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:11:53,353 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:11:53,356 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:11:53,358 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:11:53,360 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:11:53,370 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:11:53,389 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:11:53,391 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:11:53,393 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:11:53,395 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:11:53,397 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:11:53,400 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:11:53,402 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:11:53,404 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:11:53,407 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:11:53,409 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:11:53,411 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:11:53,413 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:11:53,416 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:11:53,418 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:11:53,420 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:11:53,422 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:11:53,425 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:11:53,427 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:11:53,429 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:11:53,431 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:11:53,434 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:11:53,436 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:11:53,438 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:11:53,440 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:11:53,442 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:11:53,445 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:11:53,447 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:11:53,449 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:11:53,451 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:11:53,454 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:11:53,456 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:11:53,458 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:11:53,460 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:11:53,463 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:11:53,465 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:11:53,467 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:11:53,469 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:11:53,472 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:11:53,474 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:11:53,476 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:11:53,478 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:11:53,480 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:11:53,483 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:11:53,485 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:11:53,487 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:11:53,489 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:11:53,492 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:11:53,494 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:11:53,496 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:11:53,498 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:11:53,501 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:11:53,503 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:11:53,505 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:11:53,507 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:11:53,510 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:11:53,512 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:11:53,514 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:11:53,516 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:11:53,519 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:11:53,521 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:11:53,523 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:11:53,525 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:11:53,528 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:11:53,530 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:11:53,532 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:11:53,534 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:11:53,536 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:11:53,539 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:11:53,541 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:11:53,543 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:11:53,545 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:11:53,548 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:11:53,550 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:11:53,552 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:11:53,554 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:11:53,557 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:11:53,559 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:11:53,561 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:11:53,563 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:11:53,566 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:11:53,568 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:11:53,570 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:11:53,572 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:11:53,575 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:11:53,577 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:11:53,579 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:11:53,581 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:11:53,584 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:11:53,586 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:11:53,588 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:11:53,590 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:11:53,592 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:11:53,595 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:11:53,597 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:11:53,599 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:11:53,601 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:11:53,604 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:11:53,606 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:11:53,608 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:11:53,610 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:11:53,613 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:11:53,615 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:11:53,617 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:11:53,619 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:11:53,622 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:11:53,624 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:11:53,626 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:11:53,628 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:11:53,631 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:11:53,633 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:11:53,635 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:11:53,637 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:11:53,640 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:11:53,642 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:11:53,644 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:11:53,646 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:11:53,653 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:11:53,655 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:11:53,658 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:11:53,660 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:11:53,662 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:11:53,664 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:11:53,667 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:11:53,669 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:11:53,671 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:11:53,673 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:11:53,676 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:11:53,678 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:11:53,680 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:11:53,682 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:11:53,685 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:11:53,687 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:11:53,689 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:11:53,691 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:11:53,694 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:11:53,696 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:11:53,698 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:11:53,700 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:11:53,703 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:11:53,705 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:11:53,707 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:11:53,709 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:11:53,712 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:11:53,714 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:11:53,716 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:11:53,718 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:11:53,721 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:11:53,723 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:11:53,725 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:11:53,727 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:11:53,730 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:11:53,732 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:11:53,734 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:11:53,736 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:11:53,740 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:11:53,743 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:11:53,745 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:11:53,747 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:11:53,749 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:11:53,752 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:11:53,754 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:11:53,756 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:11:53,758 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:11:53,761 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:11:53,763 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:11:53,765 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:11:53,767 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:11:53,770 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:11:53,772 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:11:53,774 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:11:53,776 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:11:53,779 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:11:53,781 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:11:53,784 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:11:53,786 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:11:53,788 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:11:53,790 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:11:53,793 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:11:53,795 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:11:53,797 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:11:53,799 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:11:53,802 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:11:53,804 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:11:53,806 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:11:53,809 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:11:53,811 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:11:53,813 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:11:53,816 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:11:53,818 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:11:53,820 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:11:53,822 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:11:53,825 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:11:53,827 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:11:53,829 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:11:53,831 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:11:53,834 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:11:53,836 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:11:53,838 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:11:53,840 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:11:53,843 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:11:53,845 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:11:53,847 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:11:53,849 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:11:53,852 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:11:53,854 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:11:53,882 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:11:53,892 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:11:53,894 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:11:53,897 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:11:53,899 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:11:53,901 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:11:53,904 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:11:53,907 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:11:53,909 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:11:53,912 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:11:53,914 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:11:53,916 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:11:53,919 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:11:53,921 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:11:53,924 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:11:53,926 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:11:53,929 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:11:53,931 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:11:53,934 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:11:53,936 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:11:53,939 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:11:53,941 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:11:53,943 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:11:53,946 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:11:53,948 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:11:53,950 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:11:53,953 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:11:53,955 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:11:53,958 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:11:53,960 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:11:53,962 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:11:53,965 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:11:53,967 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:11:53,969 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:11:53,972 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:11:53,974 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:11:53,976 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:11:53,978 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:11:53,981 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:11:53,983 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:11:53,985 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:11:53,988 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:11:53,990 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:11:53,992 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:11:53,994 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:11:53,997 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:11:53,999 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:11:54,001 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:11:54,004 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:11:54,006 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:11:54,008 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:11:54,010 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:11:54,013 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:11:54,015 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:11:54,017 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:11:54,020 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:11:54,022 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:11:54,024 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:11:54,027 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:11:54,029 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:11:54,031 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:11:54,033 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:11:54,036 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:11:54,038 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:11:54,040 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:11:54,043 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:11:54,045 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:11:54,047 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:11:54,049 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:11:54,052 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:11:54,054 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:11:54,056 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:11:54,058 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:11:54,061 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:11:54,063 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:11:54,065 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:11:54,067 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:11:54,070 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:11:54,072 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:11:54,074 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:11:54,076 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:11:54,079 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:11:54,081 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:11:54,083 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:11:54,086 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:11:54,088 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:11:54,091 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:11:54,093 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:11:54,096 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:11:54,098 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:11:54,100 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:11:54,103 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:11:54,105 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:11:54,107 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:11:54,109 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:11:54,112 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:11:54,114 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:11:54,117 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:11:54,119 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:11:54,122 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:11:54,124 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:11:54,135 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:11:54,138 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:11:54,140 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:11:54,142 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:11:54,145 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:11:54,148 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:11:54,150 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:11:54,153 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:11:54,155 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:11:54,158 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:11:54,160 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:11:54,162 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:11:54,165 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:11:54,167 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:11:54,169 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:11:54,172 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:11:54,174 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:11:54,176 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:11:54,179 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:11:54,181 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:11:54,183 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:11:54,185 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:11:54,188 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:11:54,190 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:11:54,192 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:11:54,194 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:11:54,197 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:11:54,199 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:11:54,201 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:11:54,203 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:11:54,206 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:11:54,208 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:11:54,210 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:11:54,213 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:11:54,215 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:11:54,217 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:11:54,219 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:11:54,222 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:11:54,224 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:11:54,226 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:11:54,229 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:11:54,231 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:11:54,233 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:11:54,235 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:11:54,238 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:11:54,240 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:11:54,242 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:11:54,245 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:11:54,247 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:11:54,249 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:11:54,252 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:11:54,254 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:11:54,256 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:11:54,259 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:11:54,261 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:11:54,263 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:11:54,265 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:11:54,268 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:11:54,270 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:11:54,272 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:11:54,274 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:11:54,277 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:11:54,279 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:11:54,281 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:11:54,284 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:11:54,286 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:11:54,288 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:11:54,290 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:11:54,293 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:11:54,295 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:11:54,297 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:11:54,300 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:11:54,302 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:11:54,304 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:11:54,307 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:11:54,309 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:11:54,311 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:11:54,313 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:11:54,316 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:11:54,318 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:11:54,320 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:11:54,322 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:11:54,325 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:11:54,327 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:11:54,329 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:11:54,332 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:11:54,334 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:11:54,336 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:11:54,338 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:11:54,341 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:11:54,343 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:11:54,346 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:11:54,348 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:11:54,350 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:11:54,352 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:11:54,355 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:11:54,357 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:11:54,359 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:11:54,361 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:11:54,364 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:11:54,366 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:11:54,369 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:11:54,371 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:11:54,373 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:11:54,375 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:11:54,390 [DEBUG] django.db.backends: (0.008) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:11:54,409 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:11:54,411 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:11:54,413 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:11:54,416 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:11:54,418 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:11:54,423 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:11:54,426 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:11:54,428 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:11:54,430 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:11:54,432 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:11:54,435 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:11:54,437 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:11:54,439 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:11:54,441 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:11:54,444 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:11:54,446 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:11:54,448 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:11:54,450 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:11:54,453 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:11:54,455 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:11:54,457 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:11:54,459 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:11:54,462 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:11:54,464 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:11:54,466 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:11:54,469 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:11:54,471 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:11:54,473 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:11:54,475 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:11:54,478 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:11:54,480 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:11:54,482 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:11:54,484 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:11:54,487 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:11:54,489 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:11:54,491 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:11:54,493 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:11:54,496 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:11:54,498 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:11:54,500 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:11:54,503 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:11:54,505 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:11:54,507 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:11:54,509 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:11:54,512 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:11:54,514 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:11:54,516 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:11:54,518 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:11:54,521 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:11:54,523 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:11:54,525 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:11:54,527 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:11:54,530 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:11:54,532 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:11:54,534 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:11:54,536 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:11:54,539 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:11:54,541 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:11:54,543 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:11:54,546 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:11:54,548 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:11:54,550 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:11:54,552 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:11:54,555 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:11:54,557 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:11:54,559 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:11:54,561 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:11:54,564 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:11:54,566 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:11:54,568 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:11:54,570 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:11:54,573 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:11:54,575 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:11:54,577 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:11:54,579 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:11:54,582 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:11:54,584 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:11:54,586 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:11:54,589 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:11:54,591 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:11:54,593 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:11:54,595 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:11:54,598 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:11:54,600 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:11:54,603 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:11:54,605 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:11:54,607 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:11:54,609 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:11:54,612 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:11:54,614 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:11:54,616 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:11:54,618 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:11:54,621 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:11:54,623 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:11:54,625 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:11:54,628 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:11:54,630 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:11:54,632 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:11:54,634 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:11:54,637 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:11:54,639 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:11:54,641 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:11:54,644 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:11:54,646 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:11:54,648 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:11:54,650 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:11:54,653 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:11:54,655 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:11:54,657 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:11:54,659 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:11:54,662 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:11:54,664 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:11:54,666 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:11:54,668 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:11:54,671 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:11:54,673 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:11:54,676 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:11:54,678 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:11:54,680 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:11:54,682 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:11:54,685 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:11:54,687 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:11:54,689 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:11:54,691 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:11:54,694 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:11:54,696 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:11:54,698 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:11:54,700 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:11:54,703 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:11:54,706 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:11:54,708 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:11:54,710 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:11:54,713 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:11:54,715 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:11:54,717 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:11:54,719 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:11:54,722 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:11:54,724 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:11:54,726 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:11:54,729 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:11:54,731 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:11:54,733 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:11:54,736 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:11:54,738 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:11:54,740 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:11:54,742 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:11:54,745 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:11:54,747 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:11:54,749 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:11:54,751 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:11:54,754 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:11:54,756 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:11:54,758 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:11:54,760 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:11:54,763 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:11:54,765 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:11:54,767 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:11:54,770 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:11:54,772 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:11:54,774 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:11:54,776 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:11:54,779 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:11:54,781 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:11:54,783 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:11:54,786 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:11:54,788 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:11:54,790 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:11:54,792 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:11:54,795 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:11:54,797 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:11:54,799 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:11:54,801 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:11:54,804 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:11:54,806 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:11:54,808 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:11:54,810 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:11:54,813 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:11:54,815 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:11:54,817 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:11:54,820 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:11:54,822 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:11:54,824 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:11:54,826 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:11:54,829 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:11:54,831 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:11:54,833 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:11:54,835 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:11:54,838 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:11:54,840 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:11:54,842 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:11:54,844 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:11:54,847 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:11:54,849 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:11:54,851 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:11:54,854 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:11:54,856 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:11:54,858 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:11:54,861 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:11:54,863 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:11:54,865 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:11:54,868 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:11:54,870 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:11:54,872 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:11:54,875 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:11:54,877 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:11:55,202 [DEBUG] django.db.backends: (0.000) SELECT `accounts_user`.`id`, `accounts_user`.`password`, `accounts_user`.`last_login`, `accounts_user`.`is_superuser`, `accounts_user`.`email`, `accounts_user`.`username`, `accounts_user`.`first_name`, `accounts_user`.`last_name`, `accounts_user`.`rating`, `accounts_user`.`url`, `accounts_user`.`is_active`, `accounts_user`.`is_staff`, `accounts_user`.`is_admin`, `accounts_user`.`date_joined`, `accounts_user`.`date_registered`, `accounts_user`.`date_modified`, `accounts_user`.`organiser_id`, `accounts_user`.`translator_id`, `accounts_user`.`company_id`, `accounts_user`.`position` FROM `accounts_user` WHERE `accounts_user`.`id` = 58304 ; args=(58304,) +2015-07-28 11:11:55,206 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `django_messages_message` WHERE (`django_messages_message`.`recipient_id` = 58304 AND `django_messages_message`.`read_at` IS NULL AND `django_messages_message`.`recipient_deleted_at` IS NULL); args=(58304,) +2015-07-28 11:11:55,212 [DEBUG] django.db.backends: (0.001) SELECT `article_article_translation`.`id`, `article_article_translation`.`main_title`, `article_article_translation`.`preview`, `article_article_translation`.`description`, `article_article_translation`.`title`, `article_article_translation`.`descriptions`, `article_article_translation`.`keywords`, `article_article_translation`.`language_code`, `article_article_translation`.`master_id`, `article_article`.`id`, `article_article`.`slug`, `article_article`.`old_id`, `article_article`.`logo`, `article_article`.`author_id`, `article_article`.`exposition_id`, `article_article`.`conference_id`, `article_article`.`type`, `article_article`.`allow_comments`, `article_article`.`publish_date`, `article_article`.`expiry_date`, `article_article`.`in_sitemap`, `article_article`.`main_page`, `article_article`.`main_page_time`, `article_article`.`gen_description`, `article_article`.`created`, `article_article`.`modified` FROM `article_article_translation` LEFT OUTER JOIN `article_article` ON (`article_article_translation`.`master_id` = `article_article`.`id`) WHERE (`article_article`.`type` = 1 AND `article_article`.`publish_date` IS NOT NULL AND `article_article_translation`.`language_code` = 'ru' ) ORDER BY `article_article`.`main_page` DESC, `article_article`.`publish_date` DESC LIMIT 3; args=(1, 'ru') +2015-07-28 11:11:55,218 [DEBUG] django.db.backends: (0.001) SELECT `article_article_translation`.`id`, `article_article_translation`.`main_title`, `article_article_translation`.`preview`, `article_article_translation`.`description`, `article_article_translation`.`title`, `article_article_translation`.`descriptions`, `article_article_translation`.`keywords`, `article_article_translation`.`language_code`, `article_article_translation`.`master_id`, `article_article`.`id`, `article_article`.`slug`, `article_article`.`old_id`, `article_article`.`logo`, `article_article`.`author_id`, `article_article`.`exposition_id`, `article_article`.`conference_id`, `article_article`.`type`, `article_article`.`allow_comments`, `article_article`.`publish_date`, `article_article`.`expiry_date`, `article_article`.`in_sitemap`, `article_article`.`main_page`, `article_article`.`main_page_time`, `article_article`.`gen_description`, `article_article`.`created`, `article_article`.`modified` FROM `article_article_translation` LEFT OUTER JOIN `article_article` ON (`article_article_translation`.`master_id` = `article_article`.`id`) WHERE (`article_article`.`type` = 2 AND `article_article`.`publish_date` IS NOT NULL AND `article_article_translation`.`language_code` = 'ru' ) ORDER BY `article_article`.`main_page` DESC, `article_article`.`publish_date` DESC LIMIT 3; args=(2, 'ru') +2015-07-28 11:11:55,252 [DEBUG] django.db.backends: (0.003) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE `theme_theme_translation`.`language_code` = 'ru' ORDER BY `theme_theme_translation`.`name` ASC; args=('ru',) +2015-07-28 11:11:55,319 [DEBUG] django.db.backends: (0.002) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment`, `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code`, `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id`, `city_city`.`id`, `city_city`.`services`, `city_city`.`url`, `city_city`.`old_url`, `city_city`.`inflect`, `city_city`.`country_id`, `city_city`.`code_IATA_id`, `city_city`.`population`, `city_city`.`phone_code`, `city_city`.`created`, `city_city`.`modified`, `city_city_translation`.`id`, `city_city_translation`.`name`, `city_city_translation`.`region`, `city_city_translation`.`transport`, `city_city_translation`.`description`, `city_city_translation`.`famous_places`, `city_city_translation`.`shoping`, `city_city_translation`.`title`, `city_city_translation`.`descriptions`, `city_city_translation`.`keywords`, `city_city_translation`.`language_code`, `city_city_translation`.`master_id`, `place_exposition_placeexposition`.`id`, `place_exposition_placeexposition`.`url`, `place_exposition_placeexposition`.`country_id`, `place_exposition_placeexposition`.`city_id`, `place_exposition_placeexposition`.`photogallery_id`, `place_exposition_placeexposition`.`type`, `place_exposition_placeexposition`.`address`, `place_exposition_placeexposition`.`phone`, `place_exposition_placeexposition`.`fax`, `place_exposition_placeexposition`.`web_page`, `place_exposition_placeexposition`.`email`, `place_exposition_placeexposition`.`foundation_year`, `place_exposition_placeexposition`.`event_in_year`, `place_exposition_placeexposition`.`total_area`, `place_exposition_placeexposition`.`closed_area`, `place_exposition_placeexposition`.`open_area`, `place_exposition_placeexposition`.`total_pavilions`, `place_exposition_placeexposition`.`total_halls`, `place_exposition_placeexposition`.`virtual_tour`, `place_exposition_placeexposition`.`wifi`, `place_exposition_placeexposition`.`bank`, `place_exposition_placeexposition`.`children_room`, `place_exposition_placeexposition`.`disabled_service`, `place_exposition_placeexposition`.`conference_centre`, `place_exposition_placeexposition`.`business_centre`, `place_exposition_placeexposition`.`online_registration`, `place_exposition_placeexposition`.`cafe`, `place_exposition_placeexposition`.`terminals`, `place_exposition_placeexposition`.`parking`, `place_exposition_placeexposition`.`press_centre`, `place_exposition_placeexposition`.`mobile_application`, `place_exposition_placeexposition`.`logo`, `place_exposition_placeexposition`.`rating`, `place_exposition_placeexposition`.`partner`, `place_exposition_placeexposition`.`created`, `place_exposition_placeexposition`.`modified`, `place_exposition_placeexposition`.`views`, `place_exposition_placeexposition`.`is_published`, `place_exposition_placeexposition_translation`.`id`, `place_exposition_placeexposition_translation`.`name`, `place_exposition_placeexposition_translation`.`main_title`, `place_exposition_placeexposition_translation`.`description`, `place_exposition_placeexposition_translation`.`adress`, `place_exposition_placeexposition_translation`.`title`, `place_exposition_placeexposition_translation`.`descriptions`, `place_exposition_placeexposition_translation`.`keywords`, `place_exposition_placeexposition_translation`.`total_year_action`, `place_exposition_placeexposition_translation`.`language_code`, `place_exposition_placeexposition_translation`.`master_id` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`main_page` = 1 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(1, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:11:55,326 [DEBUG] django.db.backends: (0.000) SELECT `django_content_type`.`id`, `django_content_type`.`name`, `django_content_type`.`app_label`, `django_content_type`.`model` FROM `django_content_type` WHERE (`django_content_type`.`model` = 'exposition' AND `django_content_type`.`app_label` = 'exposition' ); args=('exposition', u'exposition') +2015-07-28 11:11:55,328 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 7358 AND `file_filemodel`.`content_type_id` = 28 AND `file_filemodel`.`purpose` = 'preview' ); args=(7358, 28, 'preview') +2015-07-28 11:11:55,329 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [imgs/WIRE.png] at [220x220] +2015-07-28 11:11:55,334 [DEBUG] django.db.backends: (0.000) SELECT `accounts_calendar`.`id`, `accounts_calendar`.`user_id` FROM `accounts_calendar` WHERE `accounts_calendar`.`user_id` = 58304 ; args=(58304,) +2015-07-28 11:11:55,337 [DEBUG] django.db.backends: (0.000) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `accounts_calendar_expositions` ON (`exposition_exposition`.`id` = `accounts_calendar_expositions`.`exposition_id`) WHERE (`accounts_calendar_expositions`.`calendar_id` = 77974 AND `exposition_exposition_translation`.`language_code` = 'ru' ); args=(77974, 'ru') +2015-07-28 11:11:55,340 [DEBUG] django.db.backends: (0.000) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `accounts_calendar_expositions` ON (`exposition_exposition`.`id` = `accounts_calendar_expositions`.`exposition_id`) WHERE (`accounts_calendar_expositions`.`calendar_id` = 77974 AND `exposition_exposition_translation`.`language_code` = 'ru' ); args=(77974, 'ru') +2015-07-28 11:11:55,345 [DEBUG] django.db.backends: (0.000) SELECT `theme_tag_translation`.`id`, `theme_tag_translation`.`name`, `theme_tag_translation`.`main_title`, `theme_tag_translation`.`description`, `theme_tag_translation`.`title`, `theme_tag_translation`.`descriptions`, `theme_tag_translation`.`keywords`, `theme_tag_translation`.`language_code`, `theme_tag_translation`.`master_id`, `theme_tag`.`id`, `theme_tag`.`url`, `theme_tag`.`old_url`, `theme_tag`.`theme_id`, `theme_tag`.`inflect` FROM `theme_tag_translation` LEFT OUTER JOIN `theme_tag` ON (`theme_tag_translation`.`master_id` = `theme_tag`.`id`) LEFT OUTER JOIN `exposition_exposition_tag` ON (`theme_tag`.`id` = `exposition_exposition_tag`.`tag_id`) WHERE (`exposition_exposition_tag`.`exposition_id` = 7358 AND `theme_tag_translation`.`language_code` = 'ru' ) ORDER BY `theme_tag_translation`.`name` ASC; args=(7358, 'ru') +2015-07-28 11:11:55,349 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 7523 AND `file_filemodel`.`content_type_id` = 28 AND `file_filemodel`.`purpose` = 'preview' ); args=(7523, 28, 'preview') +2015-07-28 11:11:55,349 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [imgs/Rosupack.png] at [220x220] +2015-07-28 11:11:55,353 [DEBUG] django.db.backends: (0.000) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `accounts_calendar_expositions` ON (`exposition_exposition`.`id` = `accounts_calendar_expositions`.`exposition_id`) WHERE (`accounts_calendar_expositions`.`calendar_id` = 77974 AND `exposition_exposition_translation`.`language_code` = 'ru' ); args=(77974, 'ru') +2015-07-28 11:11:55,356 [DEBUG] django.db.backends: (0.000) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `accounts_calendar_expositions` ON (`exposition_exposition`.`id` = `accounts_calendar_expositions`.`exposition_id`) WHERE (`accounts_calendar_expositions`.`calendar_id` = 77974 AND `exposition_exposition_translation`.`language_code` = 'ru' ); args=(77974, 'ru') +2015-07-28 11:11:55,359 [DEBUG] django.db.backends: (0.000) SELECT `theme_tag_translation`.`id`, `theme_tag_translation`.`name`, `theme_tag_translation`.`main_title`, `theme_tag_translation`.`description`, `theme_tag_translation`.`title`, `theme_tag_translation`.`descriptions`, `theme_tag_translation`.`keywords`, `theme_tag_translation`.`language_code`, `theme_tag_translation`.`master_id`, `theme_tag`.`id`, `theme_tag`.`url`, `theme_tag`.`old_url`, `theme_tag`.`theme_id`, `theme_tag`.`inflect` FROM `theme_tag_translation` LEFT OUTER JOIN `theme_tag` ON (`theme_tag_translation`.`master_id` = `theme_tag`.`id`) LEFT OUTER JOIN `exposition_exposition_tag` ON (`theme_tag`.`id` = `exposition_exposition_tag`.`tag_id`) WHERE (`exposition_exposition_tag`.`exposition_id` = 7523 AND `theme_tag_translation`.`language_code` = 'ru' ) ORDER BY `theme_tag_translation`.`name` ASC; args=(7523, 'ru') +2015-07-28 11:11:55,362 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 8108 AND `file_filemodel`.`content_type_id` = 28 AND `file_filemodel`.`purpose` = 'preview' ); args=(8108, 28, 'preview') +2015-07-28 11:11:55,362 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [[]] at [220x220] +2015-07-28 11:11:55,366 [DEBUG] django.db.backends: (0.000) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `accounts_calendar_expositions` ON (`exposition_exposition`.`id` = `accounts_calendar_expositions`.`exposition_id`) WHERE (`accounts_calendar_expositions`.`calendar_id` = 77974 AND `exposition_exposition_translation`.`language_code` = 'ru' ); args=(77974, 'ru') +2015-07-28 11:11:55,369 [DEBUG] django.db.backends: (0.000) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `accounts_calendar_expositions` ON (`exposition_exposition`.`id` = `accounts_calendar_expositions`.`exposition_id`) WHERE (`accounts_calendar_expositions`.`calendar_id` = 77974 AND `exposition_exposition_translation`.`language_code` = 'ru' ); args=(77974, 'ru') +2015-07-28 11:11:55,371 [DEBUG] django.db.backends: (0.000) SELECT `theme_tag_translation`.`id`, `theme_tag_translation`.`name`, `theme_tag_translation`.`main_title`, `theme_tag_translation`.`description`, `theme_tag_translation`.`title`, `theme_tag_translation`.`descriptions`, `theme_tag_translation`.`keywords`, `theme_tag_translation`.`language_code`, `theme_tag_translation`.`master_id`, `theme_tag`.`id`, `theme_tag`.`url`, `theme_tag`.`old_url`, `theme_tag`.`theme_id`, `theme_tag`.`inflect` FROM `theme_tag_translation` LEFT OUTER JOIN `theme_tag` ON (`theme_tag_translation`.`master_id` = `theme_tag`.`id`) LEFT OUTER JOIN `exposition_exposition_tag` ON (`theme_tag`.`id` = `exposition_exposition_tag`.`tag_id`) WHERE (`exposition_exposition_tag`.`exposition_id` = 8108 AND `theme_tag_translation`.`language_code` = 'ru' ) ORDER BY `theme_tag_translation`.`name` ASC; args=(8108, 'ru') +2015-07-28 11:11:55,437 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE (`theme_theme`.`types` = (`theme_theme`.`types` | 1) AND `theme_theme_translation`.`language_code` = 'ru' ) ORDER BY `theme_theme`.`main_page` DESC LIMIT 6; args=('ru',) +2015-07-28 11:11:55,444 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `exposition_exposition_theme` ON (`exposition_exposition`.`id` = `exposition_exposition_theme`.`exposition_id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`is_published` = 1 AND `exposition_exposition`.`data_begin` >= '2015-07-28' AND `exposition_exposition_theme`.`theme_id` = 54 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 54, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:11:55,449 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `exposition_exposition_theme` ON (`exposition_exposition`.`id` = `exposition_exposition_theme`.`exposition_id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`is_published` = 1 AND `exposition_exposition`.`data_begin` >= '2015-07-28' AND `exposition_exposition_theme`.`theme_id` = 51 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 51, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:11:55,455 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `exposition_exposition_theme` ON (`exposition_exposition`.`id` = `exposition_exposition_theme`.`exposition_id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`is_published` = 1 AND `exposition_exposition`.`data_begin` >= '2015-07-28' AND `exposition_exposition_theme`.`theme_id` = 48 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 48, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:11:55,460 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `exposition_exposition_theme` ON (`exposition_exposition`.`id` = `exposition_exposition_theme`.`exposition_id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`is_published` = 1 AND `exposition_exposition`.`data_begin` >= '2015-07-28' AND `exposition_exposition_theme`.`theme_id` = 39 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 39, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:11:55,466 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `exposition_exposition_theme` ON (`exposition_exposition`.`id` = `exposition_exposition_theme`.`exposition_id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`is_published` = 1 AND `exposition_exposition`.`data_begin` >= '2015-07-28' AND `exposition_exposition_theme`.`theme_id` = 37 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 37, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:11:55,472 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `exposition_exposition_theme` ON (`exposition_exposition`.`id` = `exposition_exposition_theme`.`exposition_id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`is_published` = 1 AND `exposition_exposition`.`data_begin` >= '2015-07-28' AND `exposition_exposition_theme`.`theme_id` = 31 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 31, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:11:55,474 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE (`theme_theme`.`types` = (`theme_theme`.`types` | 2) AND `theme_theme_translation`.`language_code` = 'ru' ) ORDER BY `theme_theme`.`main_page` DESC LIMIT 6; args=('ru',) +2015-07-28 11:11:55,483 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `conference_conference_translation` LEFT OUTER JOIN `conference_conference` ON (`conference_conference_translation`.`master_id` = `conference_conference`.`id`) LEFT OUTER JOIN `conference_conference_theme` ON (`conference_conference`.`id` = `conference_conference_theme`.`conference_id`) LEFT OUTER JOIN `country_country` ON (`conference_conference`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`conference_conference`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_conference_placeconference` ON (`conference_conference`.`place_id` = `place_conference_placeconference`.`id`) LEFT OUTER JOIN `place_conference_placeconference_translation` ON (`place_conference_placeconference`.`id` = `place_conference_placeconference_translation`.`master_id`) WHERE (`conference_conference`.`is_published` = 1 AND `conference_conference`.`data_begin` >= '2015-07-28' AND `conference_conference_theme`.`theme_id` = 87 AND `conference_conference_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_conference_placeconference_translation`.`language_code` = 'ru' OR `place_conference_placeconference_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 87, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:11:55,489 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `conference_conference_translation` LEFT OUTER JOIN `conference_conference` ON (`conference_conference_translation`.`master_id` = `conference_conference`.`id`) LEFT OUTER JOIN `conference_conference_theme` ON (`conference_conference`.`id` = `conference_conference_theme`.`conference_id`) LEFT OUTER JOIN `country_country` ON (`conference_conference`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`conference_conference`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_conference_placeconference` ON (`conference_conference`.`place_id` = `place_conference_placeconference`.`id`) LEFT OUTER JOIN `place_conference_placeconference_translation` ON (`place_conference_placeconference`.`id` = `place_conference_placeconference_translation`.`master_id`) WHERE (`conference_conference`.`is_published` = 1 AND `conference_conference`.`data_begin` >= '2015-07-28' AND `conference_conference_theme`.`theme_id` = 84 AND `conference_conference_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_conference_placeconference_translation`.`language_code` = 'ru' OR `place_conference_placeconference_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 84, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:11:55,494 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `conference_conference_translation` LEFT OUTER JOIN `conference_conference` ON (`conference_conference_translation`.`master_id` = `conference_conference`.`id`) LEFT OUTER JOIN `conference_conference_theme` ON (`conference_conference`.`id` = `conference_conference_theme`.`conference_id`) LEFT OUTER JOIN `country_country` ON (`conference_conference`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`conference_conference`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_conference_placeconference` ON (`conference_conference`.`place_id` = `place_conference_placeconference`.`id`) LEFT OUTER JOIN `place_conference_placeconference_translation` ON (`place_conference_placeconference`.`id` = `place_conference_placeconference_translation`.`master_id`) WHERE (`conference_conference`.`is_published` = 1 AND `conference_conference`.`data_begin` >= '2015-07-28' AND `conference_conference_theme`.`theme_id` = 74 AND `conference_conference_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_conference_placeconference_translation`.`language_code` = 'ru' OR `place_conference_placeconference_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 74, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:11:55,500 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `conference_conference_translation` LEFT OUTER JOIN `conference_conference` ON (`conference_conference_translation`.`master_id` = `conference_conference`.`id`) LEFT OUTER JOIN `conference_conference_theme` ON (`conference_conference`.`id` = `conference_conference_theme`.`conference_id`) LEFT OUTER JOIN `country_country` ON (`conference_conference`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`conference_conference`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_conference_placeconference` ON (`conference_conference`.`place_id` = `place_conference_placeconference`.`id`) LEFT OUTER JOIN `place_conference_placeconference_translation` ON (`place_conference_placeconference`.`id` = `place_conference_placeconference_translation`.`master_id`) WHERE (`conference_conference`.`is_published` = 1 AND `conference_conference`.`data_begin` >= '2015-07-28' AND `conference_conference_theme`.`theme_id` = 70 AND `conference_conference_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_conference_placeconference_translation`.`language_code` = 'ru' OR `place_conference_placeconference_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 70, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:11:55,505 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `conference_conference_translation` LEFT OUTER JOIN `conference_conference` ON (`conference_conference_translation`.`master_id` = `conference_conference`.`id`) LEFT OUTER JOIN `conference_conference_theme` ON (`conference_conference`.`id` = `conference_conference_theme`.`conference_id`) LEFT OUTER JOIN `country_country` ON (`conference_conference`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`conference_conference`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_conference_placeconference` ON (`conference_conference`.`place_id` = `place_conference_placeconference`.`id`) LEFT OUTER JOIN `place_conference_placeconference_translation` ON (`place_conference_placeconference`.`id` = `place_conference_placeconference_translation`.`master_id`) WHERE (`conference_conference`.`is_published` = 1 AND `conference_conference`.`data_begin` >= '2015-07-28' AND `conference_conference_theme`.`theme_id` = 68 AND `conference_conference_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_conference_placeconference_translation`.`language_code` = 'ru' OR `place_conference_placeconference_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 68, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:11:55,511 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `conference_conference_translation` LEFT OUTER JOIN `conference_conference` ON (`conference_conference_translation`.`master_id` = `conference_conference`.`id`) LEFT OUTER JOIN `conference_conference_theme` ON (`conference_conference`.`id` = `conference_conference_theme`.`conference_id`) LEFT OUTER JOIN `country_country` ON (`conference_conference`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`conference_conference`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_conference_placeconference` ON (`conference_conference`.`place_id` = `place_conference_placeconference`.`id`) LEFT OUTER JOIN `place_conference_placeconference_translation` ON (`place_conference_placeconference`.`id` = `place_conference_placeconference_translation`.`master_id`) WHERE (`conference_conference`.`is_published` = 1 AND `conference_conference`.`data_begin` >= '2015-07-28' AND `conference_conference_theme`.`theme_id` = 54 AND `conference_conference_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_conference_placeconference_translation`.`language_code` = 'ru' OR `place_conference_placeconference_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 54, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:11:55,512 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [articles_preview/expomilano_2015_3.jpg] at [80x80] +2015-07-28 11:11:55,513 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [articles_preview/3dprint.jpg] at [80x80] +2015-07-28 11:11:55,515 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [articles_preview/rif.png] at [80x80] +2015-07-28 11:11:55,518 [DEBUG] django.db.backends: (0.000) SELECT `django_content_type`.`id`, `django_content_type`.`name`, `django_content_type`.`app_label`, `django_content_type`.`model` FROM `django_content_type` WHERE (`django_content_type`.`model` = 'article' AND `django_content_type`.`app_label` = 'article' ); args=('article', u'article') +2015-07-28 11:11:55,520 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 50 AND `file_filemodel`.`content_type_id` = 10 AND `file_filemodel`.`purpose` = 'preview' ); args=(50, 10, 'preview') +2015-07-28 11:11:55,522 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 50 AND `file_filemodel`.`content_type_id` = 10 AND `file_filemodel`.`purpose` = 'preview' ); args=(50, 10, 'preview') +2015-07-28 11:11:55,522 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [imgs/oborudovanie.png] at [220x100] +2015-07-28 11:11:55,525 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 48 AND `file_filemodel`.`content_type_id` = 10 AND `file_filemodel`.`purpose` = 'preview' ); args=(48, 10, 'preview') +2015-07-28 11:11:55,527 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 48 AND `file_filemodel`.`content_type_id` = 10 AND `file_filemodel`.`purpose` = 'preview' ); args=(48, 10, 'preview') +2015-07-28 11:11:55,527 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [imgs/strategii_reklami.png] at [220x100] +2015-07-28 11:11:55,530 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 40 AND `file_filemodel`.`content_type_id` = 10 AND `file_filemodel`.`purpose` = 'preview' ); args=(40, 10, 'preview') +2015-07-28 11:11:55,540 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:11:55,559 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:11:55,562 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:11:55,564 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:11:55,567 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:11:55,569 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:11:55,572 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:11:55,574 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:11:55,577 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:11:55,579 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:11:55,581 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:11:55,584 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:11:55,586 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:11:55,589 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:11:55,591 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:11:55,594 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:11:55,596 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:11:55,599 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:11:55,601 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:11:55,604 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:11:55,606 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:11:55,609 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:11:55,612 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:11:55,614 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:11:55,617 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:11:55,619 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:11:55,622 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:11:55,624 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:11:55,627 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:11:55,629 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:11:55,631 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:11:55,634 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:11:55,636 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:11:55,639 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:11:55,641 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:11:55,644 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:11:55,646 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:11:55,649 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:11:55,651 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:11:55,654 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:11:55,656 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:11:55,659 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:11:55,661 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:11:55,664 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:11:55,666 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:11:55,669 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:11:55,671 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:11:55,674 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:11:55,676 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:11:55,679 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:11:55,681 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:11:55,684 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:11:55,686 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:11:55,689 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:11:55,691 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:11:55,694 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:11:55,696 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:11:55,699 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:11:55,701 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:11:55,704 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:11:55,707 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:11:55,709 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:11:55,712 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:11:55,714 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:11:55,717 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:11:55,719 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:11:55,722 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:11:55,724 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:11:55,727 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:11:55,729 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:11:55,732 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:11:55,734 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:11:55,737 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:11:55,739 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:11:55,742 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:11:55,744 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:11:55,747 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:11:55,749 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:11:55,752 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:11:55,754 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:11:55,757 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:11:55,759 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:11:55,762 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:11:55,764 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:11:55,767 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:11:55,769 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:11:55,772 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:11:55,774 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:11:55,777 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:11:55,779 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:11:55,782 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:11:55,784 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:11:55,786 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:11:55,789 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:11:55,791 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:11:55,794 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:11:55,796 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:11:55,799 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:11:55,801 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:11:55,804 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:11:55,806 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:11:55,809 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:11:55,811 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:11:55,814 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:11:55,817 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:11:55,819 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:11:55,822 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:11:55,824 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:11:55,826 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:11:55,829 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:11:55,831 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:11:55,834 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:11:55,836 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:11:55,839 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:11:55,841 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:11:55,844 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:11:55,846 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:11:55,849 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:11:55,851 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:11:55,854 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:11:55,856 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:11:55,859 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:11:55,861 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:11:55,864 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:11:55,866 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:11:55,869 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:11:55,871 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:11:55,874 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:11:55,876 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:11:55,879 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:11:55,881 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:11:55,884 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:11:55,886 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:11:55,889 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:11:55,891 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:11:55,894 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:11:55,896 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:11:55,899 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:11:55,901 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:11:55,904 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:11:55,906 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:11:55,909 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:11:55,911 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:11:55,914 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:11:55,916 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:11:55,919 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:11:55,921 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:11:55,924 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:11:55,926 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:11:55,929 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:11:55,931 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:11:55,934 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:11:55,936 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:11:55,939 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:11:55,941 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:11:55,944 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:11:55,946 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:11:55,948 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:11:55,951 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:11:55,953 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:11:55,956 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:11:55,959 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:11:55,961 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:11:55,964 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:11:55,966 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:11:55,968 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:11:55,971 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:11:55,973 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:11:55,976 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:11:55,978 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:11:55,981 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:11:55,983 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:11:55,986 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:11:55,988 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:11:55,991 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:11:55,993 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:11:55,996 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:11:55,998 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:11:56,001 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:11:56,004 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:11:56,007 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:11:56,010 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:11:56,012 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:11:56,015 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:11:56,020 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:11:56,022 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:11:56,025 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:11:56,028 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:11:56,031 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:11:56,033 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:11:56,036 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:11:56,038 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:11:56,041 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:11:56,044 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:11:56,046 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:11:56,049 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:11:56,051 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:11:56,054 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:11:56,057 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:11:56,060 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:11:56,062 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:11:56,065 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:11:56,068 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:11:56,070 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:11:56,073 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:11:56,076 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:17:28,993 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:17:28,995 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:17:29,015 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:17:29,016 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:17:29,032 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:17:29,033 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:17:29,088 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:17:29,089 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:17:29,156 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:17:29,157 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:17:29,165 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:17:29,166 [DEBUG] django.db.backends: (0.001) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:17:29,226 [DEBUG] django.db.backends: (0.001) SELECT DISTINCT `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect`, `theme_theme_translation`.`name` FROM `theme_theme` INNER JOIN `exposition_exposition_theme` ON (`theme_theme`.`id` = `exposition_exposition_theme`.`theme_id`) INNER JOIN `exposition_exposition` ON (`exposition_exposition_theme`.`exposition_id` = `exposition_exposition`.`id`) INNER JOIN `exposition_exposition_theme` T4 ON (`exposition_exposition`.`id` = T4.`exposition_id`) INNER JOIN `theme_theme` T5 ON (T4.`theme_id` = T5.`id`) INNER JOIN `theme_theme_translation` ON (`theme_theme`.`id` = `theme_theme_translation`.`master_id`) WHERE (T5.`id` IS NOT NULL AND `theme_theme_translation`.`language_code` = 'ru' ) ORDER BY `theme_theme_translation`.`name` ASC; args=('ru',) +2015-07-28 11:17:29,233 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 1 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:17:29,235 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 2 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:17:29,238 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 75 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:17:29,240 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 94 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:17:29,243 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 3 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:17:29,245 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 37 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:17:29,248 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 84 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:17:29,250 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 4 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:17:29,252 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 64 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:17:29,255 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 77 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:17:29,257 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 6 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:17:29,259 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 7 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:17:29,262 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 8 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:17:29,264 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 5 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:17:29,267 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 10 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:17:29,269 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 11 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:17:29,271 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 74 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:17:29,274 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 70 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:17:29,276 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 73 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:17:29,278 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 69 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:17:29,280 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 71 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:17:29,283 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 68 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:17:29,285 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 72 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:17:29,287 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 45 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:17:29,290 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 13 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:17:29,292 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 14 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:17:29,294 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 42 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:17:29,297 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 15 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:17:29,299 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 43 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:17:29,301 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 27 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:17:29,303 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 22 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:17:29,306 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 16 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:17:29,308 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 17 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:17:29,310 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 87 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:17:29,313 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 44 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:17:29,315 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 50 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:17:29,317 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 18 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:17:29,320 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 21 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:17:29,322 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 62 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:17:29,324 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 51 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:17:29,327 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 23 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:17:29,329 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 97 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:17:29,331 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 9 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:17:29,333 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 31 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:17:29,336 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 63 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:17:29,338 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 24 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:17:29,340 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 26 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:17:29,343 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 28 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:17:29,345 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 30 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:17:29,347 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 34 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:17:29,349 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 90 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:17:29,352 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 54 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:17:29,354 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 48 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:17:29,356 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 32 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:17:29,359 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 29 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:17:29,361 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 83 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:17:29,363 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 35 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:17:29,366 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 36 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:17:29,368 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 38 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:17:29,370 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 39 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:17:29,373 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 40 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:17:29,376 [DEBUG] django.db.backends: (0.000) SELECT `country_area_translation`.`id`, `country_area_translation`.`name`, `country_area_translation`.`language_code`, `country_area_translation`.`master_id`, `country_area`.`id` FROM `country_area_translation` LEFT OUTER JOIN `country_area` ON (`country_area_translation`.`master_id` = `country_area`.`id`) LEFT OUTER JOIN `country_area_translation` T3 ON (`country_area`.`id` = T3.`master_id`) WHERE `country_area_translation`.`language_code` = 'ru' ORDER BY T3.`name` ASC; args=('ru',) +2015-07-28 11:17:29,495 [DEBUG] django.db.backends: (0.000) SELECT `country_area_translation`.`id`, `country_area_translation`.`name`, `country_area_translation`.`language_code`, `country_area_translation`.`master_id`, `country_area`.`id` FROM `country_area_translation` LEFT OUTER JOIN `country_area` ON (`country_area_translation`.`master_id` = `country_area`.`id`) LEFT OUTER JOIN `country_area_translation` T3 ON (`country_area`.`id` = T3.`master_id`) WHERE `country_area_translation`.`language_code` = 'ru' ORDER BY T3.`name` ASC; args=('ru',) +2015-07-28 11:17:29,613 [DEBUG] django.db.backends: (0.003) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE `theme_theme_translation`.`language_code` = 'ru' ORDER BY `theme_theme_translation`.`name` ASC; args=('ru',) +2015-07-28 11:17:29,623 [DEBUG] django.db.backends: (0.000) SELECT `country_area_translation`.`id`, `country_area_translation`.`name`, `country_area_translation`.`language_code`, `country_area_translation`.`master_id`, `country_area`.`id` FROM `country_area_translation` LEFT OUTER JOIN `country_area` ON (`country_area_translation`.`master_id` = `country_area`.`id`) LEFT OUTER JOIN `country_area_translation` T3 ON (`country_area`.`id` = T3.`master_id`) WHERE `country_area_translation`.`language_code` = 'ru' ORDER BY T3.`name` ASC; args=('ru',) +2015-07-28 11:17:29,814 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:17:29,825 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:17:29,827 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:17:29,830 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:17:29,832 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:17:29,834 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:17:29,837 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:17:29,839 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:17:29,841 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:17:29,844 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:17:29,846 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:17:29,848 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:17:29,850 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:17:29,853 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:17:29,855 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:17:29,857 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:17:29,860 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:17:29,862 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:17:29,865 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:17:29,867 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:17:29,869 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:17:29,871 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:17:29,874 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:17:29,876 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:17:29,878 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:17:29,881 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:17:29,883 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:17:29,885 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:17:29,888 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:17:29,890 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:17:29,892 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:17:29,895 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:17:29,897 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:17:29,899 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:17:29,902 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:17:29,904 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:17:29,906 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:17:29,909 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:17:29,911 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:17:29,913 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:17:29,916 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:17:29,918 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:17:29,920 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:17:29,923 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:17:29,925 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:17:29,928 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:17:29,930 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:17:29,932 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:17:29,935 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:17:29,937 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:17:29,939 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:17:29,941 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:17:29,944 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:17:29,946 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:17:29,948 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:17:29,951 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:17:29,953 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:17:29,955 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:17:29,958 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:17:29,960 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:17:29,962 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:17:29,965 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:17:29,967 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:17:29,969 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:17:29,972 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:17:29,974 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:17:29,976 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:17:29,979 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:17:29,981 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:17:29,983 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:17:29,986 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:17:29,988 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:17:29,990 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:17:29,993 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:17:29,995 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:17:29,998 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:17:30,000 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:17:30,002 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:17:30,004 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:17:30,007 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:17:30,009 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:17:30,011 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:17:30,014 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:17:30,016 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:17:30,018 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:17:30,021 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:17:30,023 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:17:30,025 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:17:30,028 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:17:30,030 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:17:30,033 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:17:30,035 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:17:30,037 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:17:30,040 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:17:30,042 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:17:30,044 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:17:30,046 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:17:30,049 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:17:30,053 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:17:30,056 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:17:30,058 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:17:30,068 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:17:30,071 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:17:30,073 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:17:30,075 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:17:30,078 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:17:30,080 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:17:30,083 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:17:30,085 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:17:30,087 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:17:30,090 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:17:30,092 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:17:30,095 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:17:30,098 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:17:30,100 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:17:30,102 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:17:30,104 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:17:30,107 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:17:30,109 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:17:30,111 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:17:30,114 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:17:30,116 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:17:30,118 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:17:30,121 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:17:30,123 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:17:30,125 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:17:30,127 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:17:30,130 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:17:30,132 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:17:30,134 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:17:30,137 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:17:30,139 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:17:30,141 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:17:30,143 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:17:30,146 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:17:30,148 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:17:30,150 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:17:30,153 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:17:30,155 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:17:30,157 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:17:30,159 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:17:30,162 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:17:30,164 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:17:30,166 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:17:30,169 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:17:30,171 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:17:30,173 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:17:30,175 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:17:30,178 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:17:30,180 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:17:30,182 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:17:30,185 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:17:30,187 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:17:30,189 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:17:30,192 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:17:30,194 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:17:30,196 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:17:30,199 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:17:30,201 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:17:30,203 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:17:30,206 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:17:30,208 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:17:30,211 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:17:30,213 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:17:30,215 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:17:30,218 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:17:30,220 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:17:30,222 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:17:30,225 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:17:30,227 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:17:30,229 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:17:30,232 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:17:30,234 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:17:30,237 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:17:30,239 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:17:30,241 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:17:30,244 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:17:30,246 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:17:30,248 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:17:30,251 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:17:30,253 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:17:30,255 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:17:30,258 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:17:30,260 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:17:30,262 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:17:30,265 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:17:30,267 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:17:30,270 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:17:30,272 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:17:30,274 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:17:30,277 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:17:30,279 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:17:30,281 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:17:30,284 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:17:30,286 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:17:30,288 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:17:30,291 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:17:30,293 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:17:30,295 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:17:30,298 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:17:30,300 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:17:30,303 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:17:30,305 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:17:30,308 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:17:30,310 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:17:30,312 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:17:30,434 [DEBUG] django.db.backends: (0.117) SELECT `company_company_translation`.`id`, `company_company_translation`.`name`, `company_company_translation`.`specialization`, `company_company_translation`.`description`, `company_company_translation`.`address_inf`, `company_company_translation`.`title`, `company_company_translation`.`descriptions`, `company_company_translation`.`keywords`, `company_company_translation`.`language_code`, `company_company_translation`.`master_id`, `company_company`.`id`, `company_company`.`url`, `company_company`.`creator_id`, `company_company`.`country_id`, `company_company`.`city_id`, `company_company`.`address`, `company_company`.`staff_number`, `company_company`.`phone`, `company_company`.`fax`, `company_company`.`web_page`, `company_company`.`email`, `company_company`.`facebook`, `company_company`.`twitter`, `company_company`.`linkedin`, `company_company`.`vk`, `company_company`.`foundation`, `company_company`.`rating`, `company_company`.`created`, `company_company`.`modified`, `company_company`.`logo` FROM `company_company_translation` LEFT OUTER JOIN `company_company` ON (`company_company_translation`.`master_id` = `company_company`.`id`) WHERE `company_company_translation`.`language_code` = 'ru' ORDER BY `company_company`.`rating` DESC, `company_company_translation`.`master_id` ASC; args=('ru',) +2015-07-28 11:17:30,890 [DEBUG] django.db.backends: (0.136) SELECT `organiser_organiser_translation`.`id`, `organiser_organiser_translation`.`name`, `organiser_organiser_translation`.`specialization`, `organiser_organiser_translation`.`description`, `organiser_organiser_translation`.`representation`, `organiser_organiser_translation`.`address_inf`, `organiser_organiser_translation`.`title`, `organiser_organiser_translation`.`descriptions`, `organiser_organiser_translation`.`keywords`, `organiser_organiser_translation`.`language_code`, `organiser_organiser_translation`.`master_id`, `organiser_organiser`.`id`, `organiser_organiser`.`url`, `organiser_organiser`.`country_id`, `organiser_organiser`.`city_id`, `organiser_organiser`.`address`, `organiser_organiser`.`logo`, `organiser_organiser`.`rating`, `organiser_organiser`.`phone`, `organiser_organiser`.`fax`, `organiser_organiser`.`web_page`, `organiser_organiser`.`email`, `organiser_organiser`.`facebook`, `organiser_organiser`.`twitter`, `organiser_organiser`.`linkedin`, `organiser_organiser`.`vk`, `organiser_organiser`.`foundation`, `organiser_organiser`.`events_number`, `organiser_organiser`.`staff_number`, `organiser_organiser`.`created`, `organiser_organiser`.`modified`, `organiser_organiser`.`active` FROM `organiser_organiser_translation` LEFT OUTER JOIN `organiser_organiser` ON (`organiser_organiser_translation`.`master_id` = `organiser_organiser`.`id`) WHERE `organiser_organiser_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:17:31,276 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:17:31,301 [DEBUG] django.db.backends: (0.001) SELECT DISTINCT `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect`, `theme_theme_translation`.`name` FROM `theme_theme` INNER JOIN `exposition_exposition_theme` ON (`theme_theme`.`id` = `exposition_exposition_theme`.`theme_id`) INNER JOIN `exposition_exposition` ON (`exposition_exposition_theme`.`exposition_id` = `exposition_exposition`.`id`) INNER JOIN `exposition_exposition_theme` T4 ON (`exposition_exposition`.`id` = T4.`exposition_id`) INNER JOIN `theme_theme` T5 ON (T4.`theme_id` = T5.`id`) INNER JOIN `theme_theme_translation` ON (`theme_theme`.`id` = `theme_theme_translation`.`master_id`) WHERE (T5.`id` IS NOT NULL AND `theme_theme_translation`.`language_code` = 'ru' ) ORDER BY `theme_theme_translation`.`name` ASC; args=('ru',) +2015-07-28 11:17:31,307 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 1 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:17:31,310 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 2 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:17:31,312 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 75 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:17:31,314 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 94 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:17:31,317 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 3 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:17:31,319 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 37 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:17:31,323 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 84 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:17:31,327 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 4 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:17:31,330 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 64 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:17:31,333 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 77 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:17:31,336 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 6 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:17:31,339 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 7 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:17:31,342 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 8 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:17:31,345 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 5 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:17:31,348 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 10 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:17:31,350 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 11 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:17:31,354 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 74 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:17:31,357 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 70 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:17:31,360 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 73 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:17:31,362 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 69 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:17:31,365 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 71 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:17:31,368 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 68 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:17:31,371 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 72 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:17:31,373 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 45 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:17:31,377 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 13 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:17:31,379 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 14 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:17:31,383 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 42 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:17:31,385 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 15 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:17:31,388 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 43 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:17:31,391 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 27 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:17:31,394 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 22 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:17:31,397 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 16 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:17:31,401 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 17 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:17:31,405 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 87 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:17:31,408 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 44 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:17:31,411 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 50 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:17:31,414 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 18 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:17:31,417 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 21 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:17:31,421 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 62 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:17:31,424 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 51 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:17:31,428 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 23 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:17:31,431 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 97 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:17:31,435 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 9 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:17:31,438 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 31 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:17:31,442 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 63 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:17:31,445 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 24 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:17:31,448 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 26 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:17:31,452 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 28 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:17:31,456 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 30 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:17:31,459 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 34 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:17:31,462 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 90 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:17:31,465 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 54 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:17:31,468 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 48 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:17:31,472 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 32 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:17:31,475 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 29 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:17:31,478 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 83 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:17:31,482 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 35 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:17:31,486 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 36 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:17:31,489 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 38 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:17:31,492 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 39 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:17:31,495 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 40 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:17:31,497 [DEBUG] django.db.backends: (0.000) SELECT `country_area_translation`.`id`, `country_area_translation`.`name`, `country_area_translation`.`language_code`, `country_area_translation`.`master_id`, `country_area`.`id` FROM `country_area_translation` LEFT OUTER JOIN `country_area` ON (`country_area_translation`.`master_id` = `country_area`.`id`) LEFT OUTER JOIN `country_area_translation` T3 ON (`country_area`.`id` = T3.`master_id`) WHERE `country_area_translation`.`language_code` = 'ru' ORDER BY T3.`name` ASC; args=('ru',) +2015-07-28 11:17:31,820 [DEBUG] django.db.backends: (0.073) SELECT `place_exposition_placeexposition_translation`.`id`, `place_exposition_placeexposition_translation`.`name`, `place_exposition_placeexposition_translation`.`main_title`, `place_exposition_placeexposition_translation`.`description`, `place_exposition_placeexposition_translation`.`adress`, `place_exposition_placeexposition_translation`.`title`, `place_exposition_placeexposition_translation`.`descriptions`, `place_exposition_placeexposition_translation`.`keywords`, `place_exposition_placeexposition_translation`.`total_year_action`, `place_exposition_placeexposition_translation`.`language_code`, `place_exposition_placeexposition_translation`.`master_id`, `place_exposition_placeexposition`.`id`, `place_exposition_placeexposition`.`url`, `place_exposition_placeexposition`.`country_id`, `place_exposition_placeexposition`.`city_id`, `place_exposition_placeexposition`.`photogallery_id`, `place_exposition_placeexposition`.`type`, `place_exposition_placeexposition`.`address`, `place_exposition_placeexposition`.`phone`, `place_exposition_placeexposition`.`fax`, `place_exposition_placeexposition`.`web_page`, `place_exposition_placeexposition`.`email`, `place_exposition_placeexposition`.`foundation_year`, `place_exposition_placeexposition`.`event_in_year`, `place_exposition_placeexposition`.`total_area`, `place_exposition_placeexposition`.`closed_area`, `place_exposition_placeexposition`.`open_area`, `place_exposition_placeexposition`.`total_pavilions`, `place_exposition_placeexposition`.`total_halls`, `place_exposition_placeexposition`.`virtual_tour`, `place_exposition_placeexposition`.`wifi`, `place_exposition_placeexposition`.`bank`, `place_exposition_placeexposition`.`children_room`, `place_exposition_placeexposition`.`disabled_service`, `place_exposition_placeexposition`.`conference_centre`, `place_exposition_placeexposition`.`business_centre`, `place_exposition_placeexposition`.`online_registration`, `place_exposition_placeexposition`.`cafe`, `place_exposition_placeexposition`.`terminals`, `place_exposition_placeexposition`.`parking`, `place_exposition_placeexposition`.`press_centre`, `place_exposition_placeexposition`.`mobile_application`, `place_exposition_placeexposition`.`logo`, `place_exposition_placeexposition`.`rating`, `place_exposition_placeexposition`.`partner`, `place_exposition_placeexposition`.`created`, `place_exposition_placeexposition`.`modified`, `place_exposition_placeexposition`.`views`, `place_exposition_placeexposition`.`is_published` FROM `place_exposition_placeexposition_translation` LEFT OUTER JOIN `place_exposition_placeexposition` ON (`place_exposition_placeexposition_translation`.`master_id` = `place_exposition_placeexposition`.`id`) WHERE `place_exposition_placeexposition_translation`.`language_code` = 'ru' ORDER BY `place_exposition_placeexposition`.`rating` DESC, `place_exposition_placeexposition_translation`.`master_id` ASC; args=('ru',) +2015-07-28 11:17:32,201 [DEBUG] django.db.backends: (0.171) SELECT `organiser_organiser_translation`.`id`, `organiser_organiser_translation`.`name`, `organiser_organiser_translation`.`specialization`, `organiser_organiser_translation`.`description`, `organiser_organiser_translation`.`representation`, `organiser_organiser_translation`.`address_inf`, `organiser_organiser_translation`.`title`, `organiser_organiser_translation`.`descriptions`, `organiser_organiser_translation`.`keywords`, `organiser_organiser_translation`.`language_code`, `organiser_organiser_translation`.`master_id`, `organiser_organiser`.`id`, `organiser_organiser`.`url`, `organiser_organiser`.`country_id`, `organiser_organiser`.`city_id`, `organiser_organiser`.`address`, `organiser_organiser`.`logo`, `organiser_organiser`.`rating`, `organiser_organiser`.`phone`, `organiser_organiser`.`fax`, `organiser_organiser`.`web_page`, `organiser_organiser`.`email`, `organiser_organiser`.`facebook`, `organiser_organiser`.`twitter`, `organiser_organiser`.`linkedin`, `organiser_organiser`.`vk`, `organiser_organiser`.`foundation`, `organiser_organiser`.`events_number`, `organiser_organiser`.`staff_number`, `organiser_organiser`.`created`, `organiser_organiser`.`modified`, `organiser_organiser`.`active` FROM `organiser_organiser_translation` LEFT OUTER JOIN `organiser_organiser` ON (`organiser_organiser_translation`.`master_id` = `organiser_organiser`.`id`) WHERE `organiser_organiser_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:17:32,764 [DEBUG] django.db.backends: (0.116) SELECT `company_company_translation`.`id`, `company_company_translation`.`name`, `company_company_translation`.`specialization`, `company_company_translation`.`description`, `company_company_translation`.`address_inf`, `company_company_translation`.`title`, `company_company_translation`.`descriptions`, `company_company_translation`.`keywords`, `company_company_translation`.`language_code`, `company_company_translation`.`master_id`, `company_company`.`id`, `company_company`.`url`, `company_company`.`creator_id`, `company_company`.`country_id`, `company_company`.`city_id`, `company_company`.`address`, `company_company`.`staff_number`, `company_company`.`phone`, `company_company`.`fax`, `company_company`.`web_page`, `company_company`.`email`, `company_company`.`facebook`, `company_company`.`twitter`, `company_company`.`linkedin`, `company_company`.`vk`, `company_company`.`foundation`, `company_company`.`rating`, `company_company`.`created`, `company_company`.`modified`, `company_company`.`logo` FROM `company_company_translation` LEFT OUTER JOIN `company_company` ON (`company_company_translation`.`master_id` = `company_company`.`id`) WHERE `company_company_translation`.`language_code` = 'ru' ORDER BY `company_company`.`rating` DESC, `company_company_translation`.`master_id` ASC; args=('ru',) +2015-07-28 11:17:33,086 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:17:33,097 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:17:33,099 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:17:33,101 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:17:33,104 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:17:33,106 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:17:33,108 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:17:33,111 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:17:33,113 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:17:33,115 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:17:33,118 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:17:33,120 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:17:33,122 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:17:33,125 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:17:33,127 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:17:33,129 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:17:33,132 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:17:33,134 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:17:33,136 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:17:33,138 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:17:33,141 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:17:33,143 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:17:33,145 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:17:33,148 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:17:33,150 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:17:33,152 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:17:33,155 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:17:33,157 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:17:33,159 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:17:33,162 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:17:33,164 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:17:33,166 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:17:33,169 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:17:33,171 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:17:33,173 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:17:33,176 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:17:33,178 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:17:33,180 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:17:33,183 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:17:33,185 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:17:33,187 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:17:33,190 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:17:33,192 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:17:33,194 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:17:33,197 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:17:33,199 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:17:33,201 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:17:33,204 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:17:33,206 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:17:33,208 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:17:33,211 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:17:33,213 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:17:33,215 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:17:33,218 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:17:33,220 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:17:33,222 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:17:33,225 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:17:33,227 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:17:33,229 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:17:33,232 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:17:33,234 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:17:33,236 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:17:33,239 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:17:33,241 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:17:33,243 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:17:33,246 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:17:33,248 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:17:33,250 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:17:33,253 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:17:33,255 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:17:33,257 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:17:33,260 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:17:33,262 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:17:33,264 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:17:33,267 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:17:33,269 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:17:33,271 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:17:33,274 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:17:33,276 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:17:33,278 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:17:33,281 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:17:33,283 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:17:33,285 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:17:33,288 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:17:33,290 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:17:33,292 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:17:33,295 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:17:33,297 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:17:33,299 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:17:33,301 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:17:33,304 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:17:33,306 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:17:33,309 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:17:33,311 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:17:33,313 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:17:33,316 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:17:33,318 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:17:33,320 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:17:33,323 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:17:33,325 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:17:33,327 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:17:33,338 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:17:33,340 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:17:33,343 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:17:33,345 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:17:33,347 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:17:33,349 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:17:33,352 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:17:33,354 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:17:33,356 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:17:33,359 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:17:33,361 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:17:33,363 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:17:33,366 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:17:33,368 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:17:33,370 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:17:33,372 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:17:33,375 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:17:33,377 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:17:33,379 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:17:33,382 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:17:33,384 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:17:33,386 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:17:33,389 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:17:33,391 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:17:33,393 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:17:33,396 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:17:33,398 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:17:33,400 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:17:33,402 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:17:33,405 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:17:33,407 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:17:33,409 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:17:33,412 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:17:33,414 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:17:33,416 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:17:33,418 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:17:33,421 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:17:33,423 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:17:33,425 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:17:33,428 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:17:33,430 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:17:33,432 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:17:33,435 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:17:33,437 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:17:33,439 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:17:33,441 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:17:33,444 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:17:33,446 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:17:33,448 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:17:33,451 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:17:33,453 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:17:33,455 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:17:33,457 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:17:33,460 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:17:33,462 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:17:33,464 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:17:33,467 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:17:33,469 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:17:33,471 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:17:33,474 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:17:33,476 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:17:33,478 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:17:33,480 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:17:33,483 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:17:33,485 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:17:33,487 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:17:33,490 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:17:33,492 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:17:33,494 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:17:33,497 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:17:33,499 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:17:33,501 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:17:33,504 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:17:33,506 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:17:33,508 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:17:33,510 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:17:33,514 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:17:33,516 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:17:33,518 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:17:33,521 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:17:33,523 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:17:33,526 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:17:33,529 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:17:33,531 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:17:33,533 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:17:33,536 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:17:33,538 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:17:33,541 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:17:33,543 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:17:33,545 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:17:33,548 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:17:33,550 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:17:33,553 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:17:33,555 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:17:33,558 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:17:33,560 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:17:33,563 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:17:33,565 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:17:33,567 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:17:33,570 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:17:33,573 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:17:33,575 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:17:33,577 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:17:33,580 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:17:33,582 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:17:33,587 [DEBUG] django.db.backends: (0.003) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE `theme_theme_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:17:33,732 [DEBUG] django.db.backends: (0.134) SELECT `organiser_organiser_translation`.`id`, `organiser_organiser_translation`.`name`, `organiser_organiser_translation`.`specialization`, `organiser_organiser_translation`.`description`, `organiser_organiser_translation`.`representation`, `organiser_organiser_translation`.`address_inf`, `organiser_organiser_translation`.`title`, `organiser_organiser_translation`.`descriptions`, `organiser_organiser_translation`.`keywords`, `organiser_organiser_translation`.`language_code`, `organiser_organiser_translation`.`master_id`, `organiser_organiser`.`id`, `organiser_organiser`.`url`, `organiser_organiser`.`country_id`, `organiser_organiser`.`city_id`, `organiser_organiser`.`address`, `organiser_organiser`.`logo`, `organiser_organiser`.`rating`, `organiser_organiser`.`phone`, `organiser_organiser`.`fax`, `organiser_organiser`.`web_page`, `organiser_organiser`.`email`, `organiser_organiser`.`facebook`, `organiser_organiser`.`twitter`, `organiser_organiser`.`linkedin`, `organiser_organiser`.`vk`, `organiser_organiser`.`foundation`, `organiser_organiser`.`events_number`, `organiser_organiser`.`staff_number`, `organiser_organiser`.`created`, `organiser_organiser`.`modified`, `organiser_organiser`.`active` FROM `organiser_organiser_translation` LEFT OUTER JOIN `organiser_organiser` ON (`organiser_organiser_translation`.`master_id` = `organiser_organiser`.`id`) WHERE `organiser_organiser_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:17:34,110 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:17:34,121 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:17:34,123 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:17:34,126 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:17:34,128 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:17:34,130 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:17:34,133 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:17:34,135 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:17:34,137 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:17:34,140 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:17:34,142 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:17:34,145 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:17:34,147 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:17:34,150 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:17:34,152 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:17:34,155 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:17:34,157 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:17:34,160 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:17:34,162 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:17:34,165 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:17:34,167 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:17:34,170 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:17:34,172 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:17:34,175 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:17:34,177 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:17:34,180 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:17:34,182 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:17:34,184 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:17:34,187 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:17:34,189 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:17:34,192 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:17:34,194 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:17:34,196 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:17:34,199 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:17:34,201 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:17:34,203 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:17:34,206 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:17:34,208 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:17:34,211 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:17:34,213 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:17:34,215 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:17:34,218 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:17:34,220 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:17:34,223 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:17:34,225 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:17:34,227 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:17:34,230 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:17:34,232 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:17:34,235 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:17:34,237 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:17:34,240 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:17:34,242 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:17:34,244 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:17:34,247 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:17:34,249 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:17:34,252 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:17:34,254 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:17:34,256 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:17:34,259 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:17:34,261 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:17:34,264 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:17:34,266 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:17:34,268 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:17:34,271 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:17:34,273 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:17:34,275 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:17:34,278 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:17:34,280 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:17:34,283 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:17:34,285 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:17:34,287 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:17:34,290 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:17:34,292 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:17:34,294 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:17:34,297 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:17:34,299 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:17:34,302 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:17:34,304 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:17:34,306 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:17:34,309 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:17:34,311 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:17:34,314 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:17:34,316 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:17:34,318 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:17:34,321 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:17:34,323 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:17:34,326 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:17:34,328 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:17:34,330 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:17:34,333 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:17:34,335 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:17:34,338 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:17:34,340 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:17:34,342 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:17:34,345 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:17:34,347 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:17:34,350 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:17:34,352 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:17:34,354 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:17:34,357 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:17:34,359 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:17:34,370 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:17:34,373 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:17:34,375 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:17:34,378 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:17:34,380 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:17:34,382 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:17:34,385 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:17:34,387 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:17:34,390 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:17:34,392 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:17:34,394 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:17:34,397 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:17:34,399 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:17:34,401 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:17:34,404 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:17:34,406 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:17:34,408 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:17:34,411 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:17:34,413 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:17:34,416 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:17:34,418 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:17:34,420 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:17:34,423 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:17:34,425 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:17:34,427 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:17:34,430 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:17:34,432 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:17:34,435 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:17:34,437 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:17:34,439 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:17:34,442 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:17:34,444 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:17:34,446 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:17:34,449 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:17:34,451 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:17:34,453 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:17:34,456 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:17:34,458 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:17:34,460 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:17:34,463 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:17:34,465 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:17:34,467 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:17:34,470 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:17:34,472 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:17:34,474 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:17:34,477 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:17:34,479 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:17:34,481 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:17:34,484 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:17:34,486 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:17:34,488 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:17:34,491 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:17:34,493 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:17:34,495 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:17:34,498 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:17:34,500 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:17:34,502 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:17:34,505 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:17:34,507 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:17:34,509 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:17:34,512 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:17:34,514 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:17:34,517 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:17:34,519 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:17:34,521 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:17:34,524 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:17:34,526 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:17:34,528 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:17:34,531 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:17:34,533 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:17:34,535 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:17:34,538 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:17:34,540 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:17:34,542 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:17:34,545 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:17:34,547 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:17:34,550 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:17:34,552 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:17:34,554 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:17:34,557 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:17:34,559 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:17:34,561 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:17:34,564 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:17:34,566 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:17:34,568 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:17:34,571 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:17:34,573 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:17:34,575 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:17:34,578 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:17:34,580 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:17:34,582 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:17:34,585 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:17:34,587 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:17:34,589 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:17:34,592 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:17:34,594 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:17:34,597 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:17:34,599 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:17:34,601 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:17:34,604 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:17:34,607 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:17:34,609 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:17:34,611 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:17:34,614 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:17:34,616 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:17:34,665 [DEBUG] django.db.backends: (0.003) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE `theme_theme_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:17:34,777 [DEBUG] django.db.backends: (0.000) SELECT `place_conference_placeconference_translation`.`id`, `place_conference_placeconference_translation`.`name`, `place_conference_placeconference_translation`.`main_title`, `place_conference_placeconference_translation`.`description`, `place_conference_placeconference_translation`.`adress`, `place_conference_placeconference_translation`.`hall_capacity`, `place_conference_placeconference_translation`.`title`, `place_conference_placeconference_translation`.`descriptions`, `place_conference_placeconference_translation`.`keywords`, `place_conference_placeconference_translation`.`total_year_action`, `place_conference_placeconference_translation`.`language_code`, `place_conference_placeconference_translation`.`master_id`, `place_conference_placeconference`.`id`, `place_conference_placeconference`.`url`, `place_conference_placeconference`.`country_id`, `place_conference_placeconference`.`city_id`, `place_conference_placeconference`.`type`, `place_conference_placeconference`.`address`, `place_conference_placeconference`.`phone`, `place_conference_placeconference`.`fax`, `place_conference_placeconference`.`web_page`, `place_conference_placeconference`.`email`, `place_conference_placeconference`.`foundation_year`, `place_conference_placeconference`.`total_capacity`, `place_conference_placeconference`.`amount_halls`, `place_conference_placeconference`.`exposition_hall`, `place_conference_placeconference`.`exp_hall_area`, `place_conference_placeconference`.`video_link`, `place_conference_placeconference`.`wifi`, `place_conference_placeconference`.`multimedia_equipment`, `place_conference_placeconference`.`conference_call`, `place_conference_placeconference`.`translate_equipment`, `place_conference_placeconference`.`banquet_hall`, `place_conference_placeconference`.`catering`, `place_conference_placeconference`.`hotel`, `place_conference_placeconference`.`created`, `place_conference_placeconference`.`modified`, `place_conference_placeconference`.`views` FROM `place_conference_placeconference_translation` LEFT OUTER JOIN `place_conference_placeconference` ON (`place_conference_placeconference_translation`.`master_id` = `place_conference_placeconference`.`id`) WHERE `place_conference_placeconference_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:17:34,919 [DEBUG] django.db.backends: (0.140) SELECT `organiser_organiser_translation`.`id`, `organiser_organiser_translation`.`name`, `organiser_organiser_translation`.`specialization`, `organiser_organiser_translation`.`description`, `organiser_organiser_translation`.`representation`, `organiser_organiser_translation`.`address_inf`, `organiser_organiser_translation`.`title`, `organiser_organiser_translation`.`descriptions`, `organiser_organiser_translation`.`keywords`, `organiser_organiser_translation`.`language_code`, `organiser_organiser_translation`.`master_id`, `organiser_organiser`.`id`, `organiser_organiser`.`url`, `organiser_organiser`.`country_id`, `organiser_organiser`.`city_id`, `organiser_organiser`.`address`, `organiser_organiser`.`logo`, `organiser_organiser`.`rating`, `organiser_organiser`.`phone`, `organiser_organiser`.`fax`, `organiser_organiser`.`web_page`, `organiser_organiser`.`email`, `organiser_organiser`.`facebook`, `organiser_organiser`.`twitter`, `organiser_organiser`.`linkedin`, `organiser_organiser`.`vk`, `organiser_organiser`.`foundation`, `organiser_organiser`.`events_number`, `organiser_organiser`.`staff_number`, `organiser_organiser`.`created`, `organiser_organiser`.`modified`, `organiser_organiser`.`active` FROM `organiser_organiser_translation` LEFT OUTER JOIN `organiser_organiser` ON (`organiser_organiser_translation`.`master_id` = `organiser_organiser`.`id`) WHERE `organiser_organiser_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:17:35,299 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:17:35,310 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:17:35,312 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:17:35,315 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:17:35,317 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:17:35,319 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:17:35,322 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:17:35,324 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:17:35,326 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:17:35,329 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:17:35,331 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:17:35,333 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:17:35,336 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:17:35,338 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:17:35,340 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:17:35,343 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:17:35,345 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:17:35,348 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:17:35,350 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:17:35,352 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:17:35,355 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:17:35,357 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:17:35,359 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:17:35,362 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:17:35,364 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:17:35,367 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:17:35,369 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:17:35,371 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:17:35,374 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:17:35,376 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:17:35,379 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:17:35,381 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:17:35,383 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:17:35,386 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:17:35,388 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:17:35,390 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:17:35,393 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:17:35,395 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:17:35,398 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:17:35,400 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:17:35,402 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:17:35,405 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:17:35,407 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:17:35,410 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:17:35,412 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:17:35,414 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:17:35,417 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:17:35,419 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:17:35,422 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:17:35,424 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:17:35,426 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:17:35,429 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:17:35,431 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:17:35,434 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:17:35,436 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:17:35,439 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:17:35,441 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:17:35,444 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:17:35,446 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:17:35,448 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:17:35,451 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:17:35,453 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:17:35,455 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:17:35,458 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:17:35,460 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:17:35,463 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:17:35,465 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:17:35,467 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:17:35,470 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:17:35,472 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:17:35,475 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:17:35,477 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:17:35,479 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:17:35,482 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:17:35,484 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:17:35,487 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:17:35,489 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:17:35,492 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:17:35,494 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:17:35,497 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:17:35,499 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:17:35,501 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:17:35,504 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:17:35,506 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:17:35,508 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:17:35,511 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:17:35,513 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:17:35,516 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:17:35,518 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:17:35,520 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:17:35,523 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:17:35,525 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:17:35,527 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:17:35,530 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:17:35,532 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:17:35,535 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:17:35,537 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:17:35,539 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:17:35,542 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:17:35,544 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:17:35,547 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:17:35,558 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:17:35,560 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:17:35,562 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:17:35,565 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:17:35,567 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:17:35,569 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:17:35,572 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:17:35,574 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:17:35,576 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:17:35,579 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:17:35,581 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:17:35,584 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:17:35,586 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:17:35,588 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:17:35,591 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:17:35,593 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:17:35,595 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:17:35,598 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:17:35,600 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:17:35,603 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:17:35,605 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:17:35,607 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:17:35,610 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:17:35,612 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:17:35,615 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:17:35,617 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:17:35,620 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:17:35,622 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:17:35,625 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:17:35,627 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:17:35,630 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:17:35,632 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:17:35,634 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:17:35,637 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:17:35,639 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:17:35,641 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:17:35,644 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:17:35,646 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:17:35,648 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:17:35,651 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:17:35,653 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:17:35,655 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:17:35,658 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:17:35,660 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:17:35,662 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:17:35,665 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:17:35,667 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:17:35,669 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:17:35,672 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:17:35,674 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:17:35,677 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:17:35,679 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:17:35,681 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:17:35,683 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:17:35,686 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:17:35,688 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:17:35,690 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:17:35,693 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:17:35,695 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:17:35,697 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:17:35,700 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:17:35,702 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:17:35,704 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:17:35,707 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:17:35,709 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:17:35,711 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:17:35,713 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:17:35,716 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:17:35,718 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:17:35,720 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:17:35,723 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:17:35,725 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:17:35,727 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:17:35,730 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:17:35,732 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:17:35,734 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:17:35,736 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:17:35,739 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:17:35,741 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:17:35,743 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:17:35,746 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:17:35,748 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:17:35,750 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:17:35,752 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:17:35,755 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:17:35,757 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:17:35,759 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:17:35,762 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:17:35,764 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:17:35,766 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:17:35,769 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:17:35,771 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:17:35,773 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:17:35,776 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:17:35,778 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:17:35,780 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:17:35,782 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:17:35,789 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:17:35,791 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:17:35,793 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:17:35,796 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:17:35,798 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:17:35,801 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:17:35,803 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:17:35,805 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:17:35,809 [DEBUG] django.db.backends: (0.003) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE `theme_theme_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:17:35,832 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:17:35,843 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:17:35,845 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:17:35,847 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:17:35,850 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:17:35,852 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:17:35,854 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:17:35,857 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:17:35,859 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:17:35,861 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:17:35,864 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:17:35,866 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:17:35,868 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:17:35,870 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:17:35,873 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:17:35,875 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:17:35,877 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:17:35,880 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:17:35,882 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:17:35,884 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:17:35,887 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:17:35,889 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:17:35,891 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:17:35,893 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:17:35,896 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:17:35,898 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:17:35,900 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:17:35,903 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:17:35,905 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:17:35,907 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:17:35,910 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:17:35,912 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:17:35,915 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:17:35,917 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:17:35,919 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:17:35,922 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:17:35,924 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:17:35,926 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:17:35,929 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:17:35,931 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:17:35,933 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:17:35,935 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:17:35,938 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:17:35,940 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:17:35,942 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:17:35,945 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:17:35,947 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:17:35,949 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:17:35,951 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:17:35,954 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:17:35,956 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:17:35,958 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:17:35,961 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:17:35,963 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:17:35,966 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:17:35,968 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:17:35,970 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:17:35,972 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:17:35,975 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:17:35,977 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:17:35,979 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:17:35,982 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:17:35,984 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:17:35,986 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:17:35,989 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:17:35,991 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:17:35,993 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:17:35,996 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:17:35,999 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:17:36,001 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:17:36,004 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:17:36,007 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:17:36,010 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:17:36,013 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:17:36,016 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:17:36,018 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:17:36,020 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:17:36,022 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:17:36,025 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:17:36,027 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:17:36,029 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:17:36,032 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:17:36,034 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:17:36,036 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:17:36,038 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:17:36,041 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:17:36,043 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:17:36,045 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:17:36,047 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:17:36,050 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:17:36,052 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:17:36,054 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:17:36,056 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:17:36,059 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:17:36,061 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:17:36,063 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:17:36,065 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:17:36,068 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:17:36,070 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:17:36,072 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:17:36,074 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:17:36,085 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:17:36,087 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:17:36,089 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:17:36,092 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:17:36,094 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:17:36,096 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:17:36,098 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:17:36,101 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:17:36,103 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:17:36,105 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:17:36,107 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:17:36,110 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:17:36,112 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:17:36,114 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:17:36,116 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:17:36,119 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:17:36,121 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:17:36,123 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:17:36,125 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:17:36,128 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:17:36,130 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:17:36,132 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:17:36,134 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:17:36,137 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:17:36,139 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:17:36,141 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:17:36,143 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:17:36,146 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:17:36,148 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:17:36,150 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:17:36,152 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:17:36,155 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:17:36,157 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:17:36,159 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:17:36,161 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:17:36,164 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:17:36,166 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:17:36,168 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:17:36,170 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:17:36,173 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:17:36,175 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:17:36,177 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:17:36,179 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:17:36,182 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:17:36,184 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:17:36,186 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:17:36,188 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:17:36,191 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:17:36,193 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:17:36,195 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:17:36,197 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:17:36,200 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:17:36,202 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:17:36,204 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:17:36,206 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:17:36,209 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:17:36,211 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:17:36,213 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:17:36,215 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:17:36,218 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:17:36,220 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:17:36,222 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:17:36,225 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:17:36,227 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:17:36,229 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:17:36,232 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:17:36,234 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:17:36,236 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:17:36,238 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:17:36,241 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:17:36,243 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:17:36,245 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:17:36,247 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:17:36,250 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:17:36,252 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:17:36,254 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:17:36,256 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:17:36,259 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:17:36,261 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:17:36,263 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:17:36,265 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:17:36,268 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:17:36,270 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:17:36,272 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:17:36,275 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:17:36,277 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:17:36,279 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:17:36,281 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:17:36,284 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:17:36,286 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:17:36,288 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:17:36,290 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:17:36,293 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:17:36,295 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:17:36,297 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:17:36,299 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:17:36,302 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:17:36,304 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:17:36,306 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:17:36,308 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:17:36,311 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:17:36,314 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:17:36,316 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:17:36,318 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:17:36,320 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:17:36,325 [DEBUG] django.db.backends: (0.003) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE `theme_theme_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:17:36,394 [DEBUG] django.db.backends: (0.059) SELECT `place_exposition_placeexposition_translation`.`id`, `place_exposition_placeexposition_translation`.`name`, `place_exposition_placeexposition_translation`.`main_title`, `place_exposition_placeexposition_translation`.`description`, `place_exposition_placeexposition_translation`.`adress`, `place_exposition_placeexposition_translation`.`title`, `place_exposition_placeexposition_translation`.`descriptions`, `place_exposition_placeexposition_translation`.`keywords`, `place_exposition_placeexposition_translation`.`total_year_action`, `place_exposition_placeexposition_translation`.`language_code`, `place_exposition_placeexposition_translation`.`master_id`, `place_exposition_placeexposition`.`id`, `place_exposition_placeexposition`.`url`, `place_exposition_placeexposition`.`country_id`, `place_exposition_placeexposition`.`city_id`, `place_exposition_placeexposition`.`photogallery_id`, `place_exposition_placeexposition`.`type`, `place_exposition_placeexposition`.`address`, `place_exposition_placeexposition`.`phone`, `place_exposition_placeexposition`.`fax`, `place_exposition_placeexposition`.`web_page`, `place_exposition_placeexposition`.`email`, `place_exposition_placeexposition`.`foundation_year`, `place_exposition_placeexposition`.`event_in_year`, `place_exposition_placeexposition`.`total_area`, `place_exposition_placeexposition`.`closed_area`, `place_exposition_placeexposition`.`open_area`, `place_exposition_placeexposition`.`total_pavilions`, `place_exposition_placeexposition`.`total_halls`, `place_exposition_placeexposition`.`virtual_tour`, `place_exposition_placeexposition`.`wifi`, `place_exposition_placeexposition`.`bank`, `place_exposition_placeexposition`.`children_room`, `place_exposition_placeexposition`.`disabled_service`, `place_exposition_placeexposition`.`conference_centre`, `place_exposition_placeexposition`.`business_centre`, `place_exposition_placeexposition`.`online_registration`, `place_exposition_placeexposition`.`cafe`, `place_exposition_placeexposition`.`terminals`, `place_exposition_placeexposition`.`parking`, `place_exposition_placeexposition`.`press_centre`, `place_exposition_placeexposition`.`mobile_application`, `place_exposition_placeexposition`.`logo`, `place_exposition_placeexposition`.`rating`, `place_exposition_placeexposition`.`partner`, `place_exposition_placeexposition`.`created`, `place_exposition_placeexposition`.`modified`, `place_exposition_placeexposition`.`views`, `place_exposition_placeexposition`.`is_published` FROM `place_exposition_placeexposition_translation` LEFT OUTER JOIN `place_exposition_placeexposition` ON (`place_exposition_placeexposition_translation`.`master_id` = `place_exposition_placeexposition`.`id`) WHERE `place_exposition_placeexposition_translation`.`language_code` = 'ru' ORDER BY `place_exposition_placeexposition`.`rating` DESC, `place_exposition_placeexposition_translation`.`master_id` ASC; args=('ru',) +2015-07-28 11:17:36,560 [DEBUG] django.db.backends: (0.000) SELECT `place_conference_placeconference_translation`.`id`, `place_conference_placeconference_translation`.`name`, `place_conference_placeconference_translation`.`main_title`, `place_conference_placeconference_translation`.`description`, `place_conference_placeconference_translation`.`adress`, `place_conference_placeconference_translation`.`hall_capacity`, `place_conference_placeconference_translation`.`title`, `place_conference_placeconference_translation`.`descriptions`, `place_conference_placeconference_translation`.`keywords`, `place_conference_placeconference_translation`.`total_year_action`, `place_conference_placeconference_translation`.`language_code`, `place_conference_placeconference_translation`.`master_id`, `place_conference_placeconference`.`id`, `place_conference_placeconference`.`url`, `place_conference_placeconference`.`country_id`, `place_conference_placeconference`.`city_id`, `place_conference_placeconference`.`type`, `place_conference_placeconference`.`address`, `place_conference_placeconference`.`phone`, `place_conference_placeconference`.`fax`, `place_conference_placeconference`.`web_page`, `place_conference_placeconference`.`email`, `place_conference_placeconference`.`foundation_year`, `place_conference_placeconference`.`total_capacity`, `place_conference_placeconference`.`amount_halls`, `place_conference_placeconference`.`exposition_hall`, `place_conference_placeconference`.`exp_hall_area`, `place_conference_placeconference`.`video_link`, `place_conference_placeconference`.`wifi`, `place_conference_placeconference`.`multimedia_equipment`, `place_conference_placeconference`.`conference_call`, `place_conference_placeconference`.`translate_equipment`, `place_conference_placeconference`.`banquet_hall`, `place_conference_placeconference`.`catering`, `place_conference_placeconference`.`hotel`, `place_conference_placeconference`.`created`, `place_conference_placeconference`.`modified`, `place_conference_placeconference`.`views` FROM `place_conference_placeconference_translation` LEFT OUTER JOIN `place_conference_placeconference` ON (`place_conference_placeconference_translation`.`master_id` = `place_conference_placeconference`.`id`) WHERE `place_conference_placeconference_translation`.`language_code` = 'ru' ORDER BY `place_conference_placeconference_translation`.`name` ASC; args=('ru',) +2015-07-28 11:17:36,574 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:17:36,584 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:17:36,586 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:17:36,588 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:17:36,591 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:17:36,593 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:17:36,595 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:17:36,597 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:17:36,600 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:17:36,602 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:17:36,604 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:17:36,606 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:17:36,609 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:17:36,611 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:17:36,613 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:17:36,615 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:17:36,618 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:17:36,620 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:17:36,622 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:17:36,624 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:17:36,627 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:17:36,629 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:17:36,631 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:17:36,633 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:17:36,636 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:17:36,638 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:17:36,640 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:17:36,642 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:17:36,645 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:17:36,647 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:17:36,649 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:17:36,651 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:17:36,654 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:17:36,656 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:17:36,658 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:17:36,660 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:17:36,663 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:17:36,665 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:17:36,667 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:17:36,670 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:17:36,672 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:17:36,674 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:17:36,676 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:17:36,679 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:17:36,681 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:17:36,683 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:17:36,685 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:17:36,688 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:17:36,690 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:17:36,692 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:17:36,695 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:17:36,699 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:17:36,701 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:17:36,703 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:17:36,705 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:17:36,708 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:17:36,710 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:17:36,712 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:17:36,715 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:17:36,717 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:17:36,719 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:17:36,722 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:17:36,724 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:17:36,726 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:17:36,730 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:17:36,733 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:17:36,735 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:17:36,737 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:17:36,740 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:17:36,742 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:17:36,744 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:17:36,747 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:17:36,749 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:17:36,751 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:17:36,754 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:17:36,756 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:17:36,758 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:17:36,760 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:17:36,763 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:17:36,765 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:17:36,767 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:17:36,770 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:17:36,772 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:17:36,775 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:17:36,777 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:17:36,779 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:17:36,782 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:17:36,784 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:17:36,786 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:17:36,789 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:17:36,791 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:17:36,793 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:17:36,796 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:17:36,798 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:17:36,800 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:17:36,802 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:17:36,805 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:17:36,807 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:17:36,810 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:17:36,812 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:17:36,814 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:17:36,825 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:17:36,827 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:17:36,829 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:17:36,832 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:17:36,834 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:17:36,837 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:17:36,839 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:17:36,841 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:17:36,844 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:17:36,846 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:17:36,848 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:17:36,851 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:17:36,853 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:17:36,855 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:17:36,858 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:17:36,860 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:17:36,862 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:17:36,865 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:17:36,867 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:17:36,869 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:17:36,872 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:17:36,874 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:17:36,876 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:17:36,879 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:17:36,881 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:17:36,883 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:17:36,886 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:17:36,888 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:17:36,890 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:17:36,893 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:17:36,895 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:17:36,897 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:17:36,900 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:17:36,902 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:17:36,905 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:17:36,907 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:17:36,909 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:17:36,912 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:17:36,914 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:17:36,916 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:17:36,919 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:17:36,921 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:17:36,923 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:17:36,926 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:17:36,928 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:17:36,930 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:17:36,933 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:17:36,935 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:17:36,937 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:17:36,939 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:17:36,942 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:17:36,944 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:17:36,946 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:17:36,949 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:17:36,951 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:17:36,953 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:17:36,956 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:17:36,958 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:17:36,960 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:17:36,963 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:17:36,965 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:17:36,967 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:17:36,970 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:17:36,972 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:17:36,974 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:17:36,977 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:17:36,979 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:17:36,981 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:17:36,984 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:17:36,986 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:17:36,988 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:17:36,991 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:17:36,993 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:17:36,996 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:17:36,998 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:17:37,000 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:17:37,003 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:17:37,005 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:17:37,007 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:17:37,010 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:17:37,012 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:17:37,014 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:17:37,017 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:17:37,019 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:17:37,021 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:17:37,024 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:17:37,026 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:17:37,028 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:17:37,031 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:17:37,033 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:17:37,035 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:17:37,038 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:17:37,040 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:17:37,042 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:17:37,045 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:17:37,047 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:17:37,049 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:17:37,052 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:17:37,054 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:17:37,056 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:17:37,059 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:17:37,061 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:17:37,064 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:17:37,066 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:17:37,069 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:17:37,079 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:17:37,102 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:17:37,105 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:17:37,107 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:17:37,110 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:17:37,112 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:17:37,114 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:17:37,117 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:17:37,119 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:17:37,122 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:17:37,124 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:17:37,126 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:17:37,129 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:17:37,131 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:17:37,133 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:17:37,136 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:17:37,138 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:17:37,140 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:17:37,143 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:17:37,145 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:17:37,147 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:17:37,150 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:17:37,152 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:17:37,154 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:17:37,157 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:17:37,159 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:17:37,161 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:17:37,164 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:17:37,166 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:17:37,169 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:17:37,171 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:17:37,173 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:17:37,176 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:17:37,178 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:17:37,181 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:17:37,183 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:17:37,185 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:17:37,188 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:17:37,190 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:17:37,192 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:17:37,195 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:17:37,197 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:17:37,199 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:17:37,202 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:17:37,204 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:17:37,206 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:17:37,209 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:17:37,211 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:17:37,213 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:17:37,216 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:17:37,218 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:17:37,220 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:17:37,223 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:17:37,225 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:17:37,228 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:17:37,230 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:17:37,232 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:17:37,235 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:17:37,237 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:17:37,239 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:17:37,242 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:17:37,244 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:17:37,246 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:17:37,249 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:17:37,251 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:17:37,253 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:17:37,256 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:17:37,258 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:17:37,260 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:17:37,263 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:17:37,265 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:17:37,267 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:17:37,270 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:17:37,272 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:17:37,274 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:17:37,277 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:17:37,279 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:17:37,281 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:17:37,284 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:17:37,286 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:17:37,289 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:17:37,291 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:17:37,293 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:17:37,296 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:17:37,298 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:17:37,300 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:17:37,303 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:17:37,305 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:17:37,307 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:17:37,310 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:17:37,312 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:17:37,314 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:17:37,317 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:17:37,319 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:17:37,321 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:17:37,324 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:17:37,326 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:17:37,328 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:17:37,331 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:17:37,333 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:17:37,335 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:17:37,338 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:17:37,340 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:17:37,342 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:17:37,345 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:17:37,347 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:17:37,349 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:17:37,352 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:17:37,354 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:17:37,356 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:17:37,359 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:17:37,361 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:17:37,363 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:17:37,366 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:17:37,368 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:17:37,370 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:17:37,373 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:17:37,375 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:17:37,377 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:17:37,380 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:17:37,382 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:17:37,384 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:17:37,387 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:17:37,389 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:17:37,392 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:17:37,394 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:17:37,396 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:17:37,399 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:17:37,401 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:17:37,403 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:17:37,406 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:17:37,408 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:17:37,410 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:17:37,413 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:17:37,415 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:17:37,418 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:17:37,420 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:17:37,423 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:17:37,425 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:17:37,427 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:17:37,430 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:17:37,432 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:17:37,434 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:17:37,437 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:17:37,439 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:17:37,441 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:17:37,443 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:17:37,446 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:17:37,448 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:17:37,450 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:17:37,453 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:17:37,455 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:17:37,457 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:17:37,460 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:17:37,462 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:17:37,464 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:17:37,467 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:17:37,469 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:17:37,471 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:17:37,473 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:17:37,476 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:17:37,478 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:17:37,480 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:17:37,483 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:17:37,485 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:17:37,487 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:17:37,490 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:17:37,492 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:17:37,495 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:17:37,497 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:17:37,499 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:17:37,502 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:17:37,504 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:17:37,506 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:17:37,509 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:17:37,511 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:17:37,513 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:17:37,516 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:17:37,518 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:17:37,520 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:17:37,522 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:17:37,525 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:17:37,527 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:17:37,529 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:17:37,532 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:17:37,534 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:17:37,536 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:17:37,539 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:17:37,541 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:17:37,543 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:17:37,546 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:17:37,548 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:17:37,550 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:17:37,553 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:17:37,555 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:17:37,557 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:17:37,559 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:17:37,562 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:17:37,564 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:17:37,566 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:17:37,569 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:17:37,571 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:17:37,573 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:17:37,576 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:17:37,578 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:17:37,580 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:17:37,608 [DEBUG] django.db.backends: (0.008) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:17:37,618 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:17:37,620 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:17:37,623 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:17:37,625 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:17:37,628 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:17:37,630 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:17:37,632 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:17:37,634 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:17:37,637 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:17:37,639 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:17:37,641 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:17:37,644 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:17:37,646 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:17:37,648 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:17:37,651 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:17:37,653 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:17:37,655 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:17:37,658 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:17:37,660 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:17:37,662 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:17:37,665 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:17:37,667 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:17:37,669 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:17:37,672 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:17:37,674 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:17:37,676 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:17:37,679 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:17:37,681 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:17:37,683 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:17:37,685 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:17:37,688 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:17:37,690 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:17:37,692 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:17:37,694 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:17:37,697 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:17:37,699 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:17:37,701 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:17:37,704 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:17:37,706 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:17:37,708 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:17:37,711 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:17:37,713 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:17:37,715 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:17:37,718 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:17:37,720 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:17:37,722 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:17:37,724 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:17:37,727 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:17:37,729 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:17:37,731 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:17:37,733 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:17:37,736 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:17:37,738 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:17:37,740 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:17:37,743 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:17:37,745 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:17:37,747 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:17:37,749 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:17:37,752 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:17:37,754 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:17:37,757 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:17:37,759 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:17:37,761 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:17:37,763 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:17:37,766 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:17:37,768 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:17:37,770 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:17:37,772 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:17:37,775 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:17:37,777 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:17:37,779 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:17:37,782 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:17:37,784 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:17:37,786 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:17:37,789 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:17:37,791 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:17:37,793 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:17:37,795 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:17:37,798 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:17:37,800 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:17:37,802 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:17:37,804 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:17:37,807 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:17:37,809 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:17:37,811 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:17:37,813 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:17:37,816 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:17:37,818 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:17:37,820 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:17:37,823 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:17:37,825 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:17:37,827 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:17:37,829 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:17:37,832 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:17:37,834 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:17:37,836 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:17:37,839 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:17:37,841 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:17:37,843 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:17:37,845 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:17:37,856 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:17:37,858 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:17:37,861 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:17:37,863 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:17:37,865 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:17:37,867 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:17:37,870 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:17:37,872 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:17:37,874 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:17:37,876 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:17:37,879 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:17:37,881 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:17:37,883 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:17:37,885 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:17:37,888 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:17:37,890 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:17:37,892 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:17:37,895 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:17:37,898 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:17:37,900 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:17:37,903 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:17:37,905 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:17:37,908 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:17:37,910 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:17:37,912 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:17:37,915 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:17:37,917 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:17:37,919 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:17:37,922 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:17:37,924 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:17:37,926 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:17:37,929 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:17:37,931 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:17:37,933 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:17:37,936 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:17:37,938 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:17:37,940 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:17:37,943 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:17:37,945 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:17:37,947 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:17:37,950 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:17:37,952 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:17:37,954 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:17:37,957 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:17:37,959 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:17:37,961 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:17:37,964 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:17:37,966 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:17:37,968 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:17:37,971 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:17:37,973 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:17:37,975 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:17:37,978 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:17:37,980 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:17:37,982 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:17:37,985 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:17:37,987 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:17:37,989 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:17:37,992 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:17:37,994 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:17:37,996 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:17:37,999 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:17:38,001 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:17:38,003 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:17:38,006 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:17:38,008 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:17:38,010 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:17:38,013 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:17:38,015 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:17:38,017 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:17:38,020 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:17:38,022 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:17:38,024 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:17:38,027 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:17:38,029 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:17:38,031 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:17:38,034 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:17:38,036 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:17:38,038 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:17:38,041 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:17:38,043 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:17:38,045 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:17:38,048 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:17:38,050 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:17:38,052 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:17:38,055 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:17:38,057 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:17:38,059 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:17:38,062 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:17:38,064 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:17:38,066 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:17:38,069 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:17:38,071 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:17:38,073 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:17:38,076 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:17:38,078 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:17:38,080 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:17:38,083 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:17:38,085 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:17:38,087 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:17:38,090 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:17:38,093 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:17:38,095 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:17:38,097 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:17:38,100 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:17:38,116 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:17:38,136 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:17:38,138 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:17:38,141 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:17:38,144 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:17:38,146 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:17:38,148 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:17:38,151 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:17:38,153 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:17:38,156 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:17:38,158 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:17:38,161 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:17:38,164 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:17:38,166 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:17:38,168 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:17:38,171 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:17:38,173 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:17:38,175 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:17:38,178 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:17:38,180 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:17:38,182 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:17:38,185 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:17:38,187 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:17:38,189 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:17:38,192 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:17:38,194 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:17:38,196 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:17:38,199 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:17:38,201 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:17:38,203 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:17:38,206 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:17:38,208 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:17:38,211 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:17:38,213 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:17:38,215 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:17:38,218 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:17:38,220 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:17:38,223 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:17:38,225 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:17:38,227 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:17:38,230 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:17:38,232 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:17:38,234 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:17:38,237 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:17:38,239 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:17:38,241 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:17:38,244 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:17:38,246 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:17:38,249 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:17:38,251 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:17:38,253 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:17:38,256 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:17:38,258 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:17:38,260 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:17:38,263 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:17:38,265 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:17:38,268 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:17:38,270 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:17:38,272 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:17:38,275 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:17:38,277 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:17:38,279 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:17:38,282 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:17:38,284 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:17:38,286 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:17:38,289 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:17:38,291 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:17:38,293 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:17:38,296 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:17:38,298 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:17:38,300 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:17:38,303 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:17:38,305 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:17:38,307 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:17:38,310 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:17:38,312 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:17:38,314 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:17:38,316 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:17:38,319 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:17:38,321 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:17:38,324 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:17:38,326 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:17:38,328 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:17:38,331 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:17:38,333 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:17:38,335 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:17:38,338 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:17:38,340 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:17:38,342 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:17:38,345 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:17:38,347 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:17:38,349 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:17:38,352 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:17:38,354 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:17:38,356 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:17:38,359 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:17:38,361 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:17:38,363 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:17:38,366 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:17:38,368 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:17:38,370 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:17:38,373 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:17:38,375 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:17:38,377 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:17:38,380 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:17:38,382 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:17:38,384 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:17:38,387 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:17:38,389 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:17:38,391 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:17:38,394 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:17:38,396 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:17:38,399 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:17:38,401 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:17:38,403 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:17:38,405 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:17:38,408 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:17:38,410 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:17:38,413 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:17:38,415 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:17:38,417 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:17:38,420 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:17:38,422 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:17:38,424 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:17:38,427 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:17:38,429 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:17:38,432 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:17:38,434 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:17:38,436 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:17:38,438 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:17:38,441 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:17:38,443 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:17:38,445 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:17:38,448 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:17:38,450 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:17:38,452 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:17:38,455 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:17:38,457 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:17:38,459 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:17:38,462 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:17:38,464 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:17:38,466 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:17:38,469 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:17:38,471 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:17:38,473 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:17:38,476 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:17:38,478 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:17:38,480 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:17:38,483 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:17:38,485 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:17:38,487 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:17:38,490 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:17:38,492 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:17:38,495 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:17:38,497 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:17:38,499 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:17:38,502 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:17:38,504 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:17:38,506 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:17:38,509 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:17:38,511 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:17:38,513 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:17:38,515 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:17:38,518 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:17:38,520 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:17:38,522 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:17:38,525 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:17:38,527 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:17:38,530 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:17:38,532 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:17:38,534 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:17:38,536 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:17:38,539 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:17:38,541 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:17:38,544 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:17:38,546 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:17:38,548 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:17:38,551 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:17:38,553 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:17:38,555 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:17:38,558 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:17:38,560 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:17:38,562 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:17:38,565 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:17:38,567 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:17:38,569 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:17:38,572 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:17:38,574 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:17:38,576 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:17:38,579 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:17:38,581 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:17:38,583 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:17:38,586 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:17:38,588 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:17:38,590 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:17:38,593 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:17:38,595 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:17:38,598 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:17:38,600 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:17:38,602 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:17:38,605 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:17:38,607 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:17:38,609 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:17:38,612 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:17:38,614 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:17:38,616 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:17:38,842 [DEBUG] django.db.backends: (0.000) SELECT `accounts_user`.`id`, `accounts_user`.`password`, `accounts_user`.`last_login`, `accounts_user`.`is_superuser`, `accounts_user`.`email`, `accounts_user`.`username`, `accounts_user`.`first_name`, `accounts_user`.`last_name`, `accounts_user`.`rating`, `accounts_user`.`url`, `accounts_user`.`is_active`, `accounts_user`.`is_staff`, `accounts_user`.`is_admin`, `accounts_user`.`date_joined`, `accounts_user`.`date_registered`, `accounts_user`.`date_modified`, `accounts_user`.`organiser_id`, `accounts_user`.`translator_id`, `accounts_user`.`company_id`, `accounts_user`.`position` FROM `accounts_user` WHERE `accounts_user`.`id` = 58304 ; args=(58304,) +2015-07-28 11:17:38,845 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `django_messages_message` WHERE (`django_messages_message`.`recipient_id` = 58304 AND `django_messages_message`.`read_at` IS NULL AND `django_messages_message`.`recipient_deleted_at` IS NULL); args=(58304,) +2015-07-28 11:17:38,851 [DEBUG] django.db.backends: (0.001) SELECT `article_article_translation`.`id`, `article_article_translation`.`main_title`, `article_article_translation`.`preview`, `article_article_translation`.`description`, `article_article_translation`.`title`, `article_article_translation`.`descriptions`, `article_article_translation`.`keywords`, `article_article_translation`.`language_code`, `article_article_translation`.`master_id`, `article_article`.`id`, `article_article`.`slug`, `article_article`.`old_id`, `article_article`.`logo`, `article_article`.`author_id`, `article_article`.`exposition_id`, `article_article`.`conference_id`, `article_article`.`type`, `article_article`.`allow_comments`, `article_article`.`publish_date`, `article_article`.`expiry_date`, `article_article`.`in_sitemap`, `article_article`.`main_page`, `article_article`.`main_page_time`, `article_article`.`gen_description`, `article_article`.`created`, `article_article`.`modified` FROM `article_article_translation` LEFT OUTER JOIN `article_article` ON (`article_article_translation`.`master_id` = `article_article`.`id`) WHERE (`article_article`.`type` = 1 AND `article_article`.`publish_date` IS NOT NULL AND `article_article_translation`.`language_code` = 'ru' ) ORDER BY `article_article`.`main_page` DESC, `article_article`.`publish_date` DESC LIMIT 3; args=(1, 'ru') +2015-07-28 11:17:38,857 [DEBUG] django.db.backends: (0.001) SELECT `article_article_translation`.`id`, `article_article_translation`.`main_title`, `article_article_translation`.`preview`, `article_article_translation`.`description`, `article_article_translation`.`title`, `article_article_translation`.`descriptions`, `article_article_translation`.`keywords`, `article_article_translation`.`language_code`, `article_article_translation`.`master_id`, `article_article`.`id`, `article_article`.`slug`, `article_article`.`old_id`, `article_article`.`logo`, `article_article`.`author_id`, `article_article`.`exposition_id`, `article_article`.`conference_id`, `article_article`.`type`, `article_article`.`allow_comments`, `article_article`.`publish_date`, `article_article`.`expiry_date`, `article_article`.`in_sitemap`, `article_article`.`main_page`, `article_article`.`main_page_time`, `article_article`.`gen_description`, `article_article`.`created`, `article_article`.`modified` FROM `article_article_translation` LEFT OUTER JOIN `article_article` ON (`article_article_translation`.`master_id` = `article_article`.`id`) WHERE (`article_article`.`type` = 2 AND `article_article`.`publish_date` IS NOT NULL AND `article_article_translation`.`language_code` = 'ru' ) ORDER BY `article_article`.`main_page` DESC, `article_article`.`publish_date` DESC LIMIT 3; args=(2, 'ru') +2015-07-28 11:17:38,890 [DEBUG] django.db.backends: (0.003) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE `theme_theme_translation`.`language_code` = 'ru' ORDER BY `theme_theme_translation`.`name` ASC; args=('ru',) +2015-07-28 11:17:38,961 [DEBUG] django.db.backends: (0.002) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment`, `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code`, `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id`, `city_city`.`id`, `city_city`.`services`, `city_city`.`url`, `city_city`.`old_url`, `city_city`.`inflect`, `city_city`.`country_id`, `city_city`.`code_IATA_id`, `city_city`.`population`, `city_city`.`phone_code`, `city_city`.`created`, `city_city`.`modified`, `city_city_translation`.`id`, `city_city_translation`.`name`, `city_city_translation`.`region`, `city_city_translation`.`transport`, `city_city_translation`.`description`, `city_city_translation`.`famous_places`, `city_city_translation`.`shoping`, `city_city_translation`.`title`, `city_city_translation`.`descriptions`, `city_city_translation`.`keywords`, `city_city_translation`.`language_code`, `city_city_translation`.`master_id`, `place_exposition_placeexposition`.`id`, `place_exposition_placeexposition`.`url`, `place_exposition_placeexposition`.`country_id`, `place_exposition_placeexposition`.`city_id`, `place_exposition_placeexposition`.`photogallery_id`, `place_exposition_placeexposition`.`type`, `place_exposition_placeexposition`.`address`, `place_exposition_placeexposition`.`phone`, `place_exposition_placeexposition`.`fax`, `place_exposition_placeexposition`.`web_page`, `place_exposition_placeexposition`.`email`, `place_exposition_placeexposition`.`foundation_year`, `place_exposition_placeexposition`.`event_in_year`, `place_exposition_placeexposition`.`total_area`, `place_exposition_placeexposition`.`closed_area`, `place_exposition_placeexposition`.`open_area`, `place_exposition_placeexposition`.`total_pavilions`, `place_exposition_placeexposition`.`total_halls`, `place_exposition_placeexposition`.`virtual_tour`, `place_exposition_placeexposition`.`wifi`, `place_exposition_placeexposition`.`bank`, `place_exposition_placeexposition`.`children_room`, `place_exposition_placeexposition`.`disabled_service`, `place_exposition_placeexposition`.`conference_centre`, `place_exposition_placeexposition`.`business_centre`, `place_exposition_placeexposition`.`online_registration`, `place_exposition_placeexposition`.`cafe`, `place_exposition_placeexposition`.`terminals`, `place_exposition_placeexposition`.`parking`, `place_exposition_placeexposition`.`press_centre`, `place_exposition_placeexposition`.`mobile_application`, `place_exposition_placeexposition`.`logo`, `place_exposition_placeexposition`.`rating`, `place_exposition_placeexposition`.`partner`, `place_exposition_placeexposition`.`created`, `place_exposition_placeexposition`.`modified`, `place_exposition_placeexposition`.`views`, `place_exposition_placeexposition`.`is_published`, `place_exposition_placeexposition_translation`.`id`, `place_exposition_placeexposition_translation`.`name`, `place_exposition_placeexposition_translation`.`main_title`, `place_exposition_placeexposition_translation`.`description`, `place_exposition_placeexposition_translation`.`adress`, `place_exposition_placeexposition_translation`.`title`, `place_exposition_placeexposition_translation`.`descriptions`, `place_exposition_placeexposition_translation`.`keywords`, `place_exposition_placeexposition_translation`.`total_year_action`, `place_exposition_placeexposition_translation`.`language_code`, `place_exposition_placeexposition_translation`.`master_id` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`main_page` = 1 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(1, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:17:38,968 [DEBUG] django.db.backends: (0.000) SELECT `django_content_type`.`id`, `django_content_type`.`name`, `django_content_type`.`app_label`, `django_content_type`.`model` FROM `django_content_type` WHERE (`django_content_type`.`model` = 'exposition' AND `django_content_type`.`app_label` = 'exposition' ); args=('exposition', u'exposition') +2015-07-28 11:17:38,971 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 7358 AND `file_filemodel`.`content_type_id` = 28 AND `file_filemodel`.`purpose` = 'preview' ); args=(7358, 28, 'preview') +2015-07-28 11:17:38,972 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [imgs/WIRE.png] at [220x220] +2015-07-28 11:17:38,977 [DEBUG] django.db.backends: (0.000) SELECT `accounts_calendar`.`id`, `accounts_calendar`.`user_id` FROM `accounts_calendar` WHERE `accounts_calendar`.`user_id` = 58304 ; args=(58304,) +2015-07-28 11:17:38,980 [DEBUG] django.db.backends: (0.000) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `accounts_calendar_expositions` ON (`exposition_exposition`.`id` = `accounts_calendar_expositions`.`exposition_id`) WHERE (`accounts_calendar_expositions`.`calendar_id` = 77974 AND `exposition_exposition_translation`.`language_code` = 'ru' ); args=(77974, 'ru') +2015-07-28 11:17:38,983 [DEBUG] django.db.backends: (0.000) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `accounts_calendar_expositions` ON (`exposition_exposition`.`id` = `accounts_calendar_expositions`.`exposition_id`) WHERE (`accounts_calendar_expositions`.`calendar_id` = 77974 AND `exposition_exposition_translation`.`language_code` = 'ru' ); args=(77974, 'ru') +2015-07-28 11:17:38,989 [DEBUG] django.db.backends: (0.000) SELECT `theme_tag_translation`.`id`, `theme_tag_translation`.`name`, `theme_tag_translation`.`main_title`, `theme_tag_translation`.`description`, `theme_tag_translation`.`title`, `theme_tag_translation`.`descriptions`, `theme_tag_translation`.`keywords`, `theme_tag_translation`.`language_code`, `theme_tag_translation`.`master_id`, `theme_tag`.`id`, `theme_tag`.`url`, `theme_tag`.`old_url`, `theme_tag`.`theme_id`, `theme_tag`.`inflect` FROM `theme_tag_translation` LEFT OUTER JOIN `theme_tag` ON (`theme_tag_translation`.`master_id` = `theme_tag`.`id`) LEFT OUTER JOIN `exposition_exposition_tag` ON (`theme_tag`.`id` = `exposition_exposition_tag`.`tag_id`) WHERE (`exposition_exposition_tag`.`exposition_id` = 7358 AND `theme_tag_translation`.`language_code` = 'ru' ) ORDER BY `theme_tag_translation`.`name` ASC; args=(7358, 'ru') +2015-07-28 11:17:38,993 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 7523 AND `file_filemodel`.`content_type_id` = 28 AND `file_filemodel`.`purpose` = 'preview' ); args=(7523, 28, 'preview') +2015-07-28 11:17:38,993 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [imgs/Rosupack.png] at [220x220] +2015-07-28 11:17:38,998 [DEBUG] django.db.backends: (0.000) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `accounts_calendar_expositions` ON (`exposition_exposition`.`id` = `accounts_calendar_expositions`.`exposition_id`) WHERE (`accounts_calendar_expositions`.`calendar_id` = 77974 AND `exposition_exposition_translation`.`language_code` = 'ru' ); args=(77974, 'ru') +2015-07-28 11:17:39,001 [DEBUG] django.db.backends: (0.000) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `accounts_calendar_expositions` ON (`exposition_exposition`.`id` = `accounts_calendar_expositions`.`exposition_id`) WHERE (`accounts_calendar_expositions`.`calendar_id` = 77974 AND `exposition_exposition_translation`.`language_code` = 'ru' ); args=(77974, 'ru') +2015-07-28 11:17:39,004 [DEBUG] django.db.backends: (0.000) SELECT `theme_tag_translation`.`id`, `theme_tag_translation`.`name`, `theme_tag_translation`.`main_title`, `theme_tag_translation`.`description`, `theme_tag_translation`.`title`, `theme_tag_translation`.`descriptions`, `theme_tag_translation`.`keywords`, `theme_tag_translation`.`language_code`, `theme_tag_translation`.`master_id`, `theme_tag`.`id`, `theme_tag`.`url`, `theme_tag`.`old_url`, `theme_tag`.`theme_id`, `theme_tag`.`inflect` FROM `theme_tag_translation` LEFT OUTER JOIN `theme_tag` ON (`theme_tag_translation`.`master_id` = `theme_tag`.`id`) LEFT OUTER JOIN `exposition_exposition_tag` ON (`theme_tag`.`id` = `exposition_exposition_tag`.`tag_id`) WHERE (`exposition_exposition_tag`.`exposition_id` = 7523 AND `theme_tag_translation`.`language_code` = 'ru' ) ORDER BY `theme_tag_translation`.`name` ASC; args=(7523, 'ru') +2015-07-28 11:17:39,008 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 8108 AND `file_filemodel`.`content_type_id` = 28 AND `file_filemodel`.`purpose` = 'preview' ); args=(8108, 28, 'preview') +2015-07-28 11:17:39,008 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [[]] at [220x220] +2015-07-28 11:17:39,012 [DEBUG] django.db.backends: (0.000) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `accounts_calendar_expositions` ON (`exposition_exposition`.`id` = `accounts_calendar_expositions`.`exposition_id`) WHERE (`accounts_calendar_expositions`.`calendar_id` = 77974 AND `exposition_exposition_translation`.`language_code` = 'ru' ); args=(77974, 'ru') +2015-07-28 11:17:39,015 [DEBUG] django.db.backends: (0.000) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `accounts_calendar_expositions` ON (`exposition_exposition`.`id` = `accounts_calendar_expositions`.`exposition_id`) WHERE (`accounts_calendar_expositions`.`calendar_id` = 77974 AND `exposition_exposition_translation`.`language_code` = 'ru' ); args=(77974, 'ru') +2015-07-28 11:17:39,018 [DEBUG] django.db.backends: (0.000) SELECT `theme_tag_translation`.`id`, `theme_tag_translation`.`name`, `theme_tag_translation`.`main_title`, `theme_tag_translation`.`description`, `theme_tag_translation`.`title`, `theme_tag_translation`.`descriptions`, `theme_tag_translation`.`keywords`, `theme_tag_translation`.`language_code`, `theme_tag_translation`.`master_id`, `theme_tag`.`id`, `theme_tag`.`url`, `theme_tag`.`old_url`, `theme_tag`.`theme_id`, `theme_tag`.`inflect` FROM `theme_tag_translation` LEFT OUTER JOIN `theme_tag` ON (`theme_tag_translation`.`master_id` = `theme_tag`.`id`) LEFT OUTER JOIN `exposition_exposition_tag` ON (`theme_tag`.`id` = `exposition_exposition_tag`.`tag_id`) WHERE (`exposition_exposition_tag`.`exposition_id` = 8108 AND `theme_tag_translation`.`language_code` = 'ru' ) ORDER BY `theme_tag_translation`.`name` ASC; args=(8108, 'ru') +2015-07-28 11:17:39,083 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE (`theme_theme`.`types` = (`theme_theme`.`types` | 1) AND `theme_theme_translation`.`language_code` = 'ru' ) ORDER BY `theme_theme`.`main_page` DESC LIMIT 6; args=('ru',) +2015-07-28 11:17:39,090 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `exposition_exposition_theme` ON (`exposition_exposition`.`id` = `exposition_exposition_theme`.`exposition_id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`is_published` = 1 AND `exposition_exposition`.`data_begin` >= '2015-07-28' AND `exposition_exposition_theme`.`theme_id` = 54 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 54, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:17:39,096 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `exposition_exposition_theme` ON (`exposition_exposition`.`id` = `exposition_exposition_theme`.`exposition_id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`is_published` = 1 AND `exposition_exposition`.`data_begin` >= '2015-07-28' AND `exposition_exposition_theme`.`theme_id` = 51 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 51, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:17:39,102 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `exposition_exposition_theme` ON (`exposition_exposition`.`id` = `exposition_exposition_theme`.`exposition_id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`is_published` = 1 AND `exposition_exposition`.`data_begin` >= '2015-07-28' AND `exposition_exposition_theme`.`theme_id` = 48 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 48, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:17:39,108 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `exposition_exposition_theme` ON (`exposition_exposition`.`id` = `exposition_exposition_theme`.`exposition_id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`is_published` = 1 AND `exposition_exposition`.`data_begin` >= '2015-07-28' AND `exposition_exposition_theme`.`theme_id` = 39 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 39, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:17:39,113 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `exposition_exposition_theme` ON (`exposition_exposition`.`id` = `exposition_exposition_theme`.`exposition_id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`is_published` = 1 AND `exposition_exposition`.`data_begin` >= '2015-07-28' AND `exposition_exposition_theme`.`theme_id` = 37 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 37, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:17:39,119 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `exposition_exposition_theme` ON (`exposition_exposition`.`id` = `exposition_exposition_theme`.`exposition_id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`is_published` = 1 AND `exposition_exposition`.`data_begin` >= '2015-07-28' AND `exposition_exposition_theme`.`theme_id` = 31 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 31, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:17:39,121 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE (`theme_theme`.`types` = (`theme_theme`.`types` | 2) AND `theme_theme_translation`.`language_code` = 'ru' ) ORDER BY `theme_theme`.`main_page` DESC LIMIT 6; args=('ru',) +2015-07-28 11:17:39,130 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `conference_conference_translation` LEFT OUTER JOIN `conference_conference` ON (`conference_conference_translation`.`master_id` = `conference_conference`.`id`) LEFT OUTER JOIN `conference_conference_theme` ON (`conference_conference`.`id` = `conference_conference_theme`.`conference_id`) LEFT OUTER JOIN `country_country` ON (`conference_conference`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`conference_conference`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_conference_placeconference` ON (`conference_conference`.`place_id` = `place_conference_placeconference`.`id`) LEFT OUTER JOIN `place_conference_placeconference_translation` ON (`place_conference_placeconference`.`id` = `place_conference_placeconference_translation`.`master_id`) WHERE (`conference_conference`.`is_published` = 1 AND `conference_conference`.`data_begin` >= '2015-07-28' AND `conference_conference_theme`.`theme_id` = 87 AND `conference_conference_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_conference_placeconference_translation`.`language_code` = 'ru' OR `place_conference_placeconference_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 87, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:17:39,136 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `conference_conference_translation` LEFT OUTER JOIN `conference_conference` ON (`conference_conference_translation`.`master_id` = `conference_conference`.`id`) LEFT OUTER JOIN `conference_conference_theme` ON (`conference_conference`.`id` = `conference_conference_theme`.`conference_id`) LEFT OUTER JOIN `country_country` ON (`conference_conference`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`conference_conference`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_conference_placeconference` ON (`conference_conference`.`place_id` = `place_conference_placeconference`.`id`) LEFT OUTER JOIN `place_conference_placeconference_translation` ON (`place_conference_placeconference`.`id` = `place_conference_placeconference_translation`.`master_id`) WHERE (`conference_conference`.`is_published` = 1 AND `conference_conference`.`data_begin` >= '2015-07-28' AND `conference_conference_theme`.`theme_id` = 84 AND `conference_conference_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_conference_placeconference_translation`.`language_code` = 'ru' OR `place_conference_placeconference_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 84, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:17:39,141 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `conference_conference_translation` LEFT OUTER JOIN `conference_conference` ON (`conference_conference_translation`.`master_id` = `conference_conference`.`id`) LEFT OUTER JOIN `conference_conference_theme` ON (`conference_conference`.`id` = `conference_conference_theme`.`conference_id`) LEFT OUTER JOIN `country_country` ON (`conference_conference`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`conference_conference`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_conference_placeconference` ON (`conference_conference`.`place_id` = `place_conference_placeconference`.`id`) LEFT OUTER JOIN `place_conference_placeconference_translation` ON (`place_conference_placeconference`.`id` = `place_conference_placeconference_translation`.`master_id`) WHERE (`conference_conference`.`is_published` = 1 AND `conference_conference`.`data_begin` >= '2015-07-28' AND `conference_conference_theme`.`theme_id` = 74 AND `conference_conference_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_conference_placeconference_translation`.`language_code` = 'ru' OR `place_conference_placeconference_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 74, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:17:39,147 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `conference_conference_translation` LEFT OUTER JOIN `conference_conference` ON (`conference_conference_translation`.`master_id` = `conference_conference`.`id`) LEFT OUTER JOIN `conference_conference_theme` ON (`conference_conference`.`id` = `conference_conference_theme`.`conference_id`) LEFT OUTER JOIN `country_country` ON (`conference_conference`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`conference_conference`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_conference_placeconference` ON (`conference_conference`.`place_id` = `place_conference_placeconference`.`id`) LEFT OUTER JOIN `place_conference_placeconference_translation` ON (`place_conference_placeconference`.`id` = `place_conference_placeconference_translation`.`master_id`) WHERE (`conference_conference`.`is_published` = 1 AND `conference_conference`.`data_begin` >= '2015-07-28' AND `conference_conference_theme`.`theme_id` = 70 AND `conference_conference_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_conference_placeconference_translation`.`language_code` = 'ru' OR `place_conference_placeconference_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 70, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:17:39,153 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `conference_conference_translation` LEFT OUTER JOIN `conference_conference` ON (`conference_conference_translation`.`master_id` = `conference_conference`.`id`) LEFT OUTER JOIN `conference_conference_theme` ON (`conference_conference`.`id` = `conference_conference_theme`.`conference_id`) LEFT OUTER JOIN `country_country` ON (`conference_conference`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`conference_conference`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_conference_placeconference` ON (`conference_conference`.`place_id` = `place_conference_placeconference`.`id`) LEFT OUTER JOIN `place_conference_placeconference_translation` ON (`place_conference_placeconference`.`id` = `place_conference_placeconference_translation`.`master_id`) WHERE (`conference_conference`.`is_published` = 1 AND `conference_conference`.`data_begin` >= '2015-07-28' AND `conference_conference_theme`.`theme_id` = 68 AND `conference_conference_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_conference_placeconference_translation`.`language_code` = 'ru' OR `place_conference_placeconference_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 68, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:17:39,159 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `conference_conference_translation` LEFT OUTER JOIN `conference_conference` ON (`conference_conference_translation`.`master_id` = `conference_conference`.`id`) LEFT OUTER JOIN `conference_conference_theme` ON (`conference_conference`.`id` = `conference_conference_theme`.`conference_id`) LEFT OUTER JOIN `country_country` ON (`conference_conference`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`conference_conference`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_conference_placeconference` ON (`conference_conference`.`place_id` = `place_conference_placeconference`.`id`) LEFT OUTER JOIN `place_conference_placeconference_translation` ON (`place_conference_placeconference`.`id` = `place_conference_placeconference_translation`.`master_id`) WHERE (`conference_conference`.`is_published` = 1 AND `conference_conference`.`data_begin` >= '2015-07-28' AND `conference_conference_theme`.`theme_id` = 54 AND `conference_conference_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_conference_placeconference_translation`.`language_code` = 'ru' OR `place_conference_placeconference_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 54, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:17:39,159 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [articles_preview/expomilano_2015_3.jpg] at [80x80] +2015-07-28 11:17:39,161 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [articles_preview/3dprint.jpg] at [80x80] +2015-07-28 11:17:39,162 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [articles_preview/rif.png] at [80x80] +2015-07-28 11:17:39,166 [DEBUG] django.db.backends: (0.000) SELECT `django_content_type`.`id`, `django_content_type`.`name`, `django_content_type`.`app_label`, `django_content_type`.`model` FROM `django_content_type` WHERE (`django_content_type`.`model` = 'article' AND `django_content_type`.`app_label` = 'article' ); args=('article', u'article') +2015-07-28 11:17:39,168 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 50 AND `file_filemodel`.`content_type_id` = 10 AND `file_filemodel`.`purpose` = 'preview' ); args=(50, 10, 'preview') +2015-07-28 11:17:39,170 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 50 AND `file_filemodel`.`content_type_id` = 10 AND `file_filemodel`.`purpose` = 'preview' ); args=(50, 10, 'preview') +2015-07-28 11:17:39,170 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [imgs/oborudovanie.png] at [220x100] +2015-07-28 11:17:39,173 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 48 AND `file_filemodel`.`content_type_id` = 10 AND `file_filemodel`.`purpose` = 'preview' ); args=(48, 10, 'preview') +2015-07-28 11:17:39,175 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 48 AND `file_filemodel`.`content_type_id` = 10 AND `file_filemodel`.`purpose` = 'preview' ); args=(48, 10, 'preview') +2015-07-28 11:17:39,175 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [imgs/strategii_reklami.png] at [220x100] +2015-07-28 11:17:39,178 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 40 AND `file_filemodel`.`content_type_id` = 10 AND `file_filemodel`.`purpose` = 'preview' ); args=(40, 10, 'preview') +2015-07-28 11:17:39,188 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:17:39,208 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:17:39,211 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:17:39,213 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:17:39,216 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:17:39,218 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:17:39,221 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:17:39,224 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:17:39,227 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:17:39,229 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:17:39,232 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:17:39,234 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:17:39,237 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:17:39,240 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:17:39,242 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:17:39,245 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:17:39,247 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:17:39,250 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:17:39,253 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:17:39,255 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:17:39,258 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:17:39,261 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:17:39,263 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:17:39,266 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:17:39,268 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:17:39,271 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:17:39,273 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:17:39,276 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:17:39,278 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:17:39,281 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:17:39,284 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:17:39,286 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:17:39,289 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:17:39,291 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:17:39,294 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:17:39,297 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:17:39,299 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:17:39,302 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:17:39,304 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:17:39,307 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:17:39,309 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:17:39,312 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:17:39,316 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:17:39,319 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:17:39,322 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:17:39,324 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:17:39,327 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:17:39,330 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:17:39,332 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:17:39,335 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:17:39,338 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:17:39,340 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:17:39,343 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:17:39,345 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:17:39,348 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:17:39,351 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:17:39,353 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:17:39,356 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:17:39,358 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:17:39,361 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:17:39,363 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:17:39,366 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:17:39,369 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:17:39,371 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:17:39,374 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:17:39,377 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:17:39,379 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:17:39,382 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:17:39,384 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:17:39,387 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:17:39,390 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:17:39,392 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:17:39,395 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:17:39,397 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:17:39,400 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:17:39,403 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:17:39,405 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:17:39,408 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:17:39,410 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:17:39,413 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:17:39,415 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:17:39,418 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:17:39,420 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:17:39,423 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:17:39,425 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:17:39,428 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:17:39,431 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:17:39,433 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:17:39,436 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:17:39,438 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:17:39,441 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:17:39,443 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:17:39,446 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:17:39,448 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:17:39,451 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:17:39,453 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:17:39,456 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:17:39,458 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:17:39,461 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:17:39,463 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:17:39,466 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:17:39,468 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:17:39,471 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:17:39,473 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:17:39,476 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:17:39,479 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:17:39,481 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:17:39,484 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:17:39,486 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:17:39,489 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:17:39,491 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:17:39,494 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:17:39,496 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:17:39,499 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:17:39,501 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:17:39,504 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:17:39,506 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:17:39,509 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:17:39,511 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:17:39,514 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:17:39,516 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:17:39,519 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:17:39,522 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:17:39,524 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:17:39,527 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:17:39,529 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:17:39,532 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:17:39,535 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:17:39,537 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:17:39,540 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:17:39,542 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:17:39,545 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:17:39,547 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:17:39,550 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:17:39,552 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:17:39,555 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:17:39,557 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:17:39,560 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:17:39,562 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:17:39,565 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:17:39,568 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:17:39,570 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:17:39,573 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:17:39,575 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:17:39,578 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:17:39,580 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:17:39,583 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:17:39,585 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:17:39,588 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:17:39,590 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:17:39,593 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:17:39,595 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:17:39,598 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:17:39,600 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:17:39,603 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:17:39,606 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:17:39,608 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:17:39,611 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:17:39,613 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:17:39,615 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:17:39,618 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:17:39,621 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:17:39,623 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:17:39,626 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:17:39,628 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:17:39,631 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:17:39,633 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:17:39,636 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:17:39,638 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:17:39,641 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:17:39,643 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:17:39,646 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:17:39,648 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:17:39,651 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:17:39,653 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:17:39,656 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:17:39,658 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:17:39,661 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:17:39,663 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:17:39,666 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:17:39,668 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:17:39,671 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:17:39,674 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:17:39,676 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:17:39,679 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:17:39,681 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:17:39,684 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:17:39,686 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:17:39,689 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:17:39,691 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:17:39,694 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:17:39,696 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:17:39,699 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:17:39,701 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:17:39,704 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:17:39,706 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:17:39,709 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:17:39,711 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:17:39,714 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:17:39,716 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:17:39,719 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:17:39,722 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:17:39,724 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:17:39,727 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:17:39,729 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:17:39,732 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:19:09,152 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:19:09,154 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:19:09,175 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:19:09,176 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:19:09,192 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:19:09,193 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:19:09,245 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:19:09,246 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:19:09,323 [DEBUG] django.db.backends: (0.002) SHOW TABLES; args=() +2015-07-28 11:19:09,324 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:19:09,334 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:19:09,336 [DEBUG] django.db.backends: (0.001) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:19:09,396 [DEBUG] django.db.backends: (0.001) SELECT DISTINCT `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect`, `theme_theme_translation`.`name` FROM `theme_theme` INNER JOIN `exposition_exposition_theme` ON (`theme_theme`.`id` = `exposition_exposition_theme`.`theme_id`) INNER JOIN `exposition_exposition` ON (`exposition_exposition_theme`.`exposition_id` = `exposition_exposition`.`id`) INNER JOIN `exposition_exposition_theme` T4 ON (`exposition_exposition`.`id` = T4.`exposition_id`) INNER JOIN `theme_theme` T5 ON (T4.`theme_id` = T5.`id`) INNER JOIN `theme_theme_translation` ON (`theme_theme`.`id` = `theme_theme_translation`.`master_id`) WHERE (T5.`id` IS NOT NULL AND `theme_theme_translation`.`language_code` = 'ru' ) ORDER BY `theme_theme_translation`.`name` ASC; args=('ru',) +2015-07-28 11:19:09,403 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 1 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:19:09,405 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 2 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:19:09,408 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 75 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:19:09,410 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 94 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:19:09,412 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 3 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:19:09,415 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 37 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:19:09,417 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 84 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:19:09,420 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 4 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:19:09,422 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 64 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:19:09,424 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 77 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:19:09,427 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 6 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:19:09,429 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 7 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:19:09,431 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 8 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:19:09,433 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 5 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:19:09,436 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 10 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:19:09,438 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 11 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:19:09,440 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 74 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:19:09,443 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 70 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:19:09,445 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 73 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:19:09,447 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 69 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:19:09,450 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 71 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:19:09,452 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 68 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:19:09,455 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 72 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:19:09,457 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 45 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:19:09,459 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 13 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:19:09,462 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 14 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:19:09,464 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 42 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:19:09,466 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 15 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:19:09,468 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 43 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:19:09,471 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 27 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:19:09,473 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 22 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:19:09,475 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 16 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:19:09,478 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 17 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:19:09,480 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 87 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:19:09,482 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 44 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:19:09,485 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 50 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:19:09,487 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 18 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:19:09,489 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 21 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:19:09,491 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 62 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:19:09,494 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 51 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:19:09,496 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 23 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:19:09,498 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 97 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:19:09,501 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 9 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:19:09,503 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 31 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:19:09,505 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 63 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:19:09,508 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 24 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:19:09,510 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 26 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:19:09,512 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 28 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:19:09,515 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 30 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:19:09,517 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 34 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:19:09,519 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 90 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:19:09,522 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 54 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:19:09,524 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 48 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:19:09,526 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 32 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:19:09,528 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 29 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:19:09,531 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 83 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:19:09,533 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 35 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:19:09,535 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 36 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:19:09,538 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 38 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:19:09,540 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 39 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:19:09,542 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 40 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:19:09,546 [DEBUG] django.db.backends: (0.000) SELECT `country_area_translation`.`id`, `country_area_translation`.`name`, `country_area_translation`.`language_code`, `country_area_translation`.`master_id`, `country_area`.`id` FROM `country_area_translation` LEFT OUTER JOIN `country_area` ON (`country_area_translation`.`master_id` = `country_area`.`id`) LEFT OUTER JOIN `country_area_translation` T3 ON (`country_area`.`id` = T3.`master_id`) WHERE `country_area_translation`.`language_code` = 'ru' ORDER BY T3.`name` ASC; args=('ru',) +2015-07-28 11:19:09,665 [DEBUG] django.db.backends: (0.000) SELECT `country_area_translation`.`id`, `country_area_translation`.`name`, `country_area_translation`.`language_code`, `country_area_translation`.`master_id`, `country_area`.`id` FROM `country_area_translation` LEFT OUTER JOIN `country_area` ON (`country_area_translation`.`master_id` = `country_area`.`id`) LEFT OUTER JOIN `country_area_translation` T3 ON (`country_area`.`id` = T3.`master_id`) WHERE `country_area_translation`.`language_code` = 'ru' ORDER BY T3.`name` ASC; args=('ru',) +2015-07-28 11:19:09,784 [DEBUG] django.db.backends: (0.003) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE `theme_theme_translation`.`language_code` = 'ru' ORDER BY `theme_theme_translation`.`name` ASC; args=('ru',) +2015-07-28 11:19:09,794 [DEBUG] django.db.backends: (0.000) SELECT `country_area_translation`.`id`, `country_area_translation`.`name`, `country_area_translation`.`language_code`, `country_area_translation`.`master_id`, `country_area`.`id` FROM `country_area_translation` LEFT OUTER JOIN `country_area` ON (`country_area_translation`.`master_id` = `country_area`.`id`) LEFT OUTER JOIN `country_area_translation` T3 ON (`country_area`.`id` = T3.`master_id`) WHERE `country_area_translation`.`language_code` = 'ru' ORDER BY T3.`name` ASC; args=('ru',) +2015-07-28 11:19:09,984 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:19:09,995 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:19:09,997 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:19:09,999 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:19:10,002 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:19:10,004 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:19:10,006 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:19:10,009 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:19:10,011 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:19:10,014 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:19:10,016 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:19:10,019 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:19:10,021 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:19:10,024 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:19:10,026 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:19:10,028 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:19:10,031 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:19:10,033 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:19:10,037 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:19:10,041 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:19:10,043 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:19:10,046 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:19:10,048 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:19:10,050 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:19:10,053 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:19:10,055 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:19:10,058 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:19:10,060 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:19:10,063 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:19:10,065 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:19:10,067 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:19:10,070 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:19:10,072 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:19:10,074 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:19:10,077 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:19:10,079 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:19:10,081 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:19:10,084 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:19:10,086 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:19:10,088 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:19:10,091 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:19:10,093 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:19:10,095 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:19:10,097 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:19:10,100 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:19:10,102 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:19:10,104 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:19:10,107 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:19:10,109 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:19:10,111 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:19:10,114 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:19:10,116 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:19:10,118 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:19:10,121 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:19:10,123 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:19:10,126 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:19:10,128 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:19:10,130 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:19:10,133 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:19:10,135 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:19:10,137 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:19:10,140 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:19:10,142 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:19:10,145 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:19:10,147 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:19:10,149 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:19:10,151 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:19:10,154 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:19:10,156 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:19:10,158 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:19:10,160 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:19:10,163 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:19:10,165 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:19:10,167 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:19:10,169 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:19:10,172 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:19:10,174 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:19:10,176 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:19:10,178 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:19:10,181 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:19:10,183 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:19:10,185 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:19:10,187 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:19:10,190 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:19:10,192 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:19:10,194 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:19:10,196 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:19:10,199 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:19:10,201 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:19:10,203 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:19:10,205 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:19:10,208 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:19:10,210 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:19:10,212 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:19:10,214 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:19:10,217 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:19:10,219 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:19:10,221 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:19:10,226 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:19:10,228 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:19:10,230 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:19:10,241 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:19:10,243 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:19:10,245 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:19:10,248 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:19:10,250 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:19:10,252 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:19:10,255 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:19:10,257 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:19:10,259 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:19:10,262 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:19:10,264 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:19:10,267 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:19:10,269 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:19:10,271 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:19:10,274 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:19:10,276 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:19:10,278 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:19:10,281 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:19:10,283 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:19:10,286 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:19:10,288 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:19:10,290 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:19:10,293 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:19:10,295 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:19:10,297 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:19:10,300 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:19:10,302 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:19:10,304 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:19:10,307 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:19:10,309 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:19:10,311 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:19:10,313 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:19:10,316 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:19:10,318 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:19:10,320 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:19:10,323 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:19:10,325 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:19:10,327 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:19:10,330 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:19:10,332 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:19:10,334 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:19:10,337 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:19:10,339 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:19:10,341 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:19:10,344 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:19:10,346 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:19:10,348 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:19:10,350 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:19:10,353 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:19:10,355 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:19:10,357 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:19:10,360 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:19:10,362 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:19:10,364 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:19:10,367 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:19:10,369 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:19:10,371 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:19:10,373 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:19:10,376 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:19:10,378 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:19:10,380 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:19:10,383 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:19:10,385 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:19:10,387 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:19:10,390 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:19:10,392 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:19:10,394 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:19:10,396 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:19:10,399 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:19:10,401 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:19:10,403 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:19:10,406 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:19:10,408 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:19:10,410 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:19:10,413 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:19:10,415 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:19:10,417 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:19:10,419 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:19:10,422 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:19:10,424 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:19:10,426 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:19:10,429 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:19:10,431 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:19:10,433 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:19:10,436 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:19:10,438 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:19:10,441 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:19:10,443 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:19:10,446 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:19:10,448 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:19:10,450 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:19:10,453 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:19:10,455 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:19:10,457 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:19:10,460 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:19:10,462 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:19:10,464 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:19:10,467 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:19:10,469 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:19:10,471 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:19:10,474 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:19:10,477 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:19:10,479 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:19:10,481 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:19:10,484 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:19:10,606 [DEBUG] django.db.backends: (0.118) SELECT `company_company_translation`.`id`, `company_company_translation`.`name`, `company_company_translation`.`specialization`, `company_company_translation`.`description`, `company_company_translation`.`address_inf`, `company_company_translation`.`title`, `company_company_translation`.`descriptions`, `company_company_translation`.`keywords`, `company_company_translation`.`language_code`, `company_company_translation`.`master_id`, `company_company`.`id`, `company_company`.`url`, `company_company`.`creator_id`, `company_company`.`country_id`, `company_company`.`city_id`, `company_company`.`address`, `company_company`.`staff_number`, `company_company`.`phone`, `company_company`.`fax`, `company_company`.`web_page`, `company_company`.`email`, `company_company`.`facebook`, `company_company`.`twitter`, `company_company`.`linkedin`, `company_company`.`vk`, `company_company`.`foundation`, `company_company`.`rating`, `company_company`.`created`, `company_company`.`modified`, `company_company`.`logo` FROM `company_company_translation` LEFT OUTER JOIN `company_company` ON (`company_company_translation`.`master_id` = `company_company`.`id`) WHERE `company_company_translation`.`language_code` = 'ru' ORDER BY `company_company`.`rating` DESC, `company_company_translation`.`master_id` ASC; args=('ru',) +2015-07-28 11:19:11,066 [DEBUG] django.db.backends: (0.132) SELECT `organiser_organiser_translation`.`id`, `organiser_organiser_translation`.`name`, `organiser_organiser_translation`.`specialization`, `organiser_organiser_translation`.`description`, `organiser_organiser_translation`.`representation`, `organiser_organiser_translation`.`address_inf`, `organiser_organiser_translation`.`title`, `organiser_organiser_translation`.`descriptions`, `organiser_organiser_translation`.`keywords`, `organiser_organiser_translation`.`language_code`, `organiser_organiser_translation`.`master_id`, `organiser_organiser`.`id`, `organiser_organiser`.`url`, `organiser_organiser`.`country_id`, `organiser_organiser`.`city_id`, `organiser_organiser`.`address`, `organiser_organiser`.`logo`, `organiser_organiser`.`rating`, `organiser_organiser`.`phone`, `organiser_organiser`.`fax`, `organiser_organiser`.`web_page`, `organiser_organiser`.`email`, `organiser_organiser`.`facebook`, `organiser_organiser`.`twitter`, `organiser_organiser`.`linkedin`, `organiser_organiser`.`vk`, `organiser_organiser`.`foundation`, `organiser_organiser`.`events_number`, `organiser_organiser`.`staff_number`, `organiser_organiser`.`created`, `organiser_organiser`.`modified`, `organiser_organiser`.`active` FROM `organiser_organiser_translation` LEFT OUTER JOIN `organiser_organiser` ON (`organiser_organiser_translation`.`master_id` = `organiser_organiser`.`id`) WHERE `organiser_organiser_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:19:11,451 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:19:11,476 [DEBUG] django.db.backends: (0.001) SELECT DISTINCT `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect`, `theme_theme_translation`.`name` FROM `theme_theme` INNER JOIN `exposition_exposition_theme` ON (`theme_theme`.`id` = `exposition_exposition_theme`.`theme_id`) INNER JOIN `exposition_exposition` ON (`exposition_exposition_theme`.`exposition_id` = `exposition_exposition`.`id`) INNER JOIN `exposition_exposition_theme` T4 ON (`exposition_exposition`.`id` = T4.`exposition_id`) INNER JOIN `theme_theme` T5 ON (T4.`theme_id` = T5.`id`) INNER JOIN `theme_theme_translation` ON (`theme_theme`.`id` = `theme_theme_translation`.`master_id`) WHERE (T5.`id` IS NOT NULL AND `theme_theme_translation`.`language_code` = 'ru' ) ORDER BY `theme_theme_translation`.`name` ASC; args=('ru',) +2015-07-28 11:19:11,483 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 1 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:19:11,485 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 2 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:19:11,487 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 75 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:19:11,490 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 94 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:19:11,492 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 3 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:19:11,494 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 37 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:19:11,496 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 84 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:19:11,499 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 4 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:19:11,501 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 64 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:19:11,503 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 77 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:19:11,506 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 6 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:19:11,508 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 7 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:19:11,510 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 8 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:19:11,513 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 5 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:19:11,515 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 10 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:19:11,517 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 11 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:19:11,520 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 74 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:19:11,522 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 70 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:19:11,524 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 73 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:19:11,527 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 69 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:19:11,529 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 71 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:19:11,531 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 68 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:19:11,533 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 72 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:19:11,536 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 45 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:19:11,538 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 13 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:19:11,540 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 14 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:19:11,543 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 42 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:19:11,545 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 15 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:19:11,547 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 43 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:19:11,550 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 27 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:19:11,552 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 22 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:19:11,554 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 16 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:19:11,557 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 17 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:19:11,559 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 87 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:19:11,561 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 44 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:19:11,563 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 50 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:19:11,566 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 18 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:19:11,568 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 21 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:19:11,570 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 62 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:19:11,573 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 51 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:19:11,575 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 23 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:19:11,577 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 97 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:19:11,579 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 9 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:19:11,582 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 31 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:19:11,584 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 63 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:19:11,586 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 24 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:19:11,589 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 26 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:19:11,591 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 28 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:19:11,593 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 30 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:19:11,596 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 34 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:19:11,598 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 90 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:19:11,600 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 54 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:19:11,603 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 48 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:19:11,605 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 32 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:19:11,607 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 29 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:19:11,610 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 83 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:19:11,612 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 35 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:19:11,614 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 36 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:19:11,616 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 38 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:19:11,619 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 39 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:19:11,621 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 40 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:19:11,623 [DEBUG] django.db.backends: (0.000) SELECT `country_area_translation`.`id`, `country_area_translation`.`name`, `country_area_translation`.`language_code`, `country_area_translation`.`master_id`, `country_area`.`id` FROM `country_area_translation` LEFT OUTER JOIN `country_area` ON (`country_area_translation`.`master_id` = `country_area`.`id`) LEFT OUTER JOIN `country_area_translation` T3 ON (`country_area`.`id` = T3.`master_id`) WHERE `country_area_translation`.`language_code` = 'ru' ORDER BY T3.`name` ASC; args=('ru',) +2015-07-28 11:19:11,882 [DEBUG] django.db.backends: (0.063) SELECT `place_exposition_placeexposition_translation`.`id`, `place_exposition_placeexposition_translation`.`name`, `place_exposition_placeexposition_translation`.`main_title`, `place_exposition_placeexposition_translation`.`description`, `place_exposition_placeexposition_translation`.`adress`, `place_exposition_placeexposition_translation`.`title`, `place_exposition_placeexposition_translation`.`descriptions`, `place_exposition_placeexposition_translation`.`keywords`, `place_exposition_placeexposition_translation`.`total_year_action`, `place_exposition_placeexposition_translation`.`language_code`, `place_exposition_placeexposition_translation`.`master_id`, `place_exposition_placeexposition`.`id`, `place_exposition_placeexposition`.`url`, `place_exposition_placeexposition`.`country_id`, `place_exposition_placeexposition`.`city_id`, `place_exposition_placeexposition`.`photogallery_id`, `place_exposition_placeexposition`.`type`, `place_exposition_placeexposition`.`address`, `place_exposition_placeexposition`.`phone`, `place_exposition_placeexposition`.`fax`, `place_exposition_placeexposition`.`web_page`, `place_exposition_placeexposition`.`email`, `place_exposition_placeexposition`.`foundation_year`, `place_exposition_placeexposition`.`event_in_year`, `place_exposition_placeexposition`.`total_area`, `place_exposition_placeexposition`.`closed_area`, `place_exposition_placeexposition`.`open_area`, `place_exposition_placeexposition`.`total_pavilions`, `place_exposition_placeexposition`.`total_halls`, `place_exposition_placeexposition`.`virtual_tour`, `place_exposition_placeexposition`.`wifi`, `place_exposition_placeexposition`.`bank`, `place_exposition_placeexposition`.`children_room`, `place_exposition_placeexposition`.`disabled_service`, `place_exposition_placeexposition`.`conference_centre`, `place_exposition_placeexposition`.`business_centre`, `place_exposition_placeexposition`.`online_registration`, `place_exposition_placeexposition`.`cafe`, `place_exposition_placeexposition`.`terminals`, `place_exposition_placeexposition`.`parking`, `place_exposition_placeexposition`.`press_centre`, `place_exposition_placeexposition`.`mobile_application`, `place_exposition_placeexposition`.`logo`, `place_exposition_placeexposition`.`rating`, `place_exposition_placeexposition`.`partner`, `place_exposition_placeexposition`.`created`, `place_exposition_placeexposition`.`modified`, `place_exposition_placeexposition`.`views`, `place_exposition_placeexposition`.`is_published` FROM `place_exposition_placeexposition_translation` LEFT OUTER JOIN `place_exposition_placeexposition` ON (`place_exposition_placeexposition_translation`.`master_id` = `place_exposition_placeexposition`.`id`) WHERE `place_exposition_placeexposition_translation`.`language_code` = 'ru' ORDER BY `place_exposition_placeexposition`.`rating` DESC, `place_exposition_placeexposition_translation`.`master_id` ASC; args=('ru',) +2015-07-28 11:19:12,198 [DEBUG] django.db.backends: (0.137) SELECT `organiser_organiser_translation`.`id`, `organiser_organiser_translation`.`name`, `organiser_organiser_translation`.`specialization`, `organiser_organiser_translation`.`description`, `organiser_organiser_translation`.`representation`, `organiser_organiser_translation`.`address_inf`, `organiser_organiser_translation`.`title`, `organiser_organiser_translation`.`descriptions`, `organiser_organiser_translation`.`keywords`, `organiser_organiser_translation`.`language_code`, `organiser_organiser_translation`.`master_id`, `organiser_organiser`.`id`, `organiser_organiser`.`url`, `organiser_organiser`.`country_id`, `organiser_organiser`.`city_id`, `organiser_organiser`.`address`, `organiser_organiser`.`logo`, `organiser_organiser`.`rating`, `organiser_organiser`.`phone`, `organiser_organiser`.`fax`, `organiser_organiser`.`web_page`, `organiser_organiser`.`email`, `organiser_organiser`.`facebook`, `organiser_organiser`.`twitter`, `organiser_organiser`.`linkedin`, `organiser_organiser`.`vk`, `organiser_organiser`.`foundation`, `organiser_organiser`.`events_number`, `organiser_organiser`.`staff_number`, `organiser_organiser`.`created`, `organiser_organiser`.`modified`, `organiser_organiser`.`active` FROM `organiser_organiser_translation` LEFT OUTER JOIN `organiser_organiser` ON (`organiser_organiser_translation`.`master_id` = `organiser_organiser`.`id`) WHERE `organiser_organiser_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:19:12,686 [DEBUG] django.db.backends: (0.116) SELECT `company_company_translation`.`id`, `company_company_translation`.`name`, `company_company_translation`.`specialization`, `company_company_translation`.`description`, `company_company_translation`.`address_inf`, `company_company_translation`.`title`, `company_company_translation`.`descriptions`, `company_company_translation`.`keywords`, `company_company_translation`.`language_code`, `company_company_translation`.`master_id`, `company_company`.`id`, `company_company`.`url`, `company_company`.`creator_id`, `company_company`.`country_id`, `company_company`.`city_id`, `company_company`.`address`, `company_company`.`staff_number`, `company_company`.`phone`, `company_company`.`fax`, `company_company`.`web_page`, `company_company`.`email`, `company_company`.`facebook`, `company_company`.`twitter`, `company_company`.`linkedin`, `company_company`.`vk`, `company_company`.`foundation`, `company_company`.`rating`, `company_company`.`created`, `company_company`.`modified`, `company_company`.`logo` FROM `company_company_translation` LEFT OUTER JOIN `company_company` ON (`company_company_translation`.`master_id` = `company_company`.`id`) WHERE `company_company_translation`.`language_code` = 'ru' ORDER BY `company_company`.`rating` DESC, `company_company_translation`.`master_id` ASC; args=('ru',) +2015-07-28 11:19:13,018 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:19:13,029 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:19:13,032 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:19:13,034 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:19:13,036 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:19:13,039 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:19:13,041 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:19:13,044 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:19:13,046 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:19:13,048 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:19:13,051 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:19:13,053 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:19:13,055 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:19:13,058 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:19:13,060 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:19:13,062 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:19:13,065 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:19:13,067 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:19:13,070 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:19:13,072 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:19:13,074 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:19:13,077 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:19:13,080 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:19:13,082 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:19:13,085 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:19:13,087 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:19:13,089 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:19:13,092 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:19:13,094 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:19:13,097 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:19:13,099 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:19:13,102 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:19:13,104 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:19:13,106 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:19:13,109 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:19:13,111 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:19:13,113 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:19:13,116 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:19:13,118 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:19:13,120 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:19:13,123 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:19:13,125 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:19:13,128 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:19:13,130 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:19:13,132 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:19:13,135 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:19:13,137 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:19:13,139 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:19:13,142 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:19:13,144 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:19:13,146 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:19:13,149 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:19:13,151 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:19:13,153 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:19:13,156 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:19:13,158 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:19:13,160 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:19:13,163 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:19:13,165 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:19:13,168 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:19:13,170 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:19:13,172 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:19:13,175 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:19:13,177 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:19:13,179 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:19:13,182 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:19:13,184 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:19:13,186 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:19:13,189 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:19:13,191 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:19:13,194 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:19:13,196 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:19:13,198 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:19:13,201 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:19:13,203 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:19:13,205 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:19:13,208 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:19:13,210 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:19:13,212 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:19:13,215 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:19:13,217 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:19:13,219 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:19:13,222 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:19:13,224 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:19:13,226 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:19:13,229 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:19:13,231 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:19:13,233 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:19:13,236 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:19:13,238 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:19:13,241 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:19:13,243 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:19:13,245 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:19:13,248 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:19:13,250 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:19:13,253 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:19:13,255 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:19:13,257 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:19:13,260 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:19:13,262 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:19:13,264 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:19:13,276 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:19:13,278 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:19:13,281 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:19:13,283 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:19:13,285 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:19:13,288 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:19:13,290 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:19:13,293 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:19:13,295 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:19:13,298 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:19:13,300 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:19:13,302 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:19:13,305 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:19:13,307 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:19:13,309 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:19:13,312 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:19:13,314 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:19:13,317 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:19:13,319 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:19:13,322 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:19:13,324 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:19:13,326 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:19:13,329 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:19:13,331 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:19:13,334 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:19:13,336 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:19:13,338 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:19:13,341 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:19:13,343 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:19:13,346 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:19:13,348 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:19:13,350 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:19:13,353 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:19:13,355 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:19:13,358 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:19:13,360 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:19:13,362 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:19:13,365 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:19:13,367 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:19:13,369 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:19:13,372 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:19:13,374 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:19:13,377 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:19:13,379 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:19:13,381 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:19:13,384 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:19:13,386 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:19:13,389 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:19:13,391 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:19:13,393 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:19:13,396 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:19:13,398 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:19:13,400 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:19:13,403 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:19:13,405 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:19:13,408 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:19:13,410 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:19:13,412 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:19:13,415 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:19:13,417 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:19:13,419 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:19:13,422 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:19:13,424 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:19:13,427 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:19:13,429 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:19:13,431 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:19:13,434 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:19:13,436 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:19:13,439 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:19:13,441 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:19:13,443 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:19:13,446 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:19:13,448 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:19:13,451 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:19:13,453 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:19:13,456 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:19:13,458 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:19:13,460 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:19:13,463 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:19:13,465 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:19:13,468 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:19:13,470 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:19:13,473 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:19:13,475 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:19:13,477 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:19:13,480 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:19:13,482 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:19:13,485 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:19:13,487 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:19:13,489 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:19:13,492 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:19:13,494 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:19:13,497 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:19:13,499 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:19:13,501 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:19:13,504 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:19:13,506 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:19:13,508 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:19:13,511 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:19:13,513 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:19:13,516 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:19:13,519 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:19:13,521 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:19:13,523 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:19:13,526 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:19:13,530 [DEBUG] django.db.backends: (0.003) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE `theme_theme_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:19:13,693 [DEBUG] django.db.backends: (0.151) SELECT `organiser_organiser_translation`.`id`, `organiser_organiser_translation`.`name`, `organiser_organiser_translation`.`specialization`, `organiser_organiser_translation`.`description`, `organiser_organiser_translation`.`representation`, `organiser_organiser_translation`.`address_inf`, `organiser_organiser_translation`.`title`, `organiser_organiser_translation`.`descriptions`, `organiser_organiser_translation`.`keywords`, `organiser_organiser_translation`.`language_code`, `organiser_organiser_translation`.`master_id`, `organiser_organiser`.`id`, `organiser_organiser`.`url`, `organiser_organiser`.`country_id`, `organiser_organiser`.`city_id`, `organiser_organiser`.`address`, `organiser_organiser`.`logo`, `organiser_organiser`.`rating`, `organiser_organiser`.`phone`, `organiser_organiser`.`fax`, `organiser_organiser`.`web_page`, `organiser_organiser`.`email`, `organiser_organiser`.`facebook`, `organiser_organiser`.`twitter`, `organiser_organiser`.`linkedin`, `organiser_organiser`.`vk`, `organiser_organiser`.`foundation`, `organiser_organiser`.`events_number`, `organiser_organiser`.`staff_number`, `organiser_organiser`.`created`, `organiser_organiser`.`modified`, `organiser_organiser`.`active` FROM `organiser_organiser_translation` LEFT OUTER JOIN `organiser_organiser` ON (`organiser_organiser_translation`.`master_id` = `organiser_organiser`.`id`) WHERE `organiser_organiser_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:19:14,086 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:19:14,097 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:19:14,100 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:19:14,102 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:19:14,104 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:19:14,107 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:19:14,109 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:19:14,112 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:19:14,114 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:19:14,116 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:19:14,119 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:19:14,121 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:19:14,123 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:19:14,126 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:19:14,128 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:19:14,130 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:19:14,133 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:19:14,135 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:19:14,137 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:19:14,140 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:19:14,142 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:19:14,144 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:19:14,147 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:19:14,149 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:19:14,151 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:19:14,154 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:19:14,156 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:19:14,158 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:19:14,161 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:19:14,163 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:19:14,165 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:19:14,168 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:19:14,170 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:19:14,172 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:19:14,175 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:19:14,177 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:19:14,179 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:19:14,182 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:19:14,184 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:19:14,186 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:19:14,189 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:19:14,191 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:19:14,194 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:19:14,196 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:19:14,198 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:19:14,201 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:19:14,203 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:19:14,205 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:19:14,208 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:19:14,210 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:19:14,212 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:19:14,215 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:19:14,217 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:19:14,220 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:19:14,222 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:19:14,224 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:19:14,227 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:19:14,229 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:19:14,231 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:19:14,234 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:19:14,236 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:19:14,239 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:19:14,241 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:19:14,243 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:19:14,246 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:19:14,248 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:19:14,251 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:19:14,253 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:19:14,255 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:19:14,258 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:19:14,260 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:19:14,262 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:19:14,265 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:19:14,267 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:19:14,269 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:19:14,272 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:19:14,274 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:19:14,276 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:19:14,279 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:19:14,281 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:19:14,283 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:19:14,286 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:19:14,288 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:19:14,290 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:19:14,293 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:19:14,295 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:19:14,297 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:19:14,300 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:19:14,302 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:19:14,304 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:19:14,307 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:19:14,309 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:19:14,311 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:19:14,314 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:19:14,316 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:19:14,318 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:19:14,321 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:19:14,323 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:19:14,326 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:19:14,328 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:19:14,330 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:19:14,341 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:19:14,343 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:19:14,346 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:19:14,348 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:19:14,351 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:19:14,353 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:19:14,356 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:19:14,358 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:19:14,361 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:19:14,363 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:19:14,366 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:19:14,368 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:19:14,370 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:19:14,373 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:19:14,375 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:19:14,378 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:19:14,380 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:19:14,382 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:19:14,385 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:19:14,387 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:19:14,389 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:19:14,392 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:19:14,394 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:19:14,396 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:19:14,399 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:19:14,401 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:19:14,404 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:19:14,406 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:19:14,408 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:19:14,411 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:19:14,413 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:19:14,415 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:19:14,418 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:19:14,420 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:19:14,422 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:19:14,425 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:19:14,427 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:19:14,430 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:19:14,432 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:19:14,434 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:19:14,437 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:19:14,439 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:19:14,441 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:19:14,444 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:19:14,446 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:19:14,448 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:19:14,451 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:19:14,453 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:19:14,456 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:19:14,458 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:19:14,460 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:19:14,463 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:19:14,465 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:19:14,467 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:19:14,470 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:19:14,472 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:19:14,474 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:19:14,477 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:19:14,479 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:19:14,481 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:19:14,484 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:19:14,486 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:19:14,489 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:19:14,491 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:19:14,493 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:19:14,496 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:19:14,498 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:19:14,500 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:19:14,503 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:19:14,505 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:19:14,507 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:19:14,510 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:19:14,512 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:19:14,515 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:19:14,517 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:19:14,519 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:19:14,522 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:19:14,524 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:19:14,526 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:19:14,529 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:19:14,531 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:19:14,533 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:19:14,536 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:19:14,538 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:19:14,541 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:19:14,543 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:19:14,545 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:19:14,548 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:19:14,550 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:19:14,552 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:19:14,555 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:19:14,557 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:19:14,559 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:19:14,562 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:19:14,564 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:19:14,566 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:19:14,569 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:19:14,571 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:19:14,573 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:19:14,576 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:19:14,579 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:19:14,581 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:19:14,583 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:19:14,586 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:19:14,588 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:19:14,637 [DEBUG] django.db.backends: (0.003) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE `theme_theme_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:19:14,769 [DEBUG] django.db.backends: (0.000) SELECT `place_conference_placeconference_translation`.`id`, `place_conference_placeconference_translation`.`name`, `place_conference_placeconference_translation`.`main_title`, `place_conference_placeconference_translation`.`description`, `place_conference_placeconference_translation`.`adress`, `place_conference_placeconference_translation`.`hall_capacity`, `place_conference_placeconference_translation`.`title`, `place_conference_placeconference_translation`.`descriptions`, `place_conference_placeconference_translation`.`keywords`, `place_conference_placeconference_translation`.`total_year_action`, `place_conference_placeconference_translation`.`language_code`, `place_conference_placeconference_translation`.`master_id`, `place_conference_placeconference`.`id`, `place_conference_placeconference`.`url`, `place_conference_placeconference`.`country_id`, `place_conference_placeconference`.`city_id`, `place_conference_placeconference`.`type`, `place_conference_placeconference`.`address`, `place_conference_placeconference`.`phone`, `place_conference_placeconference`.`fax`, `place_conference_placeconference`.`web_page`, `place_conference_placeconference`.`email`, `place_conference_placeconference`.`foundation_year`, `place_conference_placeconference`.`total_capacity`, `place_conference_placeconference`.`amount_halls`, `place_conference_placeconference`.`exposition_hall`, `place_conference_placeconference`.`exp_hall_area`, `place_conference_placeconference`.`video_link`, `place_conference_placeconference`.`wifi`, `place_conference_placeconference`.`multimedia_equipment`, `place_conference_placeconference`.`conference_call`, `place_conference_placeconference`.`translate_equipment`, `place_conference_placeconference`.`banquet_hall`, `place_conference_placeconference`.`catering`, `place_conference_placeconference`.`hotel`, `place_conference_placeconference`.`created`, `place_conference_placeconference`.`modified`, `place_conference_placeconference`.`views` FROM `place_conference_placeconference_translation` LEFT OUTER JOIN `place_conference_placeconference` ON (`place_conference_placeconference_translation`.`master_id` = `place_conference_placeconference`.`id`) WHERE `place_conference_placeconference_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:19:14,904 [DEBUG] django.db.backends: (0.132) SELECT `organiser_organiser_translation`.`id`, `organiser_organiser_translation`.`name`, `organiser_organiser_translation`.`specialization`, `organiser_organiser_translation`.`description`, `organiser_organiser_translation`.`representation`, `organiser_organiser_translation`.`address_inf`, `organiser_organiser_translation`.`title`, `organiser_organiser_translation`.`descriptions`, `organiser_organiser_translation`.`keywords`, `organiser_organiser_translation`.`language_code`, `organiser_organiser_translation`.`master_id`, `organiser_organiser`.`id`, `organiser_organiser`.`url`, `organiser_organiser`.`country_id`, `organiser_organiser`.`city_id`, `organiser_organiser`.`address`, `organiser_organiser`.`logo`, `organiser_organiser`.`rating`, `organiser_organiser`.`phone`, `organiser_organiser`.`fax`, `organiser_organiser`.`web_page`, `organiser_organiser`.`email`, `organiser_organiser`.`facebook`, `organiser_organiser`.`twitter`, `organiser_organiser`.`linkedin`, `organiser_organiser`.`vk`, `organiser_organiser`.`foundation`, `organiser_organiser`.`events_number`, `organiser_organiser`.`staff_number`, `organiser_organiser`.`created`, `organiser_organiser`.`modified`, `organiser_organiser`.`active` FROM `organiser_organiser_translation` LEFT OUTER JOIN `organiser_organiser` ON (`organiser_organiser_translation`.`master_id` = `organiser_organiser`.`id`) WHERE `organiser_organiser_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:19:15,285 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:19:15,296 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:19:15,299 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:19:15,301 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:19:15,303 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:19:15,306 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:19:15,308 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:19:15,310 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:19:15,313 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:19:15,315 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:19:15,318 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:19:15,320 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:19:15,322 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:19:15,325 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:19:15,327 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:19:15,329 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:19:15,332 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:19:15,334 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:19:15,336 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:19:15,339 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:19:15,341 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:19:15,344 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:19:15,346 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:19:15,348 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:19:15,351 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:19:15,353 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:19:15,355 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:19:15,358 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:19:15,360 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:19:15,362 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:19:15,365 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:19:15,367 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:19:15,369 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:19:15,372 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:19:15,374 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:19:15,376 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:19:15,379 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:19:15,381 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:19:15,383 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:19:15,386 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:19:15,388 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:19:15,391 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:19:15,393 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:19:15,395 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:19:15,398 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:19:15,400 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:19:15,402 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:19:15,405 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:19:15,407 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:19:15,409 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:19:15,412 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:19:15,414 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:19:15,416 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:19:15,419 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:19:15,421 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:19:15,423 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:19:15,426 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:19:15,428 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:19:15,431 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:19:15,433 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:19:15,435 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:19:15,438 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:19:15,440 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:19:15,442 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:19:15,445 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:19:15,447 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:19:15,449 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:19:15,452 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:19:15,454 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:19:15,457 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:19:15,459 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:19:15,461 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:19:15,464 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:19:15,466 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:19:15,468 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:19:15,471 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:19:15,473 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:19:15,476 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:19:15,478 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:19:15,480 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:19:15,483 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:19:15,485 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:19:15,487 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:19:15,490 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:19:15,492 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:19:15,494 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:19:15,497 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:19:15,499 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:19:15,501 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:19:15,504 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:19:15,506 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:19:15,508 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:19:15,511 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:19:15,513 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:19:15,516 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:19:15,518 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:19:15,520 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:19:15,523 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:19:15,525 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:19:15,527 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:19:15,530 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:19:15,541 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:19:15,543 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:19:15,545 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:19:15,548 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:19:15,550 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:19:15,553 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:19:15,555 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:19:15,557 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:19:15,560 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:19:15,562 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:19:15,564 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:19:15,567 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:19:15,569 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:19:15,571 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:19:15,574 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:19:15,576 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:19:15,579 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:19:15,581 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:19:15,583 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:19:15,586 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:19:15,588 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:19:15,590 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:19:15,593 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:19:15,595 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:19:15,597 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:19:15,600 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:19:15,602 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:19:15,604 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:19:15,607 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:19:15,609 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:19:15,611 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:19:15,614 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:19:15,616 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:19:15,619 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:19:15,621 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:19:15,623 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:19:15,626 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:19:15,628 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:19:15,630 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:19:15,633 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:19:15,635 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:19:15,637 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:19:15,640 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:19:15,642 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:19:15,644 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:19:15,647 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:19:15,649 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:19:15,651 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:19:15,654 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:19:15,656 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:19:15,659 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:19:15,661 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:19:15,663 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:19:15,666 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:19:15,668 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:19:15,670 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:19:15,673 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:19:15,675 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:19:15,677 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:19:15,680 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:19:15,682 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:19:15,684 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:19:15,687 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:19:15,689 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:19:15,692 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:19:15,694 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:19:15,696 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:19:15,699 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:19:15,701 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:19:15,703 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:19:15,706 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:19:15,708 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:19:15,710 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:19:15,713 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:19:15,715 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:19:15,717 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:19:15,720 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:19:15,722 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:19:15,725 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:19:15,727 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:19:15,729 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:19:15,732 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:19:15,734 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:19:15,736 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:19:15,739 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:19:15,741 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:19:15,743 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:19:15,746 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:19:15,748 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:19:15,751 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:19:15,753 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:19:15,755 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:19:15,758 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:19:15,760 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:19:15,762 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:19:15,765 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:19:15,767 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:19:15,774 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:19:15,777 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:19:15,779 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:19:15,782 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:19:15,784 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:19:15,787 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:19:15,789 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:19:15,791 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:19:15,796 [DEBUG] django.db.backends: (0.003) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE `theme_theme_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:19:15,819 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:19:15,830 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:19:15,832 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:19:15,835 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:19:15,837 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:19:15,839 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:19:15,842 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:19:15,844 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:19:15,846 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:19:15,849 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:19:15,851 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:19:15,853 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:19:15,855 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:19:15,858 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:19:15,860 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:19:15,862 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:19:15,865 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:19:15,867 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:19:15,869 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:19:15,871 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:19:15,874 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:19:15,876 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:19:15,878 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:19:15,881 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:19:15,883 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:19:15,885 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:19:15,888 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:19:15,890 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:19:15,892 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:19:15,895 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:19:15,897 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:19:15,899 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:19:15,901 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:19:15,904 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:19:15,906 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:19:15,909 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:19:15,912 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:19:15,914 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:19:15,916 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:19:15,918 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:19:15,921 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:19:15,923 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:19:15,926 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:19:15,928 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:19:15,930 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:19:15,933 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:19:15,935 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:19:15,937 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:19:15,940 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:19:15,942 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:19:15,944 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:19:15,946 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:19:15,949 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:19:15,951 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:19:15,953 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:19:15,956 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:19:15,958 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:19:15,960 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:19:15,962 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:19:15,965 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:19:15,967 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:19:15,969 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:19:15,972 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:19:15,974 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:19:15,976 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:19:15,978 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:19:15,981 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:19:15,983 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:19:15,985 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:19:15,987 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:19:15,990 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:19:15,992 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:19:15,994 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:19:15,997 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:19:15,999 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:19:16,002 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:19:16,004 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:19:16,006 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:19:16,009 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:19:16,011 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:19:16,013 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:19:16,016 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:19:16,018 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:19:16,020 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:19:16,023 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:19:16,025 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:19:16,027 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:19:16,030 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:19:16,032 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:19:16,034 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:19:16,037 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:19:16,039 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:19:16,041 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:19:16,044 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:19:16,046 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:19:16,048 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:19:16,051 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:19:16,053 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:19:16,055 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:19:16,058 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:19:16,060 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:19:16,072 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:19:16,074 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:19:16,076 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:19:16,079 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:19:16,081 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:19:16,083 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:19:16,086 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:19:16,088 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:19:16,091 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:19:16,093 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:19:16,095 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:19:16,098 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:19:16,100 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:19:16,102 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:19:16,105 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:19:16,107 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:19:16,110 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:19:16,112 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:19:16,114 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:19:16,117 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:19:16,119 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:19:16,121 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:19:16,124 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:19:16,126 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:19:16,128 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:19:16,131 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:19:16,133 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:19:16,136 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:19:16,138 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:19:16,140 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:19:16,142 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:19:16,145 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:19:16,147 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:19:16,149 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:19:16,152 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:19:16,154 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:19:16,156 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:19:16,159 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:19:16,161 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:19:16,163 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:19:16,166 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:19:16,168 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:19:16,170 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:19:16,173 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:19:16,175 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:19:16,177 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:19:16,180 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:19:16,182 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:19:16,184 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:19:16,187 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:19:16,189 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:19:16,191 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:19:16,194 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:19:16,196 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:19:16,198 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:19:16,201 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:19:16,203 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:19:16,205 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:19:16,208 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:19:16,210 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:19:16,212 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:19:16,215 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:19:16,217 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:19:16,220 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:19:16,222 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:19:16,224 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:19:16,227 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:19:16,229 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:19:16,231 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:19:16,234 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:19:16,236 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:19:16,238 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:19:16,241 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:19:16,243 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:19:16,245 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:19:16,248 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:19:16,250 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:19:16,252 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:19:16,255 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:19:16,257 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:19:16,259 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:19:16,262 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:19:16,264 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:19:16,266 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:19:16,269 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:19:16,271 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:19:16,273 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:19:16,276 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:19:16,278 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:19:16,280 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:19:16,283 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:19:16,285 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:19:16,287 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:19:16,290 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:19:16,292 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:19:16,294 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:19:16,297 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:19:16,299 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:19:16,302 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:19:16,304 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:19:16,307 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:19:16,309 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:19:16,311 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:19:16,314 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:19:16,316 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:19:16,321 [DEBUG] django.db.backends: (0.003) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE `theme_theme_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:19:16,392 [DEBUG] django.db.backends: (0.061) SELECT `place_exposition_placeexposition_translation`.`id`, `place_exposition_placeexposition_translation`.`name`, `place_exposition_placeexposition_translation`.`main_title`, `place_exposition_placeexposition_translation`.`description`, `place_exposition_placeexposition_translation`.`adress`, `place_exposition_placeexposition_translation`.`title`, `place_exposition_placeexposition_translation`.`descriptions`, `place_exposition_placeexposition_translation`.`keywords`, `place_exposition_placeexposition_translation`.`total_year_action`, `place_exposition_placeexposition_translation`.`language_code`, `place_exposition_placeexposition_translation`.`master_id`, `place_exposition_placeexposition`.`id`, `place_exposition_placeexposition`.`url`, `place_exposition_placeexposition`.`country_id`, `place_exposition_placeexposition`.`city_id`, `place_exposition_placeexposition`.`photogallery_id`, `place_exposition_placeexposition`.`type`, `place_exposition_placeexposition`.`address`, `place_exposition_placeexposition`.`phone`, `place_exposition_placeexposition`.`fax`, `place_exposition_placeexposition`.`web_page`, `place_exposition_placeexposition`.`email`, `place_exposition_placeexposition`.`foundation_year`, `place_exposition_placeexposition`.`event_in_year`, `place_exposition_placeexposition`.`total_area`, `place_exposition_placeexposition`.`closed_area`, `place_exposition_placeexposition`.`open_area`, `place_exposition_placeexposition`.`total_pavilions`, `place_exposition_placeexposition`.`total_halls`, `place_exposition_placeexposition`.`virtual_tour`, `place_exposition_placeexposition`.`wifi`, `place_exposition_placeexposition`.`bank`, `place_exposition_placeexposition`.`children_room`, `place_exposition_placeexposition`.`disabled_service`, `place_exposition_placeexposition`.`conference_centre`, `place_exposition_placeexposition`.`business_centre`, `place_exposition_placeexposition`.`online_registration`, `place_exposition_placeexposition`.`cafe`, `place_exposition_placeexposition`.`terminals`, `place_exposition_placeexposition`.`parking`, `place_exposition_placeexposition`.`press_centre`, `place_exposition_placeexposition`.`mobile_application`, `place_exposition_placeexposition`.`logo`, `place_exposition_placeexposition`.`rating`, `place_exposition_placeexposition`.`partner`, `place_exposition_placeexposition`.`created`, `place_exposition_placeexposition`.`modified`, `place_exposition_placeexposition`.`views`, `place_exposition_placeexposition`.`is_published` FROM `place_exposition_placeexposition_translation` LEFT OUTER JOIN `place_exposition_placeexposition` ON (`place_exposition_placeexposition_translation`.`master_id` = `place_exposition_placeexposition`.`id`) WHERE `place_exposition_placeexposition_translation`.`language_code` = 'ru' ORDER BY `place_exposition_placeexposition`.`rating` DESC, `place_exposition_placeexposition_translation`.`master_id` ASC; args=('ru',) +2015-07-28 11:19:16,562 [DEBUG] django.db.backends: (0.000) SELECT `place_conference_placeconference_translation`.`id`, `place_conference_placeconference_translation`.`name`, `place_conference_placeconference_translation`.`main_title`, `place_conference_placeconference_translation`.`description`, `place_conference_placeconference_translation`.`adress`, `place_conference_placeconference_translation`.`hall_capacity`, `place_conference_placeconference_translation`.`title`, `place_conference_placeconference_translation`.`descriptions`, `place_conference_placeconference_translation`.`keywords`, `place_conference_placeconference_translation`.`total_year_action`, `place_conference_placeconference_translation`.`language_code`, `place_conference_placeconference_translation`.`master_id`, `place_conference_placeconference`.`id`, `place_conference_placeconference`.`url`, `place_conference_placeconference`.`country_id`, `place_conference_placeconference`.`city_id`, `place_conference_placeconference`.`type`, `place_conference_placeconference`.`address`, `place_conference_placeconference`.`phone`, `place_conference_placeconference`.`fax`, `place_conference_placeconference`.`web_page`, `place_conference_placeconference`.`email`, `place_conference_placeconference`.`foundation_year`, `place_conference_placeconference`.`total_capacity`, `place_conference_placeconference`.`amount_halls`, `place_conference_placeconference`.`exposition_hall`, `place_conference_placeconference`.`exp_hall_area`, `place_conference_placeconference`.`video_link`, `place_conference_placeconference`.`wifi`, `place_conference_placeconference`.`multimedia_equipment`, `place_conference_placeconference`.`conference_call`, `place_conference_placeconference`.`translate_equipment`, `place_conference_placeconference`.`banquet_hall`, `place_conference_placeconference`.`catering`, `place_conference_placeconference`.`hotel`, `place_conference_placeconference`.`created`, `place_conference_placeconference`.`modified`, `place_conference_placeconference`.`views` FROM `place_conference_placeconference_translation` LEFT OUTER JOIN `place_conference_placeconference` ON (`place_conference_placeconference_translation`.`master_id` = `place_conference_placeconference`.`id`) WHERE `place_conference_placeconference_translation`.`language_code` = 'ru' ORDER BY `place_conference_placeconference_translation`.`name` ASC; args=('ru',) +2015-07-28 11:19:16,576 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:19:16,586 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:19:16,589 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:19:16,591 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:19:16,594 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:19:16,596 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:19:16,598 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:19:16,601 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:19:16,603 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:19:16,605 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:19:16,608 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:19:16,610 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:19:16,612 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:19:16,615 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:19:16,617 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:19:16,619 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:19:16,622 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:19:16,624 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:19:16,626 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:19:16,629 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:19:16,631 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:19:16,633 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:19:16,636 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:19:16,638 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:19:16,640 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:19:16,643 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:19:16,645 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:19:16,647 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:19:16,650 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:19:16,652 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:19:16,654 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:19:16,657 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:19:16,659 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:19:16,661 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:19:16,663 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:19:16,666 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:19:16,668 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:19:16,670 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:19:16,673 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:19:16,675 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:19:16,677 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:19:16,680 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:19:16,682 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:19:16,684 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:19:16,687 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:19:16,689 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:19:16,691 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:19:16,694 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:19:16,696 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:19:16,698 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:19:16,701 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:19:16,703 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:19:16,705 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:19:16,708 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:19:16,710 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:19:16,712 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:19:16,715 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:19:16,717 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:19:16,719 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:19:16,722 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:19:16,724 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:19:16,727 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:19:16,729 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:19:16,731 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:19:16,734 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:19:16,736 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:19:16,738 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:19:16,741 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:19:16,743 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:19:16,745 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:19:16,748 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:19:16,750 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:19:16,752 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:19:16,755 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:19:16,757 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:19:16,759 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:19:16,761 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:19:16,764 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:19:16,766 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:19:16,768 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:19:16,771 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:19:16,773 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:19:16,775 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:19:16,778 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:19:16,780 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:19:16,782 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:19:16,785 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:19:16,787 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:19:16,789 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:19:16,792 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:19:16,794 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:19:16,796 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:19:16,799 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:19:16,801 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:19:16,803 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:19:16,806 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:19:16,808 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:19:16,811 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:19:16,813 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:19:16,815 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:19:16,818 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:19:16,828 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:19:16,831 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:19:16,833 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:19:16,835 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:19:16,838 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:19:16,840 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:19:16,843 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:19:16,845 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:19:16,847 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:19:16,850 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:19:16,852 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:19:16,854 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:19:16,857 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:19:16,859 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:19:16,861 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:19:16,864 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:19:16,866 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:19:16,868 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:19:16,871 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:19:16,873 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:19:16,875 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:19:16,877 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:19:16,880 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:19:16,882 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:19:16,884 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:19:16,887 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:19:16,889 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:19:16,891 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:19:16,894 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:19:16,896 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:19:16,898 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:19:16,901 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:19:16,903 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:19:16,905 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:19:16,908 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:19:16,910 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:19:16,912 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:19:16,915 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:19:16,917 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:19:16,919 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:19:16,921 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:19:16,924 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:19:16,926 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:19:16,928 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:19:16,931 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:19:16,933 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:19:16,935 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:19:16,937 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:19:16,940 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:19:16,942 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:19:16,944 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:19:16,947 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:19:16,949 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:19:16,951 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:19:16,954 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:19:16,956 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:19:16,958 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:19:16,961 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:19:16,963 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:19:16,965 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:19:16,967 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:19:16,970 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:19:16,972 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:19:16,974 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:19:16,977 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:19:16,979 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:19:16,981 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:19:16,984 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:19:16,986 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:19:16,988 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:19:16,990 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:19:16,993 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:19:16,995 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:19:16,997 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:19:17,000 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:19:17,002 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:19:17,004 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:19:17,006 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:19:17,009 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:19:17,011 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:19:17,013 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:19:17,016 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:19:17,018 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:19:17,020 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:19:17,022 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:19:17,025 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:19:17,027 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:19:17,029 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:19:17,032 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:19:17,034 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:19:17,036 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:19:17,039 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:19:17,041 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:19:17,043 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:19:17,045 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:19:17,048 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:19:17,050 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:19:17,052 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:19:17,055 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:19:17,057 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:19:17,060 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:19:17,062 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:19:17,064 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:19:17,067 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:19:17,069 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:19:17,079 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:19:17,104 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:19:17,106 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:19:17,109 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:19:17,111 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:19:17,114 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:19:17,116 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:19:17,118 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:19:17,121 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:19:17,123 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:19:17,126 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:19:17,128 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:19:17,130 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:19:17,133 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:19:17,135 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:19:17,138 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:19:17,140 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:19:17,142 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:19:17,145 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:19:17,147 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:19:17,149 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:19:17,152 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:19:17,154 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:19:17,156 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:19:17,159 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:19:17,161 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:19:17,163 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:19:17,166 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:19:17,168 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:19:17,170 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:19:17,173 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:19:17,175 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:19:17,178 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:19:17,180 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:19:17,182 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:19:17,185 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:19:17,187 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:19:17,189 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:19:17,192 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:19:17,194 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:19:17,196 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:19:17,199 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:19:17,201 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:19:17,204 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:19:17,206 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:19:17,208 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:19:17,211 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:19:17,213 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:19:17,215 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:19:17,218 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:19:17,220 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:19:17,222 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:19:17,225 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:19:17,227 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:19:17,230 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:19:17,232 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:19:17,234 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:19:17,237 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:19:17,239 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:19:17,241 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:19:17,244 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:19:17,246 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:19:17,248 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:19:17,251 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:19:17,253 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:19:17,255 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:19:17,258 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:19:17,260 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:19:17,262 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:19:17,265 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:19:17,267 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:19:17,269 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:19:17,272 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:19:17,274 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:19:17,276 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:19:17,279 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:19:17,281 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:19:17,283 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:19:17,286 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:19:17,288 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:19:17,290 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:19:17,293 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:19:17,295 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:19:17,297 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:19:17,300 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:19:17,302 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:19:17,304 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:19:17,307 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:19:17,309 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:19:17,311 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:19:17,313 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:19:17,316 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:19:17,318 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:19:17,320 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:19:17,323 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:19:17,325 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:19:17,327 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:19:17,330 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:19:17,332 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:19:17,335 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:19:17,337 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:19:17,339 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:19:17,341 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:19:17,344 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:19:17,346 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:19:17,348 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:19:17,351 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:19:17,353 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:19:17,355 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:19:17,358 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:19:17,360 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:19:17,362 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:19:17,365 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:19:17,367 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:19:17,369 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:19:17,372 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:19:17,374 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:19:17,376 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:19:17,378 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:19:17,381 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:19:17,383 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:19:17,386 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:19:17,388 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:19:17,390 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:19:17,393 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:19:17,395 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:19:17,397 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:19:17,400 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:19:17,402 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:19:17,404 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:19:17,407 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:19:17,409 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:19:17,411 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:19:17,414 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:19:17,416 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:19:17,418 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:19:17,421 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:19:17,423 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:19:17,425 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:19:17,428 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:19:17,430 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:19:17,432 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:19:17,435 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:19:17,437 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:19:17,439 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:19:17,442 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:19:17,444 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:19:17,446 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:19:17,449 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:19:17,451 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:19:17,453 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:19:17,455 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:19:17,458 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:19:17,460 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:19:17,462 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:19:17,465 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:19:17,467 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:19:17,469 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:19:17,472 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:19:17,474 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:19:17,476 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:19:17,479 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:19:17,481 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:19:17,483 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:19:17,486 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:19:17,488 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:19:17,490 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:19:17,493 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:19:17,495 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:19:17,497 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:19:17,500 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:19:17,502 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:19:17,504 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:19:17,507 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:19:17,509 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:19:17,511 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:19:17,514 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:19:17,516 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:19:17,518 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:19:17,521 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:19:17,523 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:19:17,525 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:19:17,528 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:19:17,530 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:19:17,532 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:19:17,535 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:19:17,537 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:19:17,539 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:19:17,542 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:19:17,544 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:19:17,546 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:19:17,549 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:19:17,551 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:19:17,553 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:19:17,556 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:19:17,558 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:19:17,560 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:19:17,563 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:19:17,565 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:19:17,567 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:19:17,570 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:19:17,572 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:19:17,574 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:19:17,576 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:19:17,579 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:19:17,581 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:19:17,609 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:19:17,620 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:19:17,622 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:19:17,625 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:19:17,627 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:19:17,629 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:19:17,632 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:19:17,634 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:19:17,636 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:19:17,639 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:19:17,641 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:19:17,643 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:19:17,646 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:19:17,648 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:19:17,650 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:19:17,653 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:19:17,655 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:19:17,657 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:19:17,660 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:19:17,662 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:19:17,664 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:19:17,667 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:19:17,669 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:19:17,671 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:19:17,674 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:19:17,676 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:19:17,678 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:19:17,681 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:19:17,683 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:19:17,685 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:19:17,688 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:19:17,690 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:19:17,692 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:19:17,695 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:19:17,697 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:19:17,699 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:19:17,702 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:19:17,704 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:19:17,706 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:19:17,708 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:19:17,711 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:19:17,713 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:19:17,715 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:19:17,718 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:19:17,720 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:19:17,722 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:19:17,725 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:19:17,727 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:19:17,729 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:19:17,732 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:19:17,734 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:19:17,736 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:19:17,739 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:19:17,741 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:19:17,743 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:19:17,745 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:19:17,748 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:19:17,750 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:19:17,752 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:19:17,755 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:19:17,757 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:19:17,759 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:19:17,762 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:19:17,764 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:19:17,766 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:19:17,769 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:19:17,771 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:19:17,773 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:19:17,775 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:19:17,778 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:19:17,780 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:19:17,782 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:19:17,785 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:19:17,787 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:19:17,789 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:19:17,792 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:19:17,794 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:19:17,796 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:19:17,798 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:19:17,801 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:19:17,803 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:19:17,805 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:19:17,807 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:19:17,810 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:19:17,812 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:19:17,814 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:19:17,817 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:19:17,819 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:19:17,821 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:19:17,823 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:19:17,826 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:19:17,828 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:19:17,830 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:19:17,833 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:19:17,835 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:19:17,837 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:19:17,840 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:19:17,842 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:19:17,844 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:19:17,847 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:19:17,849 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:19:17,860 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:19:17,862 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:19:17,864 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:19:17,867 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:19:17,869 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:19:17,871 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:19:17,874 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:19:17,876 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:19:17,878 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:19:17,880 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:19:17,883 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:19:17,885 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:19:17,887 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:19:17,890 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:19:17,892 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:19:17,894 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:19:17,897 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:19:17,899 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:19:17,901 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:19:17,904 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:19:17,906 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:19:17,908 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:19:17,911 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:19:17,913 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:19:17,915 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:19:17,918 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:19:17,920 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:19:17,922 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:19:17,925 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:19:17,927 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:19:17,929 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:19:17,932 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:19:17,934 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:19:17,936 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:19:17,939 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:19:17,941 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:19:17,944 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:19:17,946 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:19:17,948 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:19:17,951 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:19:17,953 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:19:17,955 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:19:17,958 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:19:17,960 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:19:17,962 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:19:17,965 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:19:17,967 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:19:17,970 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:19:17,972 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:19:17,974 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:19:17,977 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:19:17,979 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:19:17,981 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:19:17,984 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:19:17,986 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:19:17,988 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:19:17,991 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:19:17,993 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:19:17,995 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:19:17,998 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:19:18,000 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:19:18,002 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:19:18,005 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:19:18,007 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:19:18,009 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:19:18,012 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:19:18,014 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:19:18,016 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:19:18,019 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:19:18,021 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:19:18,024 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:19:18,026 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:19:18,028 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:19:18,031 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:19:18,033 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:19:18,035 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:19:18,038 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:19:18,040 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:19:18,042 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:19:18,045 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:19:18,047 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:19:18,049 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:19:18,051 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:19:18,054 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:19:18,056 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:19:18,058 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:19:18,061 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:19:18,063 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:19:18,065 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:19:18,067 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:19:18,070 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:19:18,072 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:19:18,074 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:19:18,077 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:19:18,079 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:19:18,081 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:19:18,083 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:19:18,086 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:19:18,088 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:19:18,090 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:19:18,093 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:19:18,096 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:19:18,098 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:19:18,100 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:19:18,102 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:19:18,120 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:19:18,139 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:19:18,141 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:19:18,143 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:19:18,146 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:19:18,148 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:19:18,150 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:19:18,153 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:19:18,155 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:19:18,157 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:19:18,160 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:19:18,162 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:19:18,164 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:19:18,167 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:19:18,169 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:19:18,171 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:19:18,174 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:19:18,176 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:19:18,178 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:19:18,181 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:19:18,183 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:19:18,185 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:19:18,188 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:19:18,190 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:19:18,192 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:19:18,194 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:19:18,197 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:19:18,199 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:19:18,201 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:19:18,204 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:19:18,206 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:19:18,208 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:19:18,211 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:19:18,213 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:19:18,215 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:19:18,218 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:19:18,220 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:19:18,222 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:19:18,225 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:19:18,227 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:19:18,229 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:19:18,232 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:19:18,234 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:19:18,236 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:19:18,239 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:19:18,241 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:19:18,243 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:19:18,246 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:19:18,248 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:19:18,250 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:19:18,252 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:19:18,255 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:19:18,258 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:19:18,260 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:19:18,263 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:19:18,265 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:19:18,267 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:19:18,270 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:19:18,272 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:19:18,274 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:19:18,277 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:19:18,279 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:19:18,281 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:19:18,283 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:19:18,286 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:19:18,288 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:19:18,290 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:19:18,293 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:19:18,295 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:19:18,298 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:19:18,300 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:19:18,302 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:19:18,304 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:19:18,307 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:19:18,309 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:19:18,311 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:19:18,313 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:19:18,315 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:19:18,318 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:19:18,320 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:19:18,322 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:19:18,324 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:19:18,327 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:19:18,329 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:19:18,331 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:19:18,333 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:19:18,336 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:19:18,338 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:19:18,340 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:19:18,342 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:19:18,345 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:19:18,347 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:19:18,349 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:19:18,351 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:19:18,354 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:19:18,356 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:19:18,358 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:19:18,360 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:19:18,363 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:19:18,365 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:19:18,367 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:19:18,369 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:19:18,372 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:19:18,374 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:19:18,376 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:19:18,378 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:19:18,381 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:19:18,383 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:19:18,385 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:19:18,387 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:19:18,390 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:19:18,392 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:19:18,394 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:19:18,396 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:19:18,399 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:19:18,401 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:19:18,403 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:19:18,405 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:19:18,408 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:19:18,410 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:19:18,412 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:19:18,414 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:19:18,417 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:19:18,419 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:19:18,421 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:19:18,423 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:19:18,426 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:19:18,428 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:19:18,430 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:19:18,432 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:19:18,435 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:19:18,437 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:19:18,439 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:19:18,441 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:19:18,444 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:19:18,446 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:19:18,448 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:19:18,450 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:19:18,452 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:19:18,455 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:19:18,457 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:19:18,459 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:19:18,461 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:19:18,464 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:19:18,466 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:19:18,468 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:19:18,470 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:19:18,473 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:19:18,475 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:19:18,477 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:19:18,479 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:19:18,481 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:19:18,484 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:19:18,486 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:19:18,488 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:19:18,490 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:19:18,493 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:19:18,495 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:19:18,497 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:19:18,499 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:19:18,502 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:19:18,504 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:19:18,506 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:19:18,508 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:19:18,511 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:19:18,513 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:19:18,515 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:19:18,517 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:19:18,519 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:19:18,522 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:19:18,524 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:19:18,526 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:19:18,528 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:19:18,531 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:19:18,533 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:19:18,535 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:19:18,537 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:19:18,540 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:19:18,542 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:19:18,544 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:19:18,546 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:19:18,549 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:19:18,551 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:19:18,553 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:19:18,555 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:19:18,558 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:19:18,560 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:19:18,562 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:19:18,564 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:19:18,567 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:19:18,569 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:19:18,571 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:19:18,573 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:19:18,575 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:19:18,578 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:19:18,580 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:19:18,582 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:19:18,584 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:19:18,587 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:19:18,589 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:19:18,591 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:19:18,593 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:19:18,596 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:19:18,598 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:19:18,600 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:19:18,602 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:19:18,836 [DEBUG] django.db.backends: (0.000) SELECT `accounts_user`.`id`, `accounts_user`.`password`, `accounts_user`.`last_login`, `accounts_user`.`is_superuser`, `accounts_user`.`email`, `accounts_user`.`username`, `accounts_user`.`first_name`, `accounts_user`.`last_name`, `accounts_user`.`rating`, `accounts_user`.`url`, `accounts_user`.`is_active`, `accounts_user`.`is_staff`, `accounts_user`.`is_admin`, `accounts_user`.`date_joined`, `accounts_user`.`date_registered`, `accounts_user`.`date_modified`, `accounts_user`.`organiser_id`, `accounts_user`.`translator_id`, `accounts_user`.`company_id`, `accounts_user`.`position` FROM `accounts_user` WHERE `accounts_user`.`id` = 58304 ; args=(58304,) +2015-07-28 11:19:18,840 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `django_messages_message` WHERE (`django_messages_message`.`recipient_id` = 58304 AND `django_messages_message`.`read_at` IS NULL AND `django_messages_message`.`recipient_deleted_at` IS NULL); args=(58304,) +2015-07-28 11:19:18,846 [DEBUG] django.db.backends: (0.001) SELECT `article_article_translation`.`id`, `article_article_translation`.`main_title`, `article_article_translation`.`preview`, `article_article_translation`.`description`, `article_article_translation`.`title`, `article_article_translation`.`descriptions`, `article_article_translation`.`keywords`, `article_article_translation`.`language_code`, `article_article_translation`.`master_id`, `article_article`.`id`, `article_article`.`slug`, `article_article`.`old_id`, `article_article`.`logo`, `article_article`.`author_id`, `article_article`.`exposition_id`, `article_article`.`conference_id`, `article_article`.`type`, `article_article`.`allow_comments`, `article_article`.`publish_date`, `article_article`.`expiry_date`, `article_article`.`in_sitemap`, `article_article`.`main_page`, `article_article`.`main_page_time`, `article_article`.`gen_description`, `article_article`.`created`, `article_article`.`modified` FROM `article_article_translation` LEFT OUTER JOIN `article_article` ON (`article_article_translation`.`master_id` = `article_article`.`id`) WHERE (`article_article`.`type` = 1 AND `article_article`.`publish_date` IS NOT NULL AND `article_article_translation`.`language_code` = 'ru' ) ORDER BY `article_article`.`main_page` DESC, `article_article`.`publish_date` DESC LIMIT 3; args=(1, 'ru') +2015-07-28 11:19:18,851 [DEBUG] django.db.backends: (0.001) SELECT `article_article_translation`.`id`, `article_article_translation`.`main_title`, `article_article_translation`.`preview`, `article_article_translation`.`description`, `article_article_translation`.`title`, `article_article_translation`.`descriptions`, `article_article_translation`.`keywords`, `article_article_translation`.`language_code`, `article_article_translation`.`master_id`, `article_article`.`id`, `article_article`.`slug`, `article_article`.`old_id`, `article_article`.`logo`, `article_article`.`author_id`, `article_article`.`exposition_id`, `article_article`.`conference_id`, `article_article`.`type`, `article_article`.`allow_comments`, `article_article`.`publish_date`, `article_article`.`expiry_date`, `article_article`.`in_sitemap`, `article_article`.`main_page`, `article_article`.`main_page_time`, `article_article`.`gen_description`, `article_article`.`created`, `article_article`.`modified` FROM `article_article_translation` LEFT OUTER JOIN `article_article` ON (`article_article_translation`.`master_id` = `article_article`.`id`) WHERE (`article_article`.`type` = 2 AND `article_article`.`publish_date` IS NOT NULL AND `article_article_translation`.`language_code` = 'ru' ) ORDER BY `article_article`.`main_page` DESC, `article_article`.`publish_date` DESC LIMIT 3; args=(2, 'ru') +2015-07-28 11:19:18,884 [DEBUG] django.db.backends: (0.003) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE `theme_theme_translation`.`language_code` = 'ru' ORDER BY `theme_theme_translation`.`name` ASC; args=('ru',) +2015-07-28 11:19:18,953 [DEBUG] django.db.backends: (0.002) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment`, `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code`, `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id`, `city_city`.`id`, `city_city`.`services`, `city_city`.`url`, `city_city`.`old_url`, `city_city`.`inflect`, `city_city`.`country_id`, `city_city`.`code_IATA_id`, `city_city`.`population`, `city_city`.`phone_code`, `city_city`.`created`, `city_city`.`modified`, `city_city_translation`.`id`, `city_city_translation`.`name`, `city_city_translation`.`region`, `city_city_translation`.`transport`, `city_city_translation`.`description`, `city_city_translation`.`famous_places`, `city_city_translation`.`shoping`, `city_city_translation`.`title`, `city_city_translation`.`descriptions`, `city_city_translation`.`keywords`, `city_city_translation`.`language_code`, `city_city_translation`.`master_id`, `place_exposition_placeexposition`.`id`, `place_exposition_placeexposition`.`url`, `place_exposition_placeexposition`.`country_id`, `place_exposition_placeexposition`.`city_id`, `place_exposition_placeexposition`.`photogallery_id`, `place_exposition_placeexposition`.`type`, `place_exposition_placeexposition`.`address`, `place_exposition_placeexposition`.`phone`, `place_exposition_placeexposition`.`fax`, `place_exposition_placeexposition`.`web_page`, `place_exposition_placeexposition`.`email`, `place_exposition_placeexposition`.`foundation_year`, `place_exposition_placeexposition`.`event_in_year`, `place_exposition_placeexposition`.`total_area`, `place_exposition_placeexposition`.`closed_area`, `place_exposition_placeexposition`.`open_area`, `place_exposition_placeexposition`.`total_pavilions`, `place_exposition_placeexposition`.`total_halls`, `place_exposition_placeexposition`.`virtual_tour`, `place_exposition_placeexposition`.`wifi`, `place_exposition_placeexposition`.`bank`, `place_exposition_placeexposition`.`children_room`, `place_exposition_placeexposition`.`disabled_service`, `place_exposition_placeexposition`.`conference_centre`, `place_exposition_placeexposition`.`business_centre`, `place_exposition_placeexposition`.`online_registration`, `place_exposition_placeexposition`.`cafe`, `place_exposition_placeexposition`.`terminals`, `place_exposition_placeexposition`.`parking`, `place_exposition_placeexposition`.`press_centre`, `place_exposition_placeexposition`.`mobile_application`, `place_exposition_placeexposition`.`logo`, `place_exposition_placeexposition`.`rating`, `place_exposition_placeexposition`.`partner`, `place_exposition_placeexposition`.`created`, `place_exposition_placeexposition`.`modified`, `place_exposition_placeexposition`.`views`, `place_exposition_placeexposition`.`is_published`, `place_exposition_placeexposition_translation`.`id`, `place_exposition_placeexposition_translation`.`name`, `place_exposition_placeexposition_translation`.`main_title`, `place_exposition_placeexposition_translation`.`description`, `place_exposition_placeexposition_translation`.`adress`, `place_exposition_placeexposition_translation`.`title`, `place_exposition_placeexposition_translation`.`descriptions`, `place_exposition_placeexposition_translation`.`keywords`, `place_exposition_placeexposition_translation`.`total_year_action`, `place_exposition_placeexposition_translation`.`language_code`, `place_exposition_placeexposition_translation`.`master_id` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`main_page` = 1 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(1, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:19:18,959 [DEBUG] django.db.backends: (0.000) SELECT `django_content_type`.`id`, `django_content_type`.`name`, `django_content_type`.`app_label`, `django_content_type`.`model` FROM `django_content_type` WHERE (`django_content_type`.`model` = 'exposition' AND `django_content_type`.`app_label` = 'exposition' ); args=('exposition', u'exposition') +2015-07-28 11:19:18,962 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 7358 AND `file_filemodel`.`content_type_id` = 28 AND `file_filemodel`.`purpose` = 'preview' ); args=(7358, 28, 'preview') +2015-07-28 11:19:18,963 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [imgs/WIRE.png] at [220x220] +2015-07-28 11:19:18,968 [DEBUG] django.db.backends: (0.000) SELECT `accounts_calendar`.`id`, `accounts_calendar`.`user_id` FROM `accounts_calendar` WHERE `accounts_calendar`.`user_id` = 58304 ; args=(58304,) +2015-07-28 11:19:18,971 [DEBUG] django.db.backends: (0.000) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `accounts_calendar_expositions` ON (`exposition_exposition`.`id` = `accounts_calendar_expositions`.`exposition_id`) WHERE (`accounts_calendar_expositions`.`calendar_id` = 77974 AND `exposition_exposition_translation`.`language_code` = 'ru' ); args=(77974, 'ru') +2015-07-28 11:19:18,973 [DEBUG] django.db.backends: (0.000) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `accounts_calendar_expositions` ON (`exposition_exposition`.`id` = `accounts_calendar_expositions`.`exposition_id`) WHERE (`accounts_calendar_expositions`.`calendar_id` = 77974 AND `exposition_exposition_translation`.`language_code` = 'ru' ); args=(77974, 'ru') +2015-07-28 11:19:18,979 [DEBUG] django.db.backends: (0.000) SELECT `theme_tag_translation`.`id`, `theme_tag_translation`.`name`, `theme_tag_translation`.`main_title`, `theme_tag_translation`.`description`, `theme_tag_translation`.`title`, `theme_tag_translation`.`descriptions`, `theme_tag_translation`.`keywords`, `theme_tag_translation`.`language_code`, `theme_tag_translation`.`master_id`, `theme_tag`.`id`, `theme_tag`.`url`, `theme_tag`.`old_url`, `theme_tag`.`theme_id`, `theme_tag`.`inflect` FROM `theme_tag_translation` LEFT OUTER JOIN `theme_tag` ON (`theme_tag_translation`.`master_id` = `theme_tag`.`id`) LEFT OUTER JOIN `exposition_exposition_tag` ON (`theme_tag`.`id` = `exposition_exposition_tag`.`tag_id`) WHERE (`exposition_exposition_tag`.`exposition_id` = 7358 AND `theme_tag_translation`.`language_code` = 'ru' ) ORDER BY `theme_tag_translation`.`name` ASC; args=(7358, 'ru') +2015-07-28 11:19:18,982 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 7523 AND `file_filemodel`.`content_type_id` = 28 AND `file_filemodel`.`purpose` = 'preview' ); args=(7523, 28, 'preview') +2015-07-28 11:19:18,983 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [imgs/Rosupack.png] at [220x220] +2015-07-28 11:19:18,987 [DEBUG] django.db.backends: (0.000) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `accounts_calendar_expositions` ON (`exposition_exposition`.`id` = `accounts_calendar_expositions`.`exposition_id`) WHERE (`accounts_calendar_expositions`.`calendar_id` = 77974 AND `exposition_exposition_translation`.`language_code` = 'ru' ); args=(77974, 'ru') +2015-07-28 11:19:18,990 [DEBUG] django.db.backends: (0.000) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `accounts_calendar_expositions` ON (`exposition_exposition`.`id` = `accounts_calendar_expositions`.`exposition_id`) WHERE (`accounts_calendar_expositions`.`calendar_id` = 77974 AND `exposition_exposition_translation`.`language_code` = 'ru' ); args=(77974, 'ru') +2015-07-28 11:19:18,992 [DEBUG] django.db.backends: (0.000) SELECT `theme_tag_translation`.`id`, `theme_tag_translation`.`name`, `theme_tag_translation`.`main_title`, `theme_tag_translation`.`description`, `theme_tag_translation`.`title`, `theme_tag_translation`.`descriptions`, `theme_tag_translation`.`keywords`, `theme_tag_translation`.`language_code`, `theme_tag_translation`.`master_id`, `theme_tag`.`id`, `theme_tag`.`url`, `theme_tag`.`old_url`, `theme_tag`.`theme_id`, `theme_tag`.`inflect` FROM `theme_tag_translation` LEFT OUTER JOIN `theme_tag` ON (`theme_tag_translation`.`master_id` = `theme_tag`.`id`) LEFT OUTER JOIN `exposition_exposition_tag` ON (`theme_tag`.`id` = `exposition_exposition_tag`.`tag_id`) WHERE (`exposition_exposition_tag`.`exposition_id` = 7523 AND `theme_tag_translation`.`language_code` = 'ru' ) ORDER BY `theme_tag_translation`.`name` ASC; args=(7523, 'ru') +2015-07-28 11:19:18,996 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 8108 AND `file_filemodel`.`content_type_id` = 28 AND `file_filemodel`.`purpose` = 'preview' ); args=(8108, 28, 'preview') +2015-07-28 11:19:18,996 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [[]] at [220x220] +2015-07-28 11:19:19,000 [DEBUG] django.db.backends: (0.000) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `accounts_calendar_expositions` ON (`exposition_exposition`.`id` = `accounts_calendar_expositions`.`exposition_id`) WHERE (`accounts_calendar_expositions`.`calendar_id` = 77974 AND `exposition_exposition_translation`.`language_code` = 'ru' ); args=(77974, 'ru') +2015-07-28 11:19:19,002 [DEBUG] django.db.backends: (0.000) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `accounts_calendar_expositions` ON (`exposition_exposition`.`id` = `accounts_calendar_expositions`.`exposition_id`) WHERE (`accounts_calendar_expositions`.`calendar_id` = 77974 AND `exposition_exposition_translation`.`language_code` = 'ru' ); args=(77974, 'ru') +2015-07-28 11:19:19,005 [DEBUG] django.db.backends: (0.000) SELECT `theme_tag_translation`.`id`, `theme_tag_translation`.`name`, `theme_tag_translation`.`main_title`, `theme_tag_translation`.`description`, `theme_tag_translation`.`title`, `theme_tag_translation`.`descriptions`, `theme_tag_translation`.`keywords`, `theme_tag_translation`.`language_code`, `theme_tag_translation`.`master_id`, `theme_tag`.`id`, `theme_tag`.`url`, `theme_tag`.`old_url`, `theme_tag`.`theme_id`, `theme_tag`.`inflect` FROM `theme_tag_translation` LEFT OUTER JOIN `theme_tag` ON (`theme_tag_translation`.`master_id` = `theme_tag`.`id`) LEFT OUTER JOIN `exposition_exposition_tag` ON (`theme_tag`.`id` = `exposition_exposition_tag`.`tag_id`) WHERE (`exposition_exposition_tag`.`exposition_id` = 8108 AND `theme_tag_translation`.`language_code` = 'ru' ) ORDER BY `theme_tag_translation`.`name` ASC; args=(8108, 'ru') +2015-07-28 11:19:19,069 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE (`theme_theme`.`types` = (`theme_theme`.`types` | 1) AND `theme_theme_translation`.`language_code` = 'ru' ) ORDER BY `theme_theme`.`main_page` DESC LIMIT 6; args=('ru',) +2015-07-28 11:19:19,076 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `exposition_exposition_theme` ON (`exposition_exposition`.`id` = `exposition_exposition_theme`.`exposition_id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`is_published` = 1 AND `exposition_exposition`.`data_begin` >= '2015-07-28' AND `exposition_exposition_theme`.`theme_id` = 54 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 54, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:19:19,082 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `exposition_exposition_theme` ON (`exposition_exposition`.`id` = `exposition_exposition_theme`.`exposition_id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`is_published` = 1 AND `exposition_exposition`.`data_begin` >= '2015-07-28' AND `exposition_exposition_theme`.`theme_id` = 51 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 51, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:19:19,087 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `exposition_exposition_theme` ON (`exposition_exposition`.`id` = `exposition_exposition_theme`.`exposition_id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`is_published` = 1 AND `exposition_exposition`.`data_begin` >= '2015-07-28' AND `exposition_exposition_theme`.`theme_id` = 48 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 48, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:19:19,093 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `exposition_exposition_theme` ON (`exposition_exposition`.`id` = `exposition_exposition_theme`.`exposition_id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`is_published` = 1 AND `exposition_exposition`.`data_begin` >= '2015-07-28' AND `exposition_exposition_theme`.`theme_id` = 39 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 39, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:19:19,099 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `exposition_exposition_theme` ON (`exposition_exposition`.`id` = `exposition_exposition_theme`.`exposition_id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`is_published` = 1 AND `exposition_exposition`.`data_begin` >= '2015-07-28' AND `exposition_exposition_theme`.`theme_id` = 37 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 37, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:19:19,104 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `exposition_exposition_theme` ON (`exposition_exposition`.`id` = `exposition_exposition_theme`.`exposition_id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`is_published` = 1 AND `exposition_exposition`.`data_begin` >= '2015-07-28' AND `exposition_exposition_theme`.`theme_id` = 31 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 31, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:19:19,106 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE (`theme_theme`.`types` = (`theme_theme`.`types` | 2) AND `theme_theme_translation`.`language_code` = 'ru' ) ORDER BY `theme_theme`.`main_page` DESC LIMIT 6; args=('ru',) +2015-07-28 11:19:19,115 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `conference_conference_translation` LEFT OUTER JOIN `conference_conference` ON (`conference_conference_translation`.`master_id` = `conference_conference`.`id`) LEFT OUTER JOIN `conference_conference_theme` ON (`conference_conference`.`id` = `conference_conference_theme`.`conference_id`) LEFT OUTER JOIN `country_country` ON (`conference_conference`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`conference_conference`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_conference_placeconference` ON (`conference_conference`.`place_id` = `place_conference_placeconference`.`id`) LEFT OUTER JOIN `place_conference_placeconference_translation` ON (`place_conference_placeconference`.`id` = `place_conference_placeconference_translation`.`master_id`) WHERE (`conference_conference`.`is_published` = 1 AND `conference_conference`.`data_begin` >= '2015-07-28' AND `conference_conference_theme`.`theme_id` = 87 AND `conference_conference_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_conference_placeconference_translation`.`language_code` = 'ru' OR `place_conference_placeconference_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 87, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:19:19,121 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `conference_conference_translation` LEFT OUTER JOIN `conference_conference` ON (`conference_conference_translation`.`master_id` = `conference_conference`.`id`) LEFT OUTER JOIN `conference_conference_theme` ON (`conference_conference`.`id` = `conference_conference_theme`.`conference_id`) LEFT OUTER JOIN `country_country` ON (`conference_conference`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`conference_conference`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_conference_placeconference` ON (`conference_conference`.`place_id` = `place_conference_placeconference`.`id`) LEFT OUTER JOIN `place_conference_placeconference_translation` ON (`place_conference_placeconference`.`id` = `place_conference_placeconference_translation`.`master_id`) WHERE (`conference_conference`.`is_published` = 1 AND `conference_conference`.`data_begin` >= '2015-07-28' AND `conference_conference_theme`.`theme_id` = 84 AND `conference_conference_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_conference_placeconference_translation`.`language_code` = 'ru' OR `place_conference_placeconference_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 84, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:19:19,126 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `conference_conference_translation` LEFT OUTER JOIN `conference_conference` ON (`conference_conference_translation`.`master_id` = `conference_conference`.`id`) LEFT OUTER JOIN `conference_conference_theme` ON (`conference_conference`.`id` = `conference_conference_theme`.`conference_id`) LEFT OUTER JOIN `country_country` ON (`conference_conference`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`conference_conference`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_conference_placeconference` ON (`conference_conference`.`place_id` = `place_conference_placeconference`.`id`) LEFT OUTER JOIN `place_conference_placeconference_translation` ON (`place_conference_placeconference`.`id` = `place_conference_placeconference_translation`.`master_id`) WHERE (`conference_conference`.`is_published` = 1 AND `conference_conference`.`data_begin` >= '2015-07-28' AND `conference_conference_theme`.`theme_id` = 74 AND `conference_conference_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_conference_placeconference_translation`.`language_code` = 'ru' OR `place_conference_placeconference_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 74, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:19:19,132 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `conference_conference_translation` LEFT OUTER JOIN `conference_conference` ON (`conference_conference_translation`.`master_id` = `conference_conference`.`id`) LEFT OUTER JOIN `conference_conference_theme` ON (`conference_conference`.`id` = `conference_conference_theme`.`conference_id`) LEFT OUTER JOIN `country_country` ON (`conference_conference`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`conference_conference`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_conference_placeconference` ON (`conference_conference`.`place_id` = `place_conference_placeconference`.`id`) LEFT OUTER JOIN `place_conference_placeconference_translation` ON (`place_conference_placeconference`.`id` = `place_conference_placeconference_translation`.`master_id`) WHERE (`conference_conference`.`is_published` = 1 AND `conference_conference`.`data_begin` >= '2015-07-28' AND `conference_conference_theme`.`theme_id` = 70 AND `conference_conference_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_conference_placeconference_translation`.`language_code` = 'ru' OR `place_conference_placeconference_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 70, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:19:19,138 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `conference_conference_translation` LEFT OUTER JOIN `conference_conference` ON (`conference_conference_translation`.`master_id` = `conference_conference`.`id`) LEFT OUTER JOIN `conference_conference_theme` ON (`conference_conference`.`id` = `conference_conference_theme`.`conference_id`) LEFT OUTER JOIN `country_country` ON (`conference_conference`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`conference_conference`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_conference_placeconference` ON (`conference_conference`.`place_id` = `place_conference_placeconference`.`id`) LEFT OUTER JOIN `place_conference_placeconference_translation` ON (`place_conference_placeconference`.`id` = `place_conference_placeconference_translation`.`master_id`) WHERE (`conference_conference`.`is_published` = 1 AND `conference_conference`.`data_begin` >= '2015-07-28' AND `conference_conference_theme`.`theme_id` = 68 AND `conference_conference_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_conference_placeconference_translation`.`language_code` = 'ru' OR `place_conference_placeconference_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 68, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:19:19,143 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `conference_conference_translation` LEFT OUTER JOIN `conference_conference` ON (`conference_conference_translation`.`master_id` = `conference_conference`.`id`) LEFT OUTER JOIN `conference_conference_theme` ON (`conference_conference`.`id` = `conference_conference_theme`.`conference_id`) LEFT OUTER JOIN `country_country` ON (`conference_conference`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`conference_conference`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_conference_placeconference` ON (`conference_conference`.`place_id` = `place_conference_placeconference`.`id`) LEFT OUTER JOIN `place_conference_placeconference_translation` ON (`place_conference_placeconference`.`id` = `place_conference_placeconference_translation`.`master_id`) WHERE (`conference_conference`.`is_published` = 1 AND `conference_conference`.`data_begin` >= '2015-07-28' AND `conference_conference_theme`.`theme_id` = 54 AND `conference_conference_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_conference_placeconference_translation`.`language_code` = 'ru' OR `place_conference_placeconference_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 54, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:19:19,144 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [articles_preview/expomilano_2015_3.jpg] at [80x80] +2015-07-28 11:19:19,146 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [articles_preview/3dprint.jpg] at [80x80] +2015-07-28 11:19:19,147 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [articles_preview/rif.png] at [80x80] +2015-07-28 11:19:19,150 [DEBUG] django.db.backends: (0.000) SELECT `django_content_type`.`id`, `django_content_type`.`name`, `django_content_type`.`app_label`, `django_content_type`.`model` FROM `django_content_type` WHERE (`django_content_type`.`model` = 'article' AND `django_content_type`.`app_label` = 'article' ); args=('article', u'article') +2015-07-28 11:19:19,152 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 50 AND `file_filemodel`.`content_type_id` = 10 AND `file_filemodel`.`purpose` = 'preview' ); args=(50, 10, 'preview') +2015-07-28 11:19:19,154 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 50 AND `file_filemodel`.`content_type_id` = 10 AND `file_filemodel`.`purpose` = 'preview' ); args=(50, 10, 'preview') +2015-07-28 11:19:19,155 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [imgs/oborudovanie.png] at [220x100] +2015-07-28 11:19:19,157 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 48 AND `file_filemodel`.`content_type_id` = 10 AND `file_filemodel`.`purpose` = 'preview' ); args=(48, 10, 'preview') +2015-07-28 11:19:19,159 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 48 AND `file_filemodel`.`content_type_id` = 10 AND `file_filemodel`.`purpose` = 'preview' ); args=(48, 10, 'preview') +2015-07-28 11:19:19,160 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [imgs/strategii_reklami.png] at [220x100] +2015-07-28 11:19:19,162 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 40 AND `file_filemodel`.`content_type_id` = 10 AND `file_filemodel`.`purpose` = 'preview' ); args=(40, 10, 'preview') +2015-07-28 11:19:19,172 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:19:19,191 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:19:19,194 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:19:19,196 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:19:19,199 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:19:19,201 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:19:19,204 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:19:19,206 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:19:19,209 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:19:19,212 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:19:19,214 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:19:19,217 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:19:19,219 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:19:19,222 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:19:19,224 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:19:19,226 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:19:19,229 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:19:19,231 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:19:19,234 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:19:19,237 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:19:19,239 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:19:19,242 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:19:19,244 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:19:19,247 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:19:19,249 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:19:19,252 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:19:19,254 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:19:19,257 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:19:19,259 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:19:19,262 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:19:19,264 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:19:19,267 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:19:19,269 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:19:19,272 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:19:19,274 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:19:19,277 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:19:19,279 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:19:19,282 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:19:19,284 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:19:19,287 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:19:19,289 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:19:19,292 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:19:19,296 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:19:19,299 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:19:19,301 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:19:19,304 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:19:19,306 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:19:19,309 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:19:19,311 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:19:19,314 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:19:19,316 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:19:19,319 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:19:19,321 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:19:19,324 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:19:19,326 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:19:19,329 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:19:19,331 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:19:19,334 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:19:19,336 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:19:19,339 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:19:19,341 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:19:19,344 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:19:19,346 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:19:19,349 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:19:19,351 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:19:19,354 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:19:19,356 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:19:19,359 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:19:19,361 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:19:19,364 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:19:19,366 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:19:19,369 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:19:19,371 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:19:19,374 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:19:19,376 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:19:19,379 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:19:19,381 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:19:19,384 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:19:19,386 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:19:19,389 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:19:19,391 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:19:19,394 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:19:19,396 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:19:19,399 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:19:19,401 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:19:19,404 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:19:19,406 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:19:19,409 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:19:19,411 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:19:19,414 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:19:19,416 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:19:19,419 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:19:19,421 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:19:19,424 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:19:19,426 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:19:19,429 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:19:19,431 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:19:19,434 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:19:19,436 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:19:19,439 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:19:19,441 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:19:19,444 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:19:19,446 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:19:19,449 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:19:19,451 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:19:19,454 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:19:19,456 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:19:19,459 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:19:19,461 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:19:19,464 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:19:19,466 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:19:19,469 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:19:19,471 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:19:19,474 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:19:19,476 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:19:19,479 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:19:19,481 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:19:19,483 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:19:19,486 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:19:19,488 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:19:19,491 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:19:19,493 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:19:19,496 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:19:19,498 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:19:19,501 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:19:19,503 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:19:19,506 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:19:19,508 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:19:19,511 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:19:19,513 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:19:19,516 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:19:19,518 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:19:19,521 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:19:19,523 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:19:19,526 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:19:19,528 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:19:19,531 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:19:19,533 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:19:19,536 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:19:19,538 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:19:19,541 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:19:19,543 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:19:19,545 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:19:19,548 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:19:19,550 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:19:19,553 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:19:19,555 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:19:19,558 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:19:19,560 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:19:19,563 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:19:19,565 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:19:19,568 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:19:19,570 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:19:19,573 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:19:19,575 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:19:19,577 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:19:19,580 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:19:19,582 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:19:19,585 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:19:19,587 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:19:19,590 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:19:19,592 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:19:19,595 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:19:19,597 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:19:19,600 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:19:19,602 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:19:19,605 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:19:19,607 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:19:19,609 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:19:19,612 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:19:19,614 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:19:19,617 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:19:19,619 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:19:19,622 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:19:19,624 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:19:19,627 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:19:19,629 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:19:19,632 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:19:19,634 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:19:19,637 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:19:19,639 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:19:19,642 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:19:19,644 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:19:19,647 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:19:19,649 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:19:19,651 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:19:19,654 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:19:19,656 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:19:19,659 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:19:19,662 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:19:19,664 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:19:19,667 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:19:19,669 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:19:19,672 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:19:19,674 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:19:19,677 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:19:19,679 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:19:19,682 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:19:19,684 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:19:19,687 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:19:19,689 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:19:19,692 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:19:19,694 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:19:19,697 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:19:19,699 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:19:19,702 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:19:33,362 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:19:33,364 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:19:33,386 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:19:33,387 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:19:33,403 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:19:33,404 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:19:33,459 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:19:33,460 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:19:33,529 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:19:33,530 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:19:33,537 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:19:33,538 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:19:33,600 [DEBUG] django.db.backends: (0.001) SELECT DISTINCT `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect`, `theme_theme_translation`.`name` FROM `theme_theme` INNER JOIN `exposition_exposition_theme` ON (`theme_theme`.`id` = `exposition_exposition_theme`.`theme_id`) INNER JOIN `exposition_exposition` ON (`exposition_exposition_theme`.`exposition_id` = `exposition_exposition`.`id`) INNER JOIN `exposition_exposition_theme` T4 ON (`exposition_exposition`.`id` = T4.`exposition_id`) INNER JOIN `theme_theme` T5 ON (T4.`theme_id` = T5.`id`) INNER JOIN `theme_theme_translation` ON (`theme_theme`.`id` = `theme_theme_translation`.`master_id`) WHERE (T5.`id` IS NOT NULL AND `theme_theme_translation`.`language_code` = 'ru' ) ORDER BY `theme_theme_translation`.`name` ASC; args=('ru',) +2015-07-28 11:19:33,607 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 1 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:19:33,610 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 2 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:19:33,612 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 75 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:19:33,614 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 94 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:19:33,617 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 3 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:19:33,619 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 37 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:19:33,621 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 84 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:19:33,624 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 4 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:19:33,626 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 64 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:19:33,629 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 77 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:19:33,631 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 6 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:19:33,633 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 7 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:19:33,636 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 8 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:19:33,638 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 5 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:19:33,640 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 10 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:19:33,643 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 11 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:19:33,645 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 74 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:19:33,647 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 70 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:19:33,650 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 73 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:19:33,652 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 69 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:19:33,654 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 71 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:19:33,657 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 68 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:19:33,659 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 72 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:19:33,662 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 45 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:19:33,664 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 13 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:19:33,666 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 14 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:19:33,669 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 42 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:19:33,671 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 15 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:19:33,674 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 43 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:19:33,676 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 27 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:19:33,678 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 22 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:19:33,681 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 16 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:19:33,683 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 17 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:19:33,686 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 87 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:19:33,688 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 44 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:19:33,690 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 50 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:19:33,693 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 18 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:19:33,695 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 21 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:19:33,697 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 62 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:19:33,700 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 51 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:19:33,702 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 23 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:19:33,705 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 97 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:19:33,707 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 9 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:19:33,709 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 31 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:19:33,712 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 63 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:19:33,714 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 24 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:19:33,716 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 26 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:19:33,719 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 28 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:19:33,721 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 30 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:19:33,723 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 34 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:19:33,726 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 90 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:19:33,728 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 54 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:19:33,730 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 48 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:19:33,733 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 32 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:19:33,735 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 29 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:19:33,738 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 83 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:19:33,740 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 35 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:19:33,742 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 36 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:19:33,745 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 38 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:19:33,747 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 39 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:19:33,749 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 40 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:19:33,753 [DEBUG] django.db.backends: (0.000) SELECT `country_area_translation`.`id`, `country_area_translation`.`name`, `country_area_translation`.`language_code`, `country_area_translation`.`master_id`, `country_area`.`id` FROM `country_area_translation` LEFT OUTER JOIN `country_area` ON (`country_area_translation`.`master_id` = `country_area`.`id`) LEFT OUTER JOIN `country_area_translation` T3 ON (`country_area`.`id` = T3.`master_id`) WHERE `country_area_translation`.`language_code` = 'ru' ORDER BY T3.`name` ASC; args=('ru',) +2015-07-28 11:19:33,875 [DEBUG] django.db.backends: (0.000) SELECT `country_area_translation`.`id`, `country_area_translation`.`name`, `country_area_translation`.`language_code`, `country_area_translation`.`master_id`, `country_area`.`id` FROM `country_area_translation` LEFT OUTER JOIN `country_area` ON (`country_area_translation`.`master_id` = `country_area`.`id`) LEFT OUTER JOIN `country_area_translation` T3 ON (`country_area`.`id` = T3.`master_id`) WHERE `country_area_translation`.`language_code` = 'ru' ORDER BY T3.`name` ASC; args=('ru',) +2015-07-28 11:19:33,993 [DEBUG] django.db.backends: (0.003) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE `theme_theme_translation`.`language_code` = 'ru' ORDER BY `theme_theme_translation`.`name` ASC; args=('ru',) +2015-07-28 11:19:34,003 [DEBUG] django.db.backends: (0.000) SELECT `country_area_translation`.`id`, `country_area_translation`.`name`, `country_area_translation`.`language_code`, `country_area_translation`.`master_id`, `country_area`.`id` FROM `country_area_translation` LEFT OUTER JOIN `country_area` ON (`country_area_translation`.`master_id` = `country_area`.`id`) LEFT OUTER JOIN `country_area_translation` T3 ON (`country_area`.`id` = T3.`master_id`) WHERE `country_area_translation`.`language_code` = 'ru' ORDER BY T3.`name` ASC; args=('ru',) +2015-07-28 11:19:34,194 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:19:34,205 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:19:34,207 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:19:34,209 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:19:34,212 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:19:34,214 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:19:34,216 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:19:34,219 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:19:34,221 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:19:34,224 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:19:34,226 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:19:34,228 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:19:34,231 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:19:34,233 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:19:34,235 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:19:34,238 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:19:34,240 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:19:34,242 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:19:34,244 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:19:34,247 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:19:34,249 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:19:34,251 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:19:34,254 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:19:34,256 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:19:34,258 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:19:34,261 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:19:34,263 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:19:34,265 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:19:34,268 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:19:34,270 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:19:34,272 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:19:34,275 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:19:34,277 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:19:34,279 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:19:34,282 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:19:34,284 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:19:34,286 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:19:34,289 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:19:34,291 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:19:34,293 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:19:34,296 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:19:34,298 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:19:34,300 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:19:34,303 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:19:34,305 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:19:34,307 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:19:34,310 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:19:34,312 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:19:34,314 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:19:34,317 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:19:34,319 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:19:34,321 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:19:34,323 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:19:34,326 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:19:34,328 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:19:34,331 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:19:34,333 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:19:34,335 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:19:34,337 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:19:34,340 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:19:34,342 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:19:34,344 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:19:34,347 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:19:34,349 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:19:34,351 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:19:34,354 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:19:34,356 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:19:34,358 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:19:34,361 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:19:34,363 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:19:34,365 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:19:34,368 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:19:34,370 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:19:34,372 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:19:34,375 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:19:34,377 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:19:34,379 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:19:34,382 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:19:34,384 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:19:34,386 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:19:34,389 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:19:34,391 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:19:34,393 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:19:34,395 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:19:34,398 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:19:34,400 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:19:34,403 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:19:34,405 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:19:34,407 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:19:34,409 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:19:34,412 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:19:34,414 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:19:34,417 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:19:34,419 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:19:34,421 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:19:34,423 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:19:34,426 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:19:34,428 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:19:34,433 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:19:34,435 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:19:34,437 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:19:34,448 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:19:34,450 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:19:34,452 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:19:34,455 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:19:34,457 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:19:34,459 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:19:34,462 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:19:34,464 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:19:34,466 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:19:34,469 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:19:34,471 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:19:34,474 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:19:34,476 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:19:34,478 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:19:34,481 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:19:34,483 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:19:34,485 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:19:34,488 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:19:34,490 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:19:34,492 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:19:34,495 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:19:34,497 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:19:34,499 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:19:34,502 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:19:34,504 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:19:34,506 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:19:34,509 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:19:34,511 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:19:34,513 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:19:34,516 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:19:34,518 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:19:34,521 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:19:34,523 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:19:34,525 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:19:34,528 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:19:34,530 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:19:34,532 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:19:34,535 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:19:34,537 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:19:34,539 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:19:34,542 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:19:34,544 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:19:34,546 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:19:34,549 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:19:34,551 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:19:34,553 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:19:34,556 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:19:34,558 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:19:34,560 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:19:34,563 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:19:34,565 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:19:34,567 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:19:34,570 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:19:34,572 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:19:34,574 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:19:34,577 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:19:34,579 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:19:34,582 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:19:34,584 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:19:34,586 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:19:34,589 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:19:34,591 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:19:34,593 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:19:34,596 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:19:34,598 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:19:34,600 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:19:34,603 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:19:34,605 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:19:34,607 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:19:34,610 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:19:34,612 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:19:34,614 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:19:34,617 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:19:34,619 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:19:34,621 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:19:34,624 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:19:34,626 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:19:34,629 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:19:34,631 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:20:01,181 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:20:01,205 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() diff --git a/meta/admin.py b/meta/admin.py index 5d944cd3..7f21eb6b 100644 --- a/meta/admin.py +++ b/meta/admin.py @@ -1,13 +1,7 @@ # -*- coding: utf-8 -*- -from django.shortcuts import render_to_response -from django.http import HttpResponseRedirect, HttpResponse -from django.core.context_processors import csrf +from django.http import HttpResponseRedirect from django.conf import settings -from django.forms.formsets import BaseFormSet, formset_factory -from django.forms.models import modelformset_factory -from django.contrib.contenttypes.models import ContentType -from django.contrib.auth.decorators import login_required -#models and forms +# models and forms from models import MetaSetting from forms import MetaForm, MetaFilterForm from functions.admin_views import AdminListView, AdminView @@ -45,7 +39,7 @@ class MetaView(AdminView): data['keywords_%s' % code] = trans_obj.keywords data['h1_%s' % code] = trans_obj.h1 - form =form_class(initial=data) + form = form_class(initial=data) return form else: return form_class() diff --git a/meta/admin_urls.py b/meta/admin_urls.py index a545ff76..f93ae2c7 100644 --- a/meta/admin_urls.py +++ b/meta/admin_urls.py @@ -1,16 +1,15 @@ # -*- coding: utf-8 -*- -from django.conf.urls import patterns, include, url -from admin import MetaListView, MetaView -from .views import CreateSeoText, SeoTextList, EditSeoText, DeleteSeoText +from django.conf.urls import patterns, url +from views import CreateSeoText, SeoTextList, EditSeoText, DeleteSeoText +from .admin import MetaListView, MetaView -urlpatterns = patterns('conference.admin', +urlpatterns = patterns('', url(r'^seo/new/$', CreateSeoText.as_view(), name='seo_new'), url(r'^seo/all/$', SeoTextList.as_view(), name='seo_all'), url(r'^seo/edit/(?P\d{1,5})/$', EditSeoText.as_view(), name='seo_edit'), url(r'^seo/delete/(?P\d{1,5})/$', DeleteSeoText.as_view(), name='seo_delete'), url(r'^all/$', MetaListView.as_view()), - #url(r'^change/(?P.*)/$', 'conference_change'), - url(r'^(?P.*)/$', MetaView.as_view()), + url(r'^(?P\d{1,6})/$', MetaView.as_view()), url(r'^$', MetaView.as_view()), ) \ No newline at end of file diff --git a/meta/forms.py b/meta/forms.py index eb93f28a..fd3c009a 100644 --- a/meta/forms.py +++ b/meta/forms.py @@ -1,9 +1,11 @@ # -*- coding: utf-8 -*- from django import forms from django.conf import settings -from models import MetaSetting +from models import MetaSetting, SeoText from functions.translate import fill_with_signal from functions.admin_forms import AdminFilterForm +from ckeditor.widgets import CKEditorWidget +from hvad.forms import TranslatableModelForm class MetaForm(forms.Form): @@ -14,7 +16,7 @@ class MetaForm(forms.Form): create dynamical translated fields fields """ super(MetaForm, self).__init__(*args, **kwargs) - #creates translated forms example: name_ru, name_en + # creates translated forms example: name_ru, name_en # len(10) is a hack for detect if settings.LANGUAGES is not configured it return all langs if len(settings.LANGUAGES) in range(10): for lid, (code, name) in enumerate(settings.LANGUAGES): @@ -44,17 +46,14 @@ class MetaForm(forms.Form): fill_with_signal(MetaSetting, meta, data) meta.save() + class MetaFilterForm(AdminFilterForm): model = MetaSetting -from .models import SeoText -from ckeditor.widgets import CKEditorWidget -from hvad.forms import TranslatableModelForm - class SeoTextForm(TranslatableModelForm): - + # lang = forms.ChoiceField(choices=settings.LANGUAGES) class Meta: model = SeoText - fields = ['url', 'title', 'body'] - widgets = {'body':CKEditorWidget} \ No newline at end of file + fields = ['url', 'title', 'page_title', 'description', 'body'] + widgets = {'body': CKEditorWidget} diff --git a/meta/models.py b/meta/models.py index 0bd6bdc0..98c6c5cd 100644 --- a/meta/models.py +++ b/meta/models.py @@ -3,9 +3,15 @@ from django.db import models from django.utils import translation from django.db.models.signals import post_save from django.utils.translation import ugettext_lazy as _ +from django.conf import settings +from django.core.urlresolvers import reverse_lazy +from django.core.cache import cache from hvad.models import TranslatableModel, TranslatedFields, TranslationManager from pymorphy.django_conf import default_morph as morph from functions.signal_handlers import post_save_handler +import copy + + # additional funcs MONTHES = {'jan': _(u'январе'), 'feb': _(u'феврале'), 'mar': _(u'марте'), 'apr': _(u'апреле'), @@ -118,62 +124,70 @@ post_save.connect(post_save_handler, sender=MetaSetting) # SEO - tests # -from django.db import models -from hvad.models import TranslatableModel, TranslatedFields -from django.conf import settings -from django.core.urlresolvers import reverse_lazy -from django.core.cache import cache - - class SeoTextManager(TranslationManager): cache_time = 120 + def cache_get(self, *args, **kwargs): url = kwargs.get('url') lang = kwargs.get('lang')[:2] or translation.get_language()[:2] key = 'seo_text_cache' result = cache.get(key) if result: - return result.get(lang+'_' + url) + return result.get("%s_%s" % (lang, url)) qs = list(SeoText.objects.language('all')) - value_dict = {obj.language_code+'_'+obj.url:obj for obj in qs} + value_dict = {obj.language_code+'_'+obj.url: obj for obj in qs} cache.set(key, value_dict, self.cache_time) - return value_dict.get(lang+'_'+url) - + return value_dict.get("%s_%s" % (lang, url)) class SeoText(TranslatableModel): - - url = models.CharField(max_length=50, unique=True) + url = models.CharField(max_length=50, unique=True, verbose_name=u"URL: www.expomap.ru") translations = TranslatedFields( - title=models.CharField(max_length=255), - body=models.TextField() + title=models.CharField(max_length=255, verbose_name=u"Заголовок"), + page_title=models.CharField(max_length=255, verbose_name=u"Тайтл страницы"), + description=models.CharField(max_length=1000, verbose_name=u"Дескрипшн"), + body=models.TextField(verbose_name=u"Текст") ) objects = SeoTextManager() + def __init__(self, *args, **kwargs): + super(SeoText, self).__init__(*args, **kwargs) + self.cache_fields = ['title', 'body', 'page_title', 'description'] + self.is_new = True + def get_absolute_url(self): - return reverse_lazy('seo_all') + return self.url def save(self, *args, **kwargs): - super(SeoText,self).save(*args, **kwargs) - - all_field_names = list(self._translated_field_names) - clear_f_n = [] - for field_name in all_field_names: - if field_name not in ['master', 'master_id', u'id', 'language_code']: - clear_f_n.append(field_name) - field_items = {field_name:getattr(self, field_name) for field_name in clear_f_n} - - langs = [lan[0] for lan in settings.LANGUAGES] - for lang in langs: - if lang not in self.get_available_languages(): - self.translate(lang) - for field in clear_f_n: - setattr(self, field, field_items.get(field, '')) - super(SeoText,self).save(*args, **kwargs) - return SeoText + super(SeoText, self).save(*args, **kwargs) + self.initial_language = 'ru' + + new_values = {field: getattr(self, field) for field in self.cache_fields} + langs = [code for code, _ in settings.LANGUAGES] + if self.is_new: + for lang in langs: + if lang not in self.get_available_languages(): + self.translate(lang) + for key, value in new_values.items(): + setattr(self, key, value) + self.save_translations(self) + else: + translations = {obj.language_code:obj for obj in list(self.translations.all())} + for lang in langs: + if lang is not self.initial_language: + tr = translations[lang] + for key, value in new_values.items(): + #if u'%s' % getattr(self, key) is u'' or getattr(self, key) is u'%s' % self.var_cache[key]: + setattr(tr, key, value) + tr.save() + + self.lazy_translation_getter(self.initial_language) + self.var_cache = {var: copy.copy(getattr(self, var)) for var in self.cache_fields} + self.is_new = False + return self def __unicode__(self): return self.url diff --git a/meta/views.py b/meta/views.py index 28d30eba..81db7390 100644 --- a/meta/views.py +++ b/meta/views.py @@ -1,9 +1,9 @@ from __future__ import unicode_literals - +from . import settings +from django.views.generic import CreateView, UpdateView, DeleteView, ListView from django.core.exceptions import ImproperlyConfigured from models import MetaSetting - -from . import settings +from .forms import SeoTextForm, SeoText class Meta(object): @@ -189,10 +189,6 @@ class MetadataMixin(object): return context -from django.views.generic import CreateView, UpdateView, DeleteView, ListView -from .models import SeoText -from .forms import SeoTextForm - class CreateSeoText(CreateView): form_class = SeoTextForm @@ -212,6 +208,7 @@ class EditSeoText(UpdateView): template_name = "admin/meta/create_seo_text.html" + class DeleteSeoText(DeleteView): model = SeoText template_name = "admin/meta/seo_confirm_delete.html" diff --git a/photologue/locale/en/LC_MESSAGES/django.po b/photologue/locale/en/LC_MESSAGES/django.po index a8029d7e..35d2d11d 100644 --- a/photologue/locale/en/LC_MESSAGES/django.po +++ b/photologue/locale/en/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Photologue\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-08-25 09:56+0000\n" +"POT-Creation-Date: 2015-09-08 13:44+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,171 +17,91 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: admin.py:67 -msgid "The following photo does not belong to the same site(s)" -msgid_plural "The following photos do not belong to the same site(s)" -msgstr[0] "" -msgstr[1] "" - -#: admin.py:79 -#, python-format -msgid "The gallery has been successfully added to %(site)s" -msgid_plural "The galleries have been successfully added to %(site)s" -msgstr[0] "" -msgstr[1] "" - -#: admin.py:86 -msgid "Add selected galleries from the current site" -msgstr "" - -#: admin.py:92 -#, python-format -msgid "The gallery has been successfully removed from %(site)s" -msgid_plural "" -"The selected galleries have been successfully removed from %(site)s" -msgstr[0] "" -msgstr[1] "" - -#: admin.py:99 -msgid "Remove selected galleries from the current site" -msgstr "" - -#: admin.py:106 -#, python-format -msgid "" -"All photos in gallery %(galleries)s have been successfully added to %(site)s" -msgid_plural "" -"All photos in galleries %(galleries)s have been successfully added to " -"%(site)s" -msgstr[0] "" -msgstr[1] "" - -#: admin.py:117 -msgid "Add all photos of selected galleries to the current site" -msgstr "" - -#: admin.py:124 -#, python-format -msgid "" -"All photos in gallery %(galleries)s have been successfully removed from " -"%(site)s" -msgid_plural "" -"All photos in galleries %(galleries)s have been successfully removed from " -"%(site)s" -msgstr[0] "" -msgstr[1] "" - -#: admin.py:135 -msgid "Remove all photos in selected galleries from the current site" -msgstr "" - -#: admin.py:186 -#, python-format -msgid "The photo has been successfully added to %(site)s" -msgid_plural "The selected photos have been successfully added to %(site)s" -msgstr[0] "" -msgstr[1] "" - -#: admin.py:193 -msgid "Add selected photos to the current site" -msgstr "" - -#: admin.py:199 -#, python-format -msgid "The photo has been successfully removed from %(site)s" -msgid_plural "The selected photos have been successfully removed from %(site)s" -msgstr[0] "" -msgstr[1] "" - -#: admin.py:206 -msgid "Remove selected photos from the current site" -msgstr "" - -#: models.py:56 +#: photologue/models.py:59 msgid "Separate tags with spaces, put quotes around multiple-word tags." msgstr "" -#: models.py:67 +#: photologue/models.py:70 msgid "Django-tagging was not found, tags will be treated as plain text." msgstr "" -#: models.py:115 +#: photologue/models.py:121 msgid "Very Low" msgstr "" -#: models.py:116 +#: photologue/models.py:122 msgid "Low" msgstr "" -#: models.py:117 +#: photologue/models.py:123 msgid "Medium-Low" msgstr "" -#: models.py:118 +#: photologue/models.py:124 msgid "Medium" msgstr "" -#: models.py:119 +#: photologue/models.py:125 msgid "Medium-High" msgstr "" -#: models.py:120 +#: photologue/models.py:126 msgid "High" msgstr "" -#: models.py:121 +#: photologue/models.py:127 msgid "Very High" msgstr "" -#: models.py:126 +#: photologue/models.py:132 msgid "Top" msgstr "" -#: models.py:127 +#: photologue/models.py:133 msgid "Right" msgstr "" -#: models.py:128 +#: photologue/models.py:134 msgid "Bottom" msgstr "" -#: models.py:129 +#: photologue/models.py:135 msgid "Left" msgstr "" -#: models.py:130 +#: photologue/models.py:136 msgid "Center (Default)" msgstr "" -#: models.py:134 +#: photologue/models.py:140 msgid "Flip left to right" msgstr "" -#: models.py:135 +#: photologue/models.py:141 msgid "Flip top to bottom" msgstr "" -#: models.py:136 +#: photologue/models.py:142 msgid "Rotate 90 degrees counter-clockwise" msgstr "" -#: models.py:137 +#: photologue/models.py:143 msgid "Rotate 90 degrees clockwise" msgstr "" -#: models.py:138 +#: photologue/models.py:144 msgid "Rotate 180 degrees" msgstr "" -#: models.py:142 +#: photologue/models.py:148 msgid "Tile" msgstr "" -#: models.py:143 +#: photologue/models.py:149 msgid "Scale" msgstr "" -#: models.py:154 +#: photologue/models.py:160 #, python-format msgid "" "Chain multiple filters using the following pattern \"FILTER_ONE->FILTER_TWO-" @@ -189,408 +109,505 @@ msgid "" "filters are available: %s." msgstr "" -#: models.py:159 -msgid "date published" +#: photologue/models.py:174 photologue/models.py:301 photologue/models.py:696 +msgid "title" msgstr "" -#: models.py:161 models.py:250 models.py:646 -msgid "title" +#: photologue/models.py:175 photologue/models.py:316 photologue/models.py:815 +msgid "description" msgstr "" -#: models.py:164 -msgid "title slug" +#: photologue/models.py:177 +msgid "date published" msgstr "" -#: models.py:166 models.py:651 -msgid "A \"slug\" is a unique URL-friendly title for an object." +#: photologue/models.py:180 +msgid "title slug" msgstr "" -#: models.py:167 models.py:263 models.py:730 -msgid "description" +#: photologue/models.py:182 photologue/models.py:704 +msgid "A \"slug\" is a unique URL-friendly title for an object." msgstr "" -#: models.py:169 models.py:266 models.py:656 +#: photologue/models.py:185 photologue/models.py:319 photologue/models.py:709 msgid "is public" msgstr "" -#: models.py:171 +#: photologue/models.py:187 msgid "Public galleries will be displayed in the default views." msgstr "" -#: models.py:175 models.py:669 +#: photologue/models.py:191 photologue/models.py:724 msgid "photos" msgstr "" -#: models.py:178 models.py:273 models.py:659 +#: photologue/models.py:197 photologue/models.py:326 photologue/models.py:712 msgid "tags" msgstr "" -#: models.py:179 models.py:660 +#: photologue/models.py:198 photologue/models.py:713 msgid "sites" msgstr "" -#: models.py:187 models.py:255 +#: photologue/models.py:206 photologue/models.py:308 msgid "gallery" msgstr "" -#: models.py:188 +#: photologue/models.py:207 msgid "galleries" msgstr "" -#: models.py:225 +#: photologue/models.py:276 msgid "count" msgstr "" -#: models.py:247 +#: photologue/models.py:298 msgid "images file (.zip)" msgstr "" -#: models.py:249 +#: photologue/models.py:300 msgid "Select a .zip file of images to upload into a new Gallery." msgstr "" -#: models.py:252 +#: photologue/models.py:305 msgid "" "All uploaded photos will be given a title made up of this title + a " "sequential number." msgstr "" -#: models.py:258 +#: photologue/models.py:311 msgid "" "Select a gallery to add these images to. Leave this empty to create a new " "gallery from the supplied title." msgstr "" -#: models.py:260 models.py:652 +#: photologue/models.py:313 photologue/models.py:698 msgid "caption" msgstr "" -#: models.py:262 +#: photologue/models.py:315 msgid "Caption will be added to all photos." msgstr "" -#: models.py:265 +#: photologue/models.py:318 msgid "A description of this Gallery." msgstr "" -#: models.py:268 +#: photologue/models.py:321 msgid "" "Uncheck this to make the uploaded gallery and included photographs private." msgstr "" -#: models.py:276 +#: photologue/models.py:329 msgid "gallery upload" msgstr "" -#: models.py:277 +#: photologue/models.py:330 msgid "gallery uploads" msgstr "" -#: models.py:289 +#: photologue/models.py:342 msgid "A gallery with that title already exists." msgstr "" -#: models.py:293 +#: photologue/models.py:346 msgid "Select an existing gallery or enter a new gallery name." msgstr "" -#: models.py:329 +#: photologue/models.py:382 +#, python-brace-format msgid "" "Ignoring file \"{filename}\" as it is in a subfolder; all images should be " "in the top folder of the zip." msgstr "" -#: models.py:349 -#, python-format +#: photologue/models.py:402 +#, python-format, python-brace-format msgid "" "Did not create photo \"%(filename)s\" with slug \"{1}\" as a photo with that " "slug already exists." msgstr "" -#: models.py:375 +#: photologue/models.py:428 +#, python-brace-format msgid "Could not process file \"{0}\" in the .zip archive." msgstr "" -#: models.py:392 models.py:863 +#: photologue/models.py:445 photologue/models.py:949 msgid "image" msgstr "" -#: models.py:395 +#: photologue/models.py:448 msgid "date taken" msgstr "" -#: models.py:399 +#: photologue/models.py:452 msgid "view count" msgstr "" -#: models.py:402 +#: photologue/models.py:455 msgid "crop from" msgstr "" -#: models.py:411 +#: photologue/models.py:464 msgid "effect" msgstr "" -#: models.py:429 +#: photologue/models.py:488 msgid "An \"admin_thumbnail\" photo size has not been defined." msgstr "" -#: models.py:437 +#: photologue/models.py:496 msgid "Thumbnail" msgstr "" -#: models.py:649 +#: photologue/models.py:702 msgid "slug" msgstr "" -#: models.py:654 +#: photologue/models.py:707 msgid "date added" msgstr "" -#: models.py:658 +#: photologue/models.py:711 msgid "Public photographs will be displayed in the default views." msgstr "" -#: models.py:668 +#: photologue/models.py:723 msgid "photo" msgstr "" -#: models.py:727 models.py:889 +#: photologue/models.py:812 photologue/models.py:981 msgid "name" msgstr "" -#: models.py:801 +#: photologue/models.py:887 msgid "rotate or flip" msgstr "" -#: models.py:805 models.py:827 +#: photologue/models.py:891 photologue/models.py:913 msgid "color" msgstr "" -#: models.py:807 +#: photologue/models.py:893 msgid "" "A factor of 0.0 gives a black and white image, a factor of 1.0 gives the " "original image." msgstr "" -#: models.py:808 +#: photologue/models.py:894 msgid "brightness" msgstr "" -#: models.py:810 +#: photologue/models.py:896 msgid "" "A factor of 0.0 gives a black image, a factor of 1.0 gives the original " "image." msgstr "" -#: models.py:811 +#: photologue/models.py:897 msgid "contrast" msgstr "" -#: models.py:813 +#: photologue/models.py:899 msgid "" "A factor of 0.0 gives a solid grey image, a factor of 1.0 gives the original " "image." msgstr "" -#: models.py:814 +#: photologue/models.py:900 msgid "sharpness" msgstr "" -#: models.py:816 +#: photologue/models.py:902 msgid "" "A factor of 0.0 gives a blurred image, a factor of 1.0 gives the original " "image." msgstr "" -#: models.py:817 +#: photologue/models.py:903 msgid "filters" msgstr "" -#: models.py:821 +#: photologue/models.py:907 msgid "size" msgstr "" -#: models.py:823 +#: photologue/models.py:909 msgid "" "The height of the reflection as a percentage of the orignal image. A factor " "of 0.0 adds no reflection, a factor of 1.0 adds a reflection equal to the " "height of the orignal image." msgstr "" -#: models.py:824 +#: photologue/models.py:910 msgid "strength" msgstr "" -#: models.py:826 +#: photologue/models.py:912 msgid "The initial opacity of the reflection gradient." msgstr "" -#: models.py:830 +#: photologue/models.py:916 msgid "" "The background color of the reflection gradient. Set this to match the " "background color of your page." msgstr "" -#: models.py:833 models.py:924 +#: photologue/models.py:919 photologue/models.py:1016 msgid "photo effect" msgstr "" -#: models.py:834 +#: photologue/models.py:920 msgid "photo effects" msgstr "" -#: models.py:865 +#: photologue/models.py:951 msgid "style" msgstr "" -#: models.py:869 +#: photologue/models.py:955 msgid "opacity" msgstr "" -#: models.py:871 +#: photologue/models.py:957 msgid "The opacity of the overlay." msgstr "" -#: models.py:874 +#: photologue/models.py:960 msgid "watermark" msgstr "" -#: models.py:875 +#: photologue/models.py:961 msgid "watermarks" msgstr "" -#: models.py:893 +#: photologue/models.py:985 msgid "" "Photo size name should contain only letters, numbers and underscores. " "Examples: \"thumbnail\", \"display\", \"small\", \"main_page_widget\"." msgstr "" -#: models.py:898 +#: photologue/models.py:990 msgid "width" msgstr "" -#: models.py:900 +#: photologue/models.py:992 msgid "" "If width is set to \"0\" the image will be scaled to the supplied height." msgstr "" -#: models.py:901 +#: photologue/models.py:993 msgid "height" msgstr "" -#: models.py:903 +#: photologue/models.py:995 msgid "" "If height is set to \"0\" the image will be scaled to the supplied width" msgstr "" -#: models.py:904 +#: photologue/models.py:996 msgid "quality" msgstr "" -#: models.py:907 +#: photologue/models.py:999 msgid "JPEG image quality." msgstr "" -#: models.py:908 +#: photologue/models.py:1000 msgid "upscale images?" msgstr "" -#: models.py:910 +#: photologue/models.py:1002 msgid "" "If selected the image will be scaled up if necessary to fit the supplied " "dimensions. Cropped sizes will be upscaled regardless of this setting." msgstr "" -#: models.py:911 +#: photologue/models.py:1003 msgid "crop to fit?" msgstr "" -#: models.py:913 +#: photologue/models.py:1005 msgid "" "If selected the image will be scaled and cropped to fit the supplied " "dimensions." msgstr "" -#: models.py:914 +#: photologue/models.py:1006 msgid "pre-cache?" msgstr "" -#: models.py:916 +#: photologue/models.py:1008 msgid "If selected this photo size will be pre-cached as photos are added." msgstr "" -#: models.py:917 +#: photologue/models.py:1009 msgid "increment view count?" msgstr "" -#: models.py:919 +#: photologue/models.py:1011 msgid "" "If selected the image's \"view_count\" will be incremented when this photo " "size is displayed." msgstr "" -#: models.py:929 +#: photologue/models.py:1021 msgid "watermark image" msgstr "" -#: models.py:933 +#: photologue/models.py:1025 msgid "photo size" msgstr "" -#: models.py:934 +#: photologue/models.py:1026 msgid "photo sizes" msgstr "" -#: models.py:951 +#: photologue/models.py:1043 msgid "Can only crop photos if both width and height dimensions are set." msgstr "" -#: contrib/bootstrap/templates/photologue/gallery_archive.html:5 -#: contrib/bootstrap/templates/photologue/gallery_archive.html:11 +#: photologue/templates/photologue/gallery_archive.html:4 +#: photologue/templates/photologue/gallery_archive.html:9 msgid "Latest Photo Galleries" msgstr "" -#: contrib/bootstrap/templates/photologue/gallery_archive.html:20 -#: contrib/bootstrap/templates/photologue/gallery_detail.html:12 -#: contrib/bootstrap/templates/photologue/gallery_list.html:20 -#: contrib/bootstrap/templates/photologue/photo_detail.html:13 -msgid "Published" +#: photologue/templates/photologue/gallery_archive.html:14 +#: photologue/templates/photologue/photo_archive.html:16 +msgid "Filter by year" msgstr "" -#: contrib/bootstrap/templates/photologue/gallery_archive.html:31 -#: contrib/bootstrap/templates/photologue/gallery_list.html:31 +#: photologue/templates/photologue/gallery_archive.html:30 +#: photologue/templates/photologue/gallery_list.html:30 msgid "No galleries were found" msgstr "" -#: contrib/bootstrap/templates/photologue/gallery_archive.html:36 -#: contrib/bootstrap/templates/photologue/gallery_detail.html:21 +#: photologue/templates/photologue/gallery_archive_day.html:4 +#: photologue/templates/photologue/gallery_archive_day.html:8 +#, python-format +msgid "Galleries for %(show_day)s" +msgstr "" + +#: photologue/templates/photologue/gallery_archive_day.html:15 +#: photologue/templates/photologue/gallery_archive_month.html:30 +#: photologue/templates/photologue/gallery_archive_year.html:30 +msgid "No galleries were found." +msgstr "" + +#: photologue/templates/photologue/gallery_archive_day.html:19 +msgid "View all galleries for month" +msgstr "" + +#: photologue/templates/photologue/gallery_archive_month.html:4 +#: photologue/templates/photologue/gallery_archive_month.html:9 +#, python-format +msgid "Galleries for %(show_month)s" +msgstr "" + +#: photologue/templates/photologue/gallery_archive_month.html:14 +#: photologue/templates/photologue/photo_archive_month.html:14 +msgid "Filter by day" +msgstr "" + +#: photologue/templates/photologue/gallery_archive_month.html:34 +msgid "View all galleries for year" +msgstr "" + +#: photologue/templates/photologue/gallery_archive_year.html:4 +#: photologue/templates/photologue/gallery_archive_year.html:9 +#, python-format +msgid "Galleries for %(show_year)s" +msgstr "" + +#: photologue/templates/photologue/gallery_archive_year.html:14 +#: photologue/templates/photologue/photo_archive_year.html:15 +msgid "Filter by month" +msgstr "" + +#: photologue/templates/photologue/gallery_archive_year.html:34 +#: photologue/templates/photologue/gallery_detail.html:20 msgid "View all galleries" msgstr "" -#: contrib/bootstrap/templates/photologue/gallery_list.html:5 -#: contrib/bootstrap/templates/photologue/gallery_list.html:11 +#: photologue/templates/photologue/gallery_detail.html:11 +#: photologue/templates/photologue/gallery_list.html:19 +#: photologue/templates/photologue/includes/gallery_sample.html:8 +#: photologue/templates/photologue/photo_detail.html:13 +msgid "Published" +msgstr "" + +#: photologue/templates/photologue/gallery_list.html:4 +#: photologue/templates/photologue/gallery_list.html:10 msgid "All Galleries" msgstr "" -#: contrib/bootstrap/templates/photologue/gallery_list.html:37 -#: contrib/bootstrap/templates/photologue/gallery_list.html:39 +#: photologue/templates/photologue/includes/paginator.html:5 +#: photologue/templates/photologue/includes/paginator.html:7 msgid "Previous" msgstr "" -#: contrib/bootstrap/templates/photologue/gallery_list.html:42 +#: photologue/templates/photologue/includes/paginator.html:10 #, python-format msgid "" "\n" -"\t\t\t\t page %(page_number)s of %(total_pages)s\n" -"\t\t\t\t" +"\t\t\t page %(page_number)s of %(total_pages)s\n" +"\t\t\t" msgstr "" -#: contrib/bootstrap/templates/photologue/gallery_list.html:47 -#: contrib/bootstrap/templates/photologue/gallery_list.html:49 +#: photologue/templates/photologue/includes/paginator.html:15 +#: photologue/templates/photologue/includes/paginator.html:17 msgid "Next" msgstr "" -#: contrib/bootstrap/templates/photologue/photo_detail.html:21 +#: photologue/templates/photologue/photo_archive.html:4 +#: photologue/templates/photologue/photo_archive.html:10 +msgid "Latest Photos" +msgstr "" + +#: photologue/templates/photologue/photo_archive.html:36 +#: photologue/templates/photologue/photo_archive_day.html:19 +#: photologue/templates/photologue/photo_archive_month.html:34 +#: photologue/templates/photologue/photo_archive_year.html:35 +#: photologue/templates/photologue/photo_list.html:23 +msgid "No photos were found" +msgstr "" + +#: photologue/templates/photologue/photo_archive_day.html:4 +#: photologue/templates/photologue/photo_archive_day.html:8 +#, python-format +msgid "Photos for %(show_day)s" +msgstr "" + +#: photologue/templates/photologue/photo_archive_day.html:23 +msgid "View all photos for month" +msgstr "" + +#: photologue/templates/photologue/photo_archive_month.html:4 +#: photologue/templates/photologue/photo_archive_month.html:9 +#, python-format +msgid "Photos for %(show_month)s" +msgstr "" + +#: photologue/templates/photologue/photo_archive_month.html:38 +msgid "View all photos for year" +msgstr "" + +#: photologue/templates/photologue/photo_archive_year.html:4 +#: photologue/templates/photologue/photo_archive_year.html:10 +#, python-format +msgid "Photos for %(show_year)s" +msgstr "" + +#: photologue/templates/photologue/photo_archive_year.html:39 +msgid "View all photos" +msgstr "" + +#: photologue/templates/photologue/photo_detail.html:21 msgid "This photo is found in the following galleries" msgstr "" + +#: photologue/templates/photologue/photo_list.html:4 +#: photologue/templates/photologue/photo_list.html:10 +msgid "All Photos" +msgstr "" diff --git a/photologue/views.py b/photologue/views.py index a0ebb335..fb2e9589 100644 --- a/photologue/views.py +++ b/photologue/views.py @@ -3,7 +3,7 @@ import warnings from django.conf import settings from django.views.generic.dates import ArchiveIndexView, DateDetailView, DayArchiveView, MonthArchiveView, YearArchiveView from django.views.generic.detail import DetailView -from django.views.generic.list import ListView +from functions.custom_views import ListView from .models import Photo, Gallery # Number of galleries to display per page. diff --git a/place_exposition/views.py b/place_exposition/views.py index a40f28d7..ba8f939a 100644 --- a/place_exposition/views.py +++ b/place_exposition/views.py @@ -1,6 +1,7 @@ # -*- coding: utf-8 -*- from django.shortcuts import render_to_response -from django.views.generic import ListView, DetailView, FormView +from django.views.generic import DetailView, FormView +from functions.custom_views import ListView from django.utils import translation from django.http import HttpResponseRedirect, HttpResponse from django.template import RequestContext diff --git a/proj/admin.py b/proj/admin.py index 39bccbc2..7c8afd82 100644 --- a/proj/admin.py +++ b/proj/admin.py @@ -3,7 +3,7 @@ from django.shortcuts import render_to_response from django.http import HttpResponseRedirect, HttpResponse, Http404 from django.contrib.contenttypes.models import ContentType from django.conf import settings -from django.views.generic import TemplateView +from django.views.generic import TemplateView, DeleteView from file.models import TmpFile, FileModel from file.forms import FileModelForm, FileForm from city.models import City @@ -13,6 +13,10 @@ from django.db.models.loading import get_model + + + + class AdminIndex(TemplateView): template_name = 'admin/base.html' diff --git a/proj/admin_urls.py b/proj/admin_urls.py index 47bbfeaf..8cd0455a 100644 --- a/proj/admin_urls.py +++ b/proj/admin_urls.py @@ -34,6 +34,7 @@ urlpatterns = required( url(r'^settings/', include('settings.admin_urls')), url(r'^meta/', include('meta.admin_urls')), url(r'^import_xls/', include('import_xls.admin_urls')), + url(r'^translator_catalog/', include('specialist_catalog.admin_urls')), url(r'^language/add/', 'directories.admin.language_add'), url(r'^currency/add/', 'directories.admin.currency_add'), diff --git a/proj/decorators.py b/proj/decorators.py index f3f48c8d..149b9358 100644 --- a/proj/decorators.py +++ b/proj/decorators.py @@ -1,16 +1,16 @@ -from functools import wraps - -from django.template import RequestContext -from django.shortcuts import render_to_response - - -def render_to(tpl): - def decorator(func): - @wraps(func) - def wrapper(request, *args, **kwargs): - out = func(request, *args, **kwargs) - if isinstance(out, dict): - out = render_to_response(tpl, out, RequestContext(request)) - return out - return wrapper +from functools import wraps + +from django.template import RequestContext +from django.shortcuts import render_to_response + + +def render_to(tpl): + def decorator(func): + @wraps(func) + def wrapper(request, *args, **kwargs): + out = func(request, *args, **kwargs) + if isinstance(out, dict): + out = render_to_response(tpl, out, RequestContext(request)) + return out + return wrapper return decorator \ No newline at end of file diff --git a/proj/settings.py b/proj/settings.py index c2828869..f7fb9c17 100644 --- a/proj/settings.py +++ b/proj/settings.py @@ -242,7 +242,6 @@ SOCIAL_AUTH_INACTIVE_USER_URL = '/inactive-user/' SOCIAL_AUTH_USERNAME_IS_FULL_EMAIL = True -from social.pipeline.social_auth import social_details SOCIAL_AUTH_PIPELINE = ( 'social.pipeline.social_auth.social_details', 'social.pipeline.social_auth.social_uid', @@ -354,6 +353,7 @@ INSTALLED_APPS = ( 'password_reset', # reset password 'social.apps.django_app.default', # social auth 'core', + 'specialist_catalog', ) @@ -422,10 +422,14 @@ THUMBNAIL_DEBUG = DEBUG CALLBACK_EMAIL = 'kotzilla@ukr.net' BOOKING_AID = '333667' - - +try: + from functions.overrides import SeoPaginator as Paginator +except ImportError: + from django.core.paginator import Paginator +DEFAULT_PAGINATOR = Paginator ADMIN_PAGINATION = 20 CLIENT_PAGINATION = 15 + TEMPLATE_DEBUG = DEBUG NO_LOGO = '/static/client/img/no-logo.png' @@ -449,6 +453,8 @@ CLIENT_DATE_FORMAT = ["%d.%m.%Y"] # cache pages in random seconds. random in this range CACHE_RANGE = [60, 120] +DEFAULT_POPUP_COOKIE = 'expo_b_default_popup' + try: from local import * except ImportError, e: @@ -502,4 +508,6 @@ if DEBUG: # 'INTERCEPT_REDIRECTS': False, #} -""" \ No newline at end of file +""" + +# -- PAGINATION -- # diff --git a/proj/urls.py b/proj/urls.py index 03c2a385..f6c375fe 100644 --- a/proj/urls.py +++ b/proj/urls.py @@ -29,6 +29,7 @@ sitemaps = { handler404 = 'proj.views.error404' urlpatterns = patterns('', + url(r'^acquire_email/$', 'registration.backends.default.views.acquire_email', name = 'acquire_email'), url(r'^rss/', include('core.urls')), #url(r'^__debug__/', include(debug_toolbar.urls)), url(r'^sitemap-(?P
.+)\.xml$', views.sitemap, {'sitemaps': sitemaps}), @@ -42,7 +43,8 @@ urlpatterns = patterns('', url(r'^page/', include('core.simple_urls')), url(r'^theme/', include('theme.urls')), url(r'^places/', include('place_exposition.urls')), - url(r'^translators/', include('translator.urls')), + #url(r'^translators/', include('translator.urls')), + url(r'^translators/', include('specialist_catalog.urls')), url(r'^expo-b/', include('expobanner.urls')), url(r'^', include('accounts.urls')), url(r'^', include('exposition.urls')), @@ -78,7 +80,6 @@ urlpatterns = patterns('', # ajax urls urlpatterns += patterns('', - url(r'^ajax/get_popover/$', 'settings.views.get_popover_info'), url(r'^registration/reply/$', 'registration.backends.default.views.RegisterReply'), url(r'^register/', 'registration.backends.default.views.RegisterAjaxView'), url(r'^register-complete/', 'registration.backends.default.views.complete_registration'), diff --git a/proj/views.py b/proj/views.py index 0db0e5bd..cfb06577 100644 --- a/proj/views.py +++ b/proj/views.py @@ -77,8 +77,11 @@ class MainPageView(JitterCacheMixin, TemplateView): def get_context_data(self, **kwargs): context = super(MainPageView, self).get_context_data(**kwargs) - - events = Exposition.objects.language().select_related('country', 'city', 'place').filter(main_page__gte=1).order_by('-main_page') + ev = Exposition.objects.expo_main() + events = sorted(ev, key=lambda x: x.main.position) + # update main_page counter + for event in events: + event.main.link.log(self.request, 1) exposition_themes = Theme.objects.language().order_by('-main_page').filter(types=Theme.types.exposition)[:6] conference_themes = Theme.objects.language().order_by('-main_page').filter(types=Theme.types.conference)[:6] diff --git a/registration/locale/en/LC_MESSAGES/django.po b/registration/locale/en/LC_MESSAGES/django.po index e357a4ce..2c065815 100644 --- a/registration/locale/en/LC_MESSAGES/django.po +++ b/registration/locale/en/LC_MESSAGES/django.po @@ -8,82 +8,107 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-10-12 14:09-0500\n" +"POT-Creation-Date: 2015-09-08 13:44+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: admin.py:23 +#: registration/admin.py:23 msgid "Activate users" msgstr "" -#: admin.py:43 +#: registration/admin.py:43 msgid "Re-send activation emails" msgstr "" -#: forms.py:35 -msgid "username" +#: registration/backends/default/views.py:197 +msgid "Пользователя с таким email не существует" msgstr "" -#: forms.py:36 -msgid "This value must contain only letters, numbers and underscores." +#: registration/backends/default/views.py:200 +msgid "Пользователя с таким email уже активирован" msgstr "" -#: forms.py:39 -msgid "Email address" +#: registration/forms.py:44 +msgid "First name" msgstr "" -#: forms.py:41 -msgid "Password" +#: registration/forms.py:45 registration/forms.py:50 +msgid "This value may contain only letters, numbers and @/./+/-/_ characters." msgstr "" -#: forms.py:43 -msgid "Password (again)" +#: registration/forms.py:46 +msgid "Имя" +msgstr "" + +#: registration/forms.py:49 +msgid "Last name" +msgstr "" + +#: registration/forms.py:51 +msgid "Фамилия" +msgstr "" + +#: registration/forms.py:53 +msgid "E-mail" msgstr "" -#: forms.py:55 -msgid "A user with that username already exists." +#: registration/forms.py:53 +msgid "Адрес электронной почты" msgstr "" -#: forms.py:67 -msgid "The two password fields didn't match." +#: registration/forms.py:54 +msgid "Придумайте пароль" +msgstr "" + +#: registration/forms.py:55 +msgid "Password" +msgstr "" + +#: registration/forms.py:56 +msgid "Повторите пароль" +msgstr "" + +#: registration/forms.py:57 +msgid "Password (again)" msgstr "" -#: forms.py:78 +#: registration/forms.py:83 msgid "I have read and agree to the Terms of Service" msgstr "" -#: forms.py:79 +#: registration/forms.py:84 msgid "You must agree to the terms to register" msgstr "" -#: forms.py:95 +#: registration/forms.py:100 msgid "" "This email address is already in use. Please supply a different email " "address." msgstr "" -#: forms.py:122 +#: registration/forms.py:127 msgid "" "Registration using free email addresses is prohibited. Please supply a " "different email address." msgstr "" -#: models.py:165 +#: registration/models.py:184 msgid "user" msgstr "" -#: models.py:166 +#: registration/models.py:185 msgid "activation key" msgstr "" -#: models.py:171 +#: registration/models.py:190 msgid "registration profile" msgstr "" -#: models.py:172 +#: registration/models.py:191 msgid "registration profiles" msgstr "" diff --git a/service/urls.py b/service/urls.py index 10efb29a..5b3055a5 100644 --- a/service/urls.py +++ b/service/urls.py @@ -4,7 +4,7 @@ from views import ServiceView, CallBackListView, VisitListView, TranslationListV ParticipationListView, RemoteListView,TicketsListView, Thanks urlpatterns = patterns('', - url(r'service/thanks/$', Thanks.as_view()), + url(r'service/thanks/$', Thanks.as_view(), name = "service_thanks"), url(r'service/com_rek/(?P.*)/(?P.*)/$', 'service.views.advertise'), url(r'service/com_rek/$', 'service.views.advertise'), url(r'service/(?P.*)/$', ServiceView.as_view()), diff --git a/service/views.py b/service/views.py index 9fbc0586..a88e3766 100644 --- a/service/views.py +++ b/service/views.py @@ -46,7 +46,6 @@ class ServiceView(MetadataMixin, FormView): def form_valid(self, form): order = form.save(commit=False) order.save() - #messages.success(self.request, _(u'Ваш запрос был успешно отправлен')) return HttpResponseRedirect(self.success_url) def get_context_data(self, **kwargs): diff --git a/settings/views.py b/settings/views.py index 0655f9c3..80875d27 100644 --- a/settings/views.py +++ b/settings/views.py @@ -159,24 +159,4 @@ def get_popover(request): html = render_to_string(popover) response['html'] = html - return HttpResponse(json.dumps(response), content_type='application/json') - -from banners.models import Redirect -from django.db.models import F -import datetime - -def set_cookie(response, key, value, days_expire = 7): - if days_expire is None: - max_age = 365 * 24 * 60 * 60 #one year - else: - max_age = days_expire * 24 * 60 * 60 - expires = datetime.datetime.strftime(datetime.datetime.utcnow() + datetime.timedelta(seconds=max_age), "%a, %d-%b-%Y %H:%M:%S GMT") - response.set_cookie(key, value, max_age=max_age, expires=expires) - -def get_popover_info(request): - id = request.GET.get('rdr') - if id: - Redirect.objects.filter(id=id).update(views = F('views') + 1) - response = HttpResponse('success') - set_cookie(response, 'popover_test1', '1') - return response \ No newline at end of file + return HttpResponse(json.dumps(response), content_type='application/json') \ No newline at end of file diff --git a/specialist_catalog/__init__.py b/specialist_catalog/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/specialist_catalog/admin_urls.py b/specialist_catalog/admin_urls.py new file mode 100644 index 00000000..d6b0444a --- /dev/null +++ b/specialist_catalog/admin_urls.py @@ -0,0 +1,18 @@ +# -*- coding: utf-8 -*- +from django.conf.urls import url, patterns +from .views import * + +urlpatterns = patterns('', + url(r'^specialist/new/$', SpecialistCreateView.as_view(), name='specialist_new'), + url(r'^specialist/all/$', SpecialistListView.as_view(), name='specialist_all'), + url(r'^specialist/edit/(?P\d{1,6})/$', SpecialistUpdateView.as_view(), name='specialist_edit'), + url(r'^specialist/delete/(?P\d{1,6})/$', SpecialistDeleteView.as_view(), name='specialist_delete'), + url(r'^catalog/new/$', CatalogCreateView.as_view(), name='catalog_new'), + url(r'^catalog/all/$', CatalogListView.as_view(), name='catalog_all'), + url(r'^catalog/edit/(?P\d{1,6})/$', CatalogUpdateView.as_view(), name='catalog_edit'), + url(r'^catalog/delete/(?P\d{1,6})/$', CatalogDeleteView.as_view(), name='catalog_delete'), + url(r'^catalog/(?P\d{1,6})/add_feedback/$', FeedbackCreateView.as_view(), name='feedback_new'), + #url(r'^catalog/(?P\d{1,4})/feedbacks/$', FeedbackListView.as_view(), name='feedback_all'), + url(r'^catalog/(?P\d{1,6})/feedback/(?P\d{1,4})/$', FeedbackUpdateView.as_view(), name='feedback_edit'), + url(r'^feedback/delete/(?P\d{1,6})/$', FeedbackDeleteView.as_view(), name='feedback_delete'), +) \ No newline at end of file diff --git a/specialist_catalog/forms.py b/specialist_catalog/forms.py new file mode 100644 index 00000000..7571b53a --- /dev/null +++ b/specialist_catalog/forms.py @@ -0,0 +1,65 @@ +# -*- coding: utf-8 -*- +from django import forms +from hvad.forms import TranslatableModelForm +from .models import Specialist, SpecialistCatalog, Feedback, City, Country +from ckeditor.widgets import CKEditorWidget +from django.utils.translation import get_language + +country_choices = [(c.id, c.name) for c in Country.objects.all()] +lang_code = get_language()[:2] + +default_text = u"Планируете посетить выставку в %s?" \ + u" Мы предлагаем Вам подобрать переводчика именно под Ваши цели и потребности. " \ + u"Специализируясь уже более 7 лет на предоставлении переводчиков на выставки и конференции " \ + u"%s, мы можем предоставить профессионалов со знанием разных " \ + u"языков на гибких для Вас условиях. Каждый заказ индивидуален для нас, " \ + u"и итоговая цена зависит от вида перевода, тематики, срочности подбора " \ + u"специалиста, города и объема работы." +default_title = u"Переводчики в %s" + + +class SpecialistCatalogForm(TranslatableModelForm): + + class Meta: + model = SpecialistCatalog + fields = ['price', 'currency', 'logo', 'main_descr', 'place_photo', + 'specialists', 'city', 'country', 'type', 'title', 'benefits', 'big_cities'] + widgets = { + 'type': forms.Select(choices=(('1', 'Country'), ('2', 'City'))), + 'city': forms.HiddenInput(attrs={'id': 'id_city'}), + 'country': forms.Select(choices=country_choices, attrs={'id': 'id_country'}), + 'main_descr': CKEditorWidget, + 'benefits': CKEditorWidget, + 'big_cities': CKEditorWidget, + } + + def save(self, commit=True): + place = self.cleaned_data.get('city') or self.cleaned_data.get('country') + place_inflect = place.inflect or place.name + if not self.cleaned_data['title']: + self.cleaned_data['title'] = default_title % place_inflect + if not self.cleaned_data['main_descr']: + self.cleaned_data['main_descr'] = default_text % (place_inflect, place_inflect) + return super(SpecialistCatalogForm, self).save(commit=True) + + +class SpecialistForm(forms.ModelForm): + + class Meta: + model = Specialist + fields = ['name','country', 'city', 'photo', 'languages'] + widgets = { + 'city': forms.HiddenInput(attrs={'id': 'id_city'}), + 'country': forms.Select(choices=country_choices, attrs={'id': 'id_country'}) + } + + +class FeedbackForm(forms.ModelForm): + + class Meta: + model = Feedback + fields = ['company', 'name', 'text', 'logo', 'catalog'] + widgets = { + 'text':CKEditorWidget + } + diff --git a/specialist_catalog/management/__init__.py b/specialist_catalog/management/__init__.py new file mode 100644 index 00000000..b29e46c3 --- /dev/null +++ b/specialist_catalog/management/__init__.py @@ -0,0 +1 @@ +__author__ = 'dart_vaider' diff --git a/specialist_catalog/management/commands/__init__.py b/specialist_catalog/management/commands/__init__.py new file mode 100644 index 00000000..b29e46c3 --- /dev/null +++ b/specialist_catalog/management/commands/__init__.py @@ -0,0 +1 @@ +__author__ = 'dart_vaider' diff --git a/specialist_catalog/management/commands/create_city_page.py b/specialist_catalog/management/commands/create_city_page.py new file mode 100644 index 00000000..68ce4ac9 --- /dev/null +++ b/specialist_catalog/management/commands/create_city_page.py @@ -0,0 +1,41 @@ +# -*- coding: utf-8 -*- +from django.core.management.base import BaseCommand +from django.utils.translation import activate +from city.models import City +from specialist_catalog.models import SpecialistCatalog + +default_text = u"Планируете посетить выставку %s?" \ + u" Мы предлагаем Вам подобрать переводчика именно под Ваши цели и потребности. " \ + u"Специализируясь уже более 7 лет на предоставлении переводчиков на выставки и конференции " \ + u"%s, мы можем предоставить профессионалов со знанием разных " \ + u"языков на гибких для Вас условиях. Каждый заказ индивидуален для нас, " \ + u"и итоговая цена зависит от вида перевода, тематики, срочности подбора " \ + u"специалиста, города и объема работы." +default_title = u"Переводчики %s" + +default_benefits = """
    +
  • Эффективная цена
  • +
  • Опыт и профессионализм специалистов
  • +
  • Знание разных менталитетов и психологических аспектов проведения переговоров с зарубежными бизнесменами
  • +
  • Ориентированность в мировых выставочных комплексах
  • +
  • Гарантии, отчетность по договору, прозрачные безналичные расчеты в России
  • +
""" + + + +class Command(BaseCommand): + def handle(self, *args, **options): + activate('ru') + cities = set(City.used.expo_cities()) + for cty in cities: + name = cty.inflect or cty.name + sc = SpecialistCatalog( + type=2, + country=cty.country, + city=cty, + title=default_title % name, + main_descr=default_text % (name, name), + benefits = default_benefits + ) + sc.save() + print cty.url, " -> ", cty.country.url diff --git a/specialist_catalog/management/commands/create_country_page.py b/specialist_catalog/management/commands/create_country_page.py new file mode 100644 index 00000000..4910f81b --- /dev/null +++ b/specialist_catalog/management/commands/create_country_page.py @@ -0,0 +1,42 @@ +# -*- coding: utf-8 -*- +from django.core.management.base import BaseCommand +from django.utils.translation import activate +from country.models import Country +from specialist_catalog.models import SpecialistCatalog +from django.utils.translation import activate + +activate('ru') + +default_text = u"Планируете посетить выставку %s?" \ + u" Мы предлагаем Вам подобрать переводчика именно под Ваши цели и потребности. " \ + u"Специализируясь уже более 7 лет на предоставлении переводчиков на выставки и конференции " \ + u"%s, мы можем предоставить профессионалов со знанием разных " \ + u"языков на гибких для Вас условиях. Каждый заказ индивидуален для нас, " \ + u"и итоговая цена зависит от вида перевода, тематики, срочности подбора " \ + u"специалиста, города и объема работы." +default_title = u"Переводчики %s" +default_benefits = """
    +
  • Эффективная цена
  • +
  • Опыт и профессионализм специалистов
  • +
  • Знание разных менталитетов и психологических аспектов проведения переговоров с зарубежными бизнесменами
  • +
  • Ориентированность в мировых выставочных комплексах
  • +
  • Гарантии, отчетность по договору, прозрачные безналичные расчеты в России
  • +
""" + + +class Command(BaseCommand): + def handle(self, *args, **options): + activate('ru') + countries = set(Country.objects.expo_countries()) + + for cntry in countries: + name = cntry.inflect or cntry.name + sc = SpecialistCatalog( + type='1', + country=cntry, + title=default_title % name, + main_descr=default_text % (name, name), + benefits = default_benefits + ) + sc.save() + print "created for: %s" % cntry.url diff --git a/specialist_catalog/models.py b/specialist_catalog/models.py new file mode 100644 index 00000000..f92a0cd3 --- /dev/null +++ b/specialist_catalog/models.py @@ -0,0 +1,108 @@ +# -*- coding: utf-8 -*- +from django.db import models +from django.conf import settings +from hvad.models import TranslatableModel, TranslatedFields, TranslationManager +from city.models import City +from country.models import Country +from django.core.urlresolvers import reverse_lazy +from django.utils.translation import get_language +import copy + +# types of catalog +_country = 1 +_city = 2 + + +class Specialist(models.Model): + name = models.CharField(max_length=255, verbose_name=u"Полное имя", blank=False) + languages = models.CharField(max_length=255, verbose_name=u"Языки") + city = models.ForeignKey(City, on_delete=models.PROTECT, verbose_name=u"Город", blank=True) + country = models.ForeignKey(Country, on_delete=models.PROTECT, verbose_name=u"Страна") + photo = models.ImageField(verbose_name=u"Фото", upload_to="specialist_catalog/specialist_photo/", blank=True) + + + def __unicode__(self): + return u"%s" % self.name + + +class SpecialistCatalog(TranslatableModel): + price = models.IntegerField(verbose_name=u"Цена", default=200) + currency = models.CharField(max_length=255, verbose_name=u"Валюта", default=u"EUR") + logo = models.ImageField(db_column= "logo_preview", verbose_name=u"Логотип", blank=True, upload_to='specialist_catalog/logo_preview/') + place_photo = models.ImageField(verbose_name=u"Фото для города", blank=True, upload_to='specialist_catalog/place_photo/') + specialists = models.ManyToManyField(Specialist, verbose_name=u"Специалисты", blank=True) + city = models.ForeignKey(City, on_delete=models.PROTECT, verbose_name=u"Город", blank=True, null=True) + country = models.ForeignKey(Country, on_delete=models.PROTECT, verbose_name=u"Страна", blank=False) + type = models.PositiveSmallIntegerField(verbose_name=u"Тип(Страна/Город)", default=2) + + objects = TranslationManager() + + translations = TranslatedFields( + title=models.CharField(max_length=255, verbose_name=u"Заголовок"), + main_descr=models.CharField(max_length=1000, verbose_name=u"Краткое описание"), + benefits=models.CharField(max_length=2000, verbose_name=u"Преимущества"), + big_cities=models.TextField(verbose_name=u"Крупные города", blank=True) + ) + + def __init__(self, *args, **kwargs): + super(SpecialistCatalog, self).__init__(*args, **kwargs) + self.cache_fields = ['title', 'main_descr', 'benefits'] + self.is_new = True + + def get_absolute_url(self): + global _country, _city + if self.type == _country: + return reverse_lazy('spec_catalog_country', kwargs={'slug': self.country.url}) + return reverse_lazy('spec_catalog_city', kwargs={'slug': self.city.url}) + + def save(self, *args, **kwargs): + super(SpecialistCatalog, self).save(*args, **kwargs) + self.initial_language = get_language()[:2] or 'ru' + + new_values = {field: getattr(self, field) for field in self.cache_fields} + langs = [code for code, _ in settings.LANGUAGES] + if self.is_new: + for lang in langs: + if lang not in self.get_available_languages(): + self.translate(lang) + for key, value in new_values.items(): + setattr(self, key, value) + self.save_translations(self) + else: + translations = {obj.language_code: obj for obj in list(self.translations.all())} + for lang in langs: + if lang is not self.initial_language: + tr = translations[lang] + for key, value in new_values.items(): + #if u'%s' % getattr(tr, key) is u'%s' % self.var_cache[key]: + setattr(tr, key, value) + tr.save() + + self.lazy_translation_getter(self.initial_language) + self.var_cache = {var: copy.copy(getattr(self, var)) for var in self.cache_fields} + self.is_new = False + return self + + def __unicode__(self): + return self.lazy_translation_getter('title', unicode(self.pk)) + + def place(self): + if self.type == _country: + return self.country + elif self.type == _city: + return self.city + else: + return None + + +class Feedback(models.Model): + company = models.CharField(max_length=255, verbose_name=u"Название компании") + name = models.CharField(max_length=100, verbose_name=u"Имя") + text = models.CharField(max_length=5000, verbose_name=u"Текст отзыва") + logo = models.ImageField(verbose_name=u"Логотип компании", upload_to='specialist_catalog/feedback_logo/', blank=True) + catalog = models.ForeignKey(SpecialistCatalog, verbose_name=u"Страница", blank=False) + + def __unicode__(self): + return "Feedback from %s" % self.company + + diff --git a/specialist_catalog/tests.py b/specialist_catalog/tests.py new file mode 100644 index 00000000..501deb77 --- /dev/null +++ b/specialist_catalog/tests.py @@ -0,0 +1,16 @@ +""" +This file demonstrates writing tests using the unittest module. These will pass +when you run "manage.py test". + +Replace this with more appropriate tests for your application. +""" + +from django.test import TestCase + + +class SimpleTest(TestCase): + def test_basic_addition(self): + """ + Tests that 1 + 1 always equals 2. + """ + self.assertEqual(1 + 1, 2) diff --git a/specialist_catalog/urls.py b/specialist_catalog/urls.py new file mode 100644 index 00000000..91382837 --- /dev/null +++ b/specialist_catalog/urls.py @@ -0,0 +1,11 @@ +# -*- coding: utf-8 -*- +from django.conf.urls import url, patterns +from .views import CatalogDetailedView, SpecCatalog + +urlpatterns = patterns('', + url(r'^city/$', SpecCatalog.as_view(), {'type': 'city'}, name="spec_city"), + url(r'^country/$', SpecCatalog.as_view(), {'type': 'country'}, name="spec_country"), + + url(r'^city/(?P.*)/$', CatalogDetailedView.as_view(), {'type': 'city'}, name="spec_catalog_city"), + url(r'^country/(?P.*)/$', CatalogDetailedView.as_view(), {'type': 'country'}, name="spec_catalog_country"), +) \ No newline at end of file diff --git a/specialist_catalog/views.py b/specialist_catalog/views.py new file mode 100644 index 00000000..c3a17a20 --- /dev/null +++ b/specialist_catalog/views.py @@ -0,0 +1,217 @@ +# -*- coding: utf-8 -*- +from django.views.generic import CreateView, UpdateView, DeleteView, FormView, DetailView +from functions.custom_views import ListView +from django.views.generic.detail import SingleObjectMixin +from django.utils.translation import ugettext as _ +from .forms import * +from django.core.urlresolvers import reverse_lazy +from django.conf import settings +from django.shortcuts import get_object_or_404 +from service.order_forms import TranslationForm +from django.http import HttpResponseRedirect, Http404 +from .models import _city, _country + + + + +# =========== ADMIN VIEWS =========== + +# Specialist views + + +class SpecialistCreateView(CreateView): + form_class = SpecialistForm + model = Specialist + template_name = 'admin/specialist/specialist_new.html' + success_url = reverse_lazy("specialist_all") + + +from hvad.utils import get_translation_aware_manager + + +class SpecialistListView(ListView): + model = Specialist + template_name = 'admin/specialist/specialist_all.html' + paginate_by = settings.ADMIN_PAGINATION + + def get_queryset(self): + name = self.request.GET.get('name', None) + city = self.request.GET.get('city', None) + qs = get_translation_aware_manager(Specialist).all() + if name: + qs = qs.filter(name__icontains=name) + if city: + qs = qs.filter(city__name__icontains=city) + return qs + + +class SpecialistUpdateView(UpdateView): + form_class = SpecialistForm + model = Specialist + template_name = 'admin/specialist/specialist_new.html' + success_url = reverse_lazy("specialist_all") + + def get_form(self, form_class): + form = super(SpecialistUpdateView, self).get_form(form_class) + form.fields['city'].widget.attrs['data-init-text'] = self.object.city.name + return form + + +class SpecialistDeleteView(DeleteView): + model = Specialist + template_name = 'admin/specialist/specialist_confirm_delete.html' + success_url = reverse_lazy("specialist_all") + + +# Catalog views + + +class CatalogCreateView(CreateView): + form_class = SpecialistCatalogForm + model = SpecialistCatalog + template_name = 'admin/specialist/catalog_new.html' + success_url = reverse_lazy("catalog_all") + + + +class CatalogListView(ListView): + model = SpecialistCatalog + template_name = 'admin/specialist/catalog_all.html' + paginate_by = settings.ADMIN_PAGINATION + paginator_class = settings.DEFAULT_PAGINATOR + def get_queryset(self): + _GET = self.request.GET + query, city, country, only_cntry = _GET.get('query'), _GET.get('city'), _GET.get('country'), _GET.get('only_countries') + qs = self.model.objects.language() + if only_cntry: + qs = qs.filter(type=1) + if query: + qs = qs.filter(title__icontains=query) + if city: + qs = qs.filter(city__translations__name__icontains=city) + if country: + qs = qs.filter(country__translations__name__icontains=country) + return qs + + +class CatalogUpdateView(UpdateView): + form_class = SpecialistCatalogForm + model = SpecialistCatalog + template_name = 'admin/specialist/catalog_new.html' + success_url = reverse_lazy("catalog_all") + + def get_form(self, form_class): + form = super(CatalogUpdateView, self).get_form(form_class) + if self.object.type is 2: # city + form.fields['city'].widget.attrs['data-init-text'] = self.object.city.name + return form + + +class CatalogDeleteView(DeleteView): + model = SpecialistCatalog + template_name = 'admin/specialist/catalog_confirm_delete.html' + success_url = reverse_lazy("catalog_all") + + +# Feedback views + + +class FeedbackCreateView(CreateView): + form_class = FeedbackForm + model = Feedback + template_name = 'admin/specialist/feedback_new.html' + success_url = reverse_lazy("catalog_all") + + def get_initial(self): + catalog = get_object_or_404(SpecialistCatalog, pk=self.kwargs.get('catalog_pk')) + return {'catalog': catalog} + + +class FeedbackUpdateView(UpdateView): + form_class = FeedbackForm + model = Feedback + template_name = 'admin/specialist/feedback_new.html' + success_url = reverse_lazy("catalog_all") + + def get_initial(self): + catalog = get_object_or_404(SpecialistCatalog, pk=self.kwargs.get('catalog_pk')) + return {'catalog': catalog} + + +class FeedbackDeleteView(DeleteView): + model = Feedback + template_name = 'admin/specialist/feedback_confirm_delete.html' + success_url = reverse_lazy("catalog_all") + + +# ========= CLIENT VIEWS ============ + + +class CatalogDetailedView(SingleObjectMixin, FormView): + model = SpecialistCatalog + form_class = TranslationForm + template_name = "client/specialist_catalog/catalog_detailed.html" + success_url = reverse_lazy("service_thanks") + + def get_catalog_obj(self): + if self.kwargs.get('type') is "country": + try: + return self.model.objects.language().get(type=1, country__url=self.kwargs.get('slug')) + except self.model.DoesNotExist: + raise Http404 + else: + try: + return self.model.objects.language().get(type=2, city__url=self.kwargs.get('slug')) + except self.model.DoesNotExist: + raise Http404 + + def get_object(self, queryset=None): + obj = self.get_catalog_obj() + self.object = obj + return obj + + def get_context_data(self, **kwargs): + self.get_object() + context = super(CatalogDetailedView, self).get_context_data(**kwargs) + context['object'] = self.object + return context + + def form_valid(self, form): + order = form.save(commit=False) + order.save() + return HttpResponseRedirect(self.success_url) + + def get_initial(self): + obj = self.get_object() + init = {} + init['country'] = obj.country.name + if self.kwargs.get('type') is "city": + init['city'] = obj.city.name + return init + +class SpecCatalog(ListView): + model = SpecialistCatalog + template_name = 'client/specialist_catalog/catalog.html' + + def get_queryset(self): + + if self.kwargs.get('type') == "country": + ctype = _country + else: + ctype = _city + + qs = list(self.model.objects.language().select_related('country', 'city').filter(type=ctype)) + if ctype == _country: + result = sorted(qs, key=lambda x: x.country.name) + else: + result = sorted(qs, key=lambda x: x.city.name) + + return result + + def get_context_data(self, **kwargs): + context = super(SpecCatalog, self).get_context_data(**kwargs) + if self.kwargs.get('type') == "country": + context['title'] = _(u'Переводчики по странам') + else: + context['title'] = _(u'Переводчики по городам') + return context diff --git a/static/ckeditor/ckeditor/build-config.js b/static/ckeditor/ckeditor/build-config.js index 8a9004c8..9a930847 100644 --- a/static/ckeditor/ckeditor/build-config.js +++ b/static/ckeditor/ckeditor/build-config.js @@ -1,4 +1,4 @@ - + /** * @license Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. * For licensing, see LICENSE.html or http://ckeditor.com/license diff --git a/static/ckeditor/ckeditor/lang/en.js b/static/ckeditor/ckeditor/lang/en.js index 1235ec20..4986aa54 100644 --- a/static/ckeditor/ckeditor/lang/en.js +++ b/static/ckeditor/ckeditor/lang/en.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js index 4bf2d3c9..131153f4 100644 --- a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js +++ b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/ar.js b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/ar.js index 280f80a3..8ef366ca 100644 --- a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/ar.js +++ b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/ar.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/bg.js b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/bg.js index 1950e9a4..d2fdc939 100644 --- a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/bg.js +++ b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/bg.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/ca.js b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/ca.js index 2e269ef9..9d5674fe 100644 --- a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/ca.js +++ b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/ca.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/cs.js b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/cs.js index 7b4b90f9..2c4be646 100644 --- a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/cs.js +++ b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/cs.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/cy.js b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/cy.js index a5f07744..d0e887b4 100644 --- a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/cy.js +++ b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/cy.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/da.js b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/da.js index fa0c807c..b1f0de3c 100644 --- a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/da.js +++ b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/da.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/de.js b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/de.js index 70ecde16..44004a7c 100644 --- a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/de.js +++ b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/de.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/el.js b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/el.js index cbf7e6d4..d95c73d5 100644 --- a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/el.js +++ b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/el.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/en.js b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/en.js index 0124a3cf..04a47e4f 100644 --- a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/en.js +++ b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/en.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/eo.js b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/eo.js index eed38987..e30b14e5 100644 --- a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/eo.js +++ b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/eo.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/es.js b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/es.js index 877dc8ca..f6dcc565 100644 --- a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/es.js +++ b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/es.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/et.js b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/et.js index 5e95b6ad..1b90907c 100644 --- a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/et.js +++ b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/et.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/fa.js b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/fa.js index addcb1a2..50a45769 100644 --- a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/fa.js +++ b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/fa.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/fi.js b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/fi.js index e0b75585..5e18e9ad 100644 --- a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/fi.js +++ b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/fi.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/fr.js b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/fr.js index 1d2a58a2..9fffe798 100644 --- a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/fr.js +++ b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/fr.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/gu.js b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/gu.js index 23ea2c41..9805b268 100644 --- a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/gu.js +++ b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/gu.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/he.js b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/he.js index 34bceac0..4fc62304 100644 --- a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/he.js +++ b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/he.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/hi.js b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/hi.js index 4a8f1792..cba4cc8a 100644 --- a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/hi.js +++ b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/hi.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/hr.js b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/hr.js index b8ff14a1..7eafbbeb 100644 --- a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/hr.js +++ b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/hr.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/hu.js b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/hu.js index f3bd161e..bb6999f7 100644 --- a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/hu.js +++ b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/hu.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/it.js b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/it.js index e734f7dc..58de938f 100644 --- a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/it.js +++ b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/it.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/ja.js b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/ja.js index 28cd8004..311a780c 100644 --- a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/ja.js +++ b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/ja.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/km.js b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/km.js index 0af2f59a..23623f6b 100644 --- a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/km.js +++ b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/km.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/ku.js b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/ku.js index f9f2d66b..6f52270d 100644 --- a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/ku.js +++ b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/ku.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/lt.js b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/lt.js index 1cbb4285..b22bb18c 100644 --- a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/lt.js +++ b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/lt.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/lv.js b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/lv.js index d93a754a..6aa311f3 100644 --- a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/lv.js +++ b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/lv.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/mk.js b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/mk.js index 93531616..225ae9be 100644 --- a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/mk.js +++ b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/mk.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/mn.js b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/mn.js index f9588d60..f53f8877 100644 --- a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/mn.js +++ b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/mn.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/nb.js b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/nb.js index 7bb3de5b..863626ae 100644 --- a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/nb.js +++ b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/nb.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/nl.js b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/nl.js index 1662a59c..749609da 100644 --- a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/nl.js +++ b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/nl.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/no.js b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/no.js index dfb84937..e2e32b8c 100644 --- a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/no.js +++ b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/no.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/pl.js b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/pl.js index 4ce90fe3..3ab4178e 100644 --- a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/pl.js +++ b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/pl.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/pt-br.js b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/pt-br.js index 159fa598..74237d43 100644 --- a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/pt-br.js +++ b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/pt-br.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/pt.js b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/pt.js index 08e50f87..7aaaa389 100644 --- a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/pt.js +++ b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/pt.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/ro.js b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/ro.js index e4794d29..218023b9 100644 --- a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/ro.js +++ b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/ro.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/ru.js b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/ru.js index cf0fce56..4d3c7adc 100644 --- a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/ru.js +++ b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/ru.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/sk.js b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/sk.js index 1093ed9a..99245153 100644 --- a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/sk.js +++ b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/sk.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/sl.js b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/sl.js index d6ad1c4b..a578d846 100644 --- a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/sl.js +++ b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/sl.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/sv.js b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/sv.js index e156e198..a1aa4adb 100644 --- a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/sv.js +++ b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/sv.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/th.js b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/th.js index afb8239b..903e538d 100644 --- a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/th.js +++ b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/th.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/tr.js b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/tr.js index bef899b6..5c9f5784 100644 --- a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/tr.js +++ b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/tr.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/ug.js b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/ug.js index c6c174f2..ef32f045 100644 --- a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/ug.js +++ b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/ug.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/uk.js b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/uk.js index 2451e8cc..4134a432 100644 --- a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/uk.js +++ b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/uk.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/vi.js b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/vi.js index c7025b1b..147eaeb2 100644 --- a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/vi.js +++ b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/vi.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/zh-cn.js b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/zh-cn.js index ef3a2dbb..dc9ee7a5 100644 --- a/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/zh-cn.js +++ b/static/ckeditor/ckeditor/plugins/a11yhelp/dialogs/lang/zh-cn.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/ckeditor/ckeditor/plugins/about/dialogs/about.js b/static/ckeditor/ckeditor/plugins/about/dialogs/about.js index 3d9156bf..ef9373bf 100644 --- a/static/ckeditor/ckeditor/plugins/about/dialogs/about.js +++ b/static/ckeditor/ckeditor/plugins/about/dialogs/about.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/ckeditor/ckeditor/plugins/clipboard/dialogs/paste.js b/static/ckeditor/ckeditor/plugins/clipboard/dialogs/paste.js index 8f94a715..bc7e9be1 100644 --- a/static/ckeditor/ckeditor/plugins/clipboard/dialogs/paste.js +++ b/static/ckeditor/ckeditor/plugins/clipboard/dialogs/paste.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/ckeditor/ckeditor/plugins/colordialog/dialogs/colordialog.js b/static/ckeditor/ckeditor/plugins/colordialog/dialogs/colordialog.js index 840cd4bb..31a92792 100644 --- a/static/ckeditor/ckeditor/plugins/colordialog/dialogs/colordialog.js +++ b/static/ckeditor/ckeditor/plugins/colordialog/dialogs/colordialog.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/ckeditor/ckeditor/plugins/dialog/dialogDefinition.js b/static/ckeditor/ckeditor/plugins/dialog/dialogDefinition.js index 2cb5d24b..6a84e65f 100644 --- a/static/ckeditor/ckeditor/plugins/dialog/dialogDefinition.js +++ b/static/ckeditor/ckeditor/plugins/dialog/dialogDefinition.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/ckeditor/ckeditor/plugins/div/dialogs/div.js b/static/ckeditor/ckeditor/plugins/div/dialogs/div.js index 0c26a56d..fbf1c4e7 100644 --- a/static/ckeditor/ckeditor/plugins/div/dialogs/div.js +++ b/static/ckeditor/ckeditor/plugins/div/dialogs/div.js @@ -1,4 +1,4 @@ -(function(){function p(a,k,o){if(!k.is||!k.getCustomData("block_processed"))k.is&&CKEDITOR.dom.element.setMarker(o,k,"block_processed",!0),a.push(k)}function n(a,k){function o(){this.foreach(function(d){if(/^(?!vbox|hbox)/.test(d.type)&&(d.setup||(d.setup=function(c){d.setValue(c.getAttribute(d.id)||"",1)}),!d.commit))d.commit=function(c){var a=this.getValue();"dir"==d.id&&c.getComputedStyle("direction")==a||(a?c.setAttribute(d.id,a):c.removeAttribute(d.id))}})}var n=function(){var d=CKEDITOR.tools.extend({}, +(function(){function p(a,k,o){if(!k.is||!k.getCustomData("block_processed"))k.is&&CKEDITOR.dom.element.setMarker(o,k,"block_processed",!0),a.push(k)}function n(a,k){function o(){this.foreach(function(d){if(/^(?!vbox|hbox)/.test(d.type)&&(d.setup||(d.setup=function(c){d.setValue(c.getAttribute(d.id)||"",1)}),!d.commit))d.commit=function(c){var a=this.getValue();"dir"==d.id&&c.getComputedStyle("direction")==a||(a?c.setAttribute(d.id,a):c.removeAttribute(d.id))}})}var n=function(){var d=CKEDITOR.tools.extend({}, CKEDITOR.dtd.$blockLimit);a.config.div_wrapTable&&(delete d.td,delete d.th);return d}(),q=CKEDITOR.dtd.div,l={},m=[];return{title:a.lang.div.title,minWidth:400,minHeight:165,contents:[{id:"info",label:a.lang.common.generalTab,title:a.lang.common.generalTab,elements:[{type:"hbox",widths:["50%","50%"],children:[{id:"elementStyle",type:"select",style:"width: 100%;",label:a.lang.div.styleSelectLabel,"default":"",items:[[a.lang.common.notSet,""]],onChange:function(){var d=["info:elementStyle","info:class", "advanced:dir","advanced:style"],c=this.getDialog(),h=c._element&&c._element.clone()||new CKEDITOR.dom.element("div",a.document);this.commit(h,!0);for(var d=[].concat(d),b=d.length,i,e=0;e=f.indexOf("?")?"?":"&"),f=f.replace("#","%23");if(null!==b.maxWidth&&("undefined"===typeof b.params.maxwidth||null===b.params.maxwidth))b.params.maxwidth=b.maxWidth;if(null!==b.maxHeight&&("undefined"===typeof b.params.maxheight||null===b.params.maxheight))b.params.maxheight=b.maxHeight;for(g in b.params)g!= +(function(a){function n(b,a){a=a?a:"";return b?n(--b,"0123456789ABCDEFGHIJKLMNOPQRSTUVWXTZabcdefghiklmnopqrstuvwxyz".charAt(Math.floor(60*Math.random()))+a):a}function p(b,a){var f=b.apiendpoint,d="",g,f=f+(0>=f.indexOf("?")?"?":"&"),f=f.replace("#","%23");if(null!==b.maxWidth&&("undefined"===typeof b.params.maxwidth||null===b.params.maxwidth))b.params.maxwidth=b.maxWidth;if(null!==b.maxHeight&&("undefined"===typeof b.params.maxheight||null===b.params.maxheight))b.params.maxheight=b.maxHeight;for(g in b.params)g!= b.callbackparameter&&null!==b.params[g]&&(d+="&"+escape(g)+"="+b.params[g]);f+="format="+b.format+"&url="+escape(a)+d;"json"!=b.dataType&&(f+="&"+b.callbackparameter+"=?");return f}function m(b,k,f){a("#jqoembeddata").data(k,b.code);l.beforeEmbed.call(f,b);l.onEmbed.call(f,b);l.afterEmbed.call(f,b)}function o(b,k,f){if(void 0!=a("#jqoembeddata").data(k)&&"iframe"!=f.embedtag.tag){var d={code:a("#jqoembeddata").data(k)};m(d,k,b)}else if(f.yql){var d=f.yql.from||"htmlstring",g=f.yql.url?f.yql.url(k): k,e="SELECT * FROM "+d+' WHERE url="'+g+'" and '+(/html/.test(d)?"xpath":"itemPath")+"='"+(f.yql.xpath||"/")+"'";"html"==d&&(e+=" and compat='html5'");d=a.extend({url:"http://query.yahooapis.com/v1/public/yql",dataType:"jsonp",data:{q:e,format:"json",env:"store://datatables.org/alltableswithkeys",callback:"?"},success:function(c){if(f.yql.xpath&&"//meta|//title|//link"==f.yql.xpath){var e={};null==c.query.results&&(c.query.results={meta:[]});for(var d=0,h=c.query.results.meta.length;d=f.indexOf("?")?"?":"&"),f=f.replace("#","%23");if(null!==b.maxWidth&&("undefined"===typeof b.params.maxwidth||null===b.params.maxwidth))b.params.maxwidth=b.maxWidth;if(null!==b.maxHeight&&("undefined"===typeof b.params.maxheight||null===b.params.maxheight))b.params.maxheight=b.maxHeight;for(g in b.params)g!= +(function(a){function n(b,a){a=a?a:"";return b?n(--b,"0123456789ABCDEFGHIJKLMNOPQRSTUVWXTZabcdefghiklmnopqrstuvwxyz".charAt(Math.floor(60*Math.random()))+a):a}function p(b,a){var f=b.apiendpoint,d="",g,f=f+(0>=f.indexOf("?")?"?":"&"),f=f.replace("#","%23");if(null!==b.maxWidth&&("undefined"===typeof b.params.maxwidth||null===b.params.maxwidth))b.params.maxwidth=b.maxWidth;if(null!==b.maxHeight&&("undefined"===typeof b.params.maxheight||null===b.params.maxheight))b.params.maxheight=b.maxHeight;for(g in b.params)g!= b.callbackparameter&&null!==b.params[g]&&(d+="&"+escape(g)+"="+b.params[g]);f+="format="+b.format+"&url="+escape(a)+d;"json"!=b.dataType&&(f+="&"+b.callbackparameter+"=?");return f}function m(b,k,f){a("#jqoembeddata").data(k,b.code);l.beforeEmbed.call(f,b);l.onEmbed.call(f,b);l.afterEmbed.call(f,b)}function o(b,k,f){if(void 0!=a("#jqoembeddata").data(k)&&"iframe"!=f.embedtag.tag){var d={code:a("#jqoembeddata").data(k)};m(d,k,b)}else if(f.yql){var d=f.yql.from||"htmlstring",g=f.yql.url?f.yql.url(k): k,e="SELECT * FROM "+d+' WHERE url="'+g+'" and '+(/html/.test(d)?"xpath":"itemPath")+"='"+(f.yql.xpath||"/")+"'";"html"==d&&(e+=" and compat='html5'");d=a.extend({url:"http://query.yahooapis.com/v1/public/yql",dataType:"jsonp",data:{q:e,format:"json",env:"store://datatables.org/alltableswithkeys",callback:"?"},success:function(c){if(f.yql.xpath&&"//meta|//title|//link"==f.yql.xpath){var e={};null==c.query.results&&(c.query.results={meta:[]});for(var d=0,h=c.query.results.meta.length;d=g)for(j||(h.push(''),j=!0);g<=a;){0==f&&h.push("");for(var e=!0,q=f;q"+l:">")+n+''+o+"");h.push("")}else{f=q;e=!1; break}if(e)f=0,h.push("");else break}}if(0!=f){for(g=f;g ");h.push("")}j?(h[0]=255':"
",h.push("
"),c=h.join(""),b.getElement().setHtml(c)):b.getElement().setHtml("
No valid range(s) defined...
")}else b.getElement().setHtml("
No range defined...
")}function t(a){a=a.toString(16).toUpperCase();return 1>a.length?eval('"\\u0000"'):2>a.length?eval('"\\u000'+a+'"'):3>a.length? diff --git a/static/ckeditor/ckeditor/plugins/table/dialogs/table.js b/static/ckeditor/ckeditor/plugins/table/dialogs/table.js index 01d9e38c..77d3a99d 100644 --- a/static/ckeditor/ckeditor/plugins/table/dialogs/table.js +++ b/static/ckeditor/ckeditor/plugins/table/dialogs/table.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/ckeditor/ckeditor/plugins/tabletools/dialogs/tableCell.js b/static/ckeditor/ckeditor/plugins/tabletools/dialogs/tableCell.js index 2c4e865b..930be031 100644 --- a/static/ckeditor/ckeditor/plugins/tabletools/dialogs/tableCell.js +++ b/static/ckeditor/ckeditor/plugins/tabletools/dialogs/tableCell.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/ckeditor/ckeditor/plugins/templates/dialogs/templates.js b/static/ckeditor/ckeditor/plugins/templates/dialogs/templates.js index 390fdb61..ae5dfc20 100644 --- a/static/ckeditor/ckeditor/plugins/templates/dialogs/templates.js +++ b/static/ckeditor/ckeditor/plugins/templates/dialogs/templates.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/ckeditor/ckeditor/plugins/templates/templates/default.js b/static/ckeditor/ckeditor/plugins/templates/templates/default.js index 51a4d9a6..b27f4782 100644 --- a/static/ckeditor/ckeditor/plugins/templates/templates/default.js +++ b/static/ckeditor/ckeditor/plugins/templates/templates/default.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/ckeditor/ckeditor/plugins/uploadcare/config.js b/static/ckeditor/ckeditor/plugins/uploadcare/config.js index 6d21c974..417041e4 100644 --- a/static/ckeditor/ckeditor/plugins/uploadcare/config.js +++ b/static/ckeditor/ckeditor/plugins/uploadcare/config.js @@ -1 +1 @@ -var UPLOADCARE_PUBLIC_KEY="demopublickey"; \ No newline at end of file +var UPLOADCARE_PUBLIC_KEY="demopublickey"; \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/wsc/dialogs/wsc.js b/static/ckeditor/ckeditor/plugins/wsc/dialogs/wsc.js index 6b39b006..294f11fe 100644 --- a/static/ckeditor/ckeditor/plugins/wsc/dialogs/wsc.js +++ b/static/ckeditor/ckeditor/plugins/wsc/dialogs/wsc.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/ckeditor/ckeditor/samples/assets/uilanguages/languages.js b/static/ckeditor/ckeditor/samples/assets/uilanguages/languages.js index 1b705f18..d07a0dac 100644 --- a/static/ckeditor/ckeditor/samples/assets/uilanguages/languages.js +++ b/static/ckeditor/ckeditor/samples/assets/uilanguages/languages.js @@ -1,4 +1,4 @@ -/* +/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/ckeditor/ckeditor/samples/plugins/dialog/assets/my_dialog.js b/static/ckeditor/ckeditor/samples/plugins/dialog/assets/my_dialog.js index e93c2ca3..73ff6bdd 100644 --- a/static/ckeditor/ckeditor/samples/plugins/dialog/assets/my_dialog.js +++ b/static/ckeditor/ckeditor/samples/plugins/dialog/assets/my_dialog.js @@ -1,4 +1,4 @@ -/** +/** * Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. * For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/ckeditor/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/swfobject.js b/static/ckeditor/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/swfobject.js index 95fdf0a7..76f37846 100644 --- a/static/ckeditor/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/swfobject.js +++ b/static/ckeditor/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/swfobject.js @@ -1,4 +1,4 @@ -var swfobject=function(){function u(){if(!s){try{var a=d.getElementsByTagName("body")[0].appendChild(d.createElement("span"));a.parentNode.removeChild(a)}catch(b){return}s=!0;for(var a=x.length,c=0;cf){f++;setTimeout(arguments.callee,10);return}a.removeChild(b);c=null;D()})()}else D()}function D(){var a=p.length;if(0e.wk))t(c,!0),f&&(g.success=!0,g.ref=E(c),f(g));else if(p[b].expressInstall&&F()){g={};g.data=p[b].expressInstall;g.width=d.getAttribute("width")||"0";g.height=d.getAttribute("height")||"0";d.getAttribute("class")&&(g.styleclass=d.getAttribute("class"));d.getAttribute("align")&&(g.align=d.getAttribute("align"));for(var h={},d=d.getElementsByTagName("param"),j=d.length,k=0;ke.wk)}function G(a,b,c,f){A=!0;H=f||null;N={success:!1,id:c};var g=n(c);if(g){"OBJECT"==g.nodeName?(w=I(g),B=null):(w=g,B=c);a.id= diff --git a/static/ckeditor/ckeditor/samples/sample.js b/static/ckeditor/ckeditor/samples/sample.js index 79c76796..17332ada 100644 --- a/static/ckeditor/ckeditor/samples/sample.js +++ b/static/ckeditor/ckeditor/samples/sample.js @@ -1,4 +1,4 @@ -/** +/** * Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. * For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/ckeditor/ckeditor/styles.js b/static/ckeditor/ckeditor/styles.js index 9cd1c13a..6bf8cb1a 100644 --- a/static/ckeditor/ckeditor/styles.js +++ b/static/ckeditor/ckeditor/styles.js @@ -1,4 +1,4 @@ -/** +/** * Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. * For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/static/custom_js/place_city_ajax.js b/static/custom_js/place_city_ajax.js index 716ff370..12cbd744 100644 --- a/static/custom_js/place_city_ajax.js +++ b/static/custom_js/place_city_ajax.js @@ -14,6 +14,5 @@ $('#id_city').attr('disabled', false); }); - }); }); diff --git a/static/custom_js/specialist.js b/static/custom_js/specialist.js new file mode 100644 index 00000000..560d85a8 --- /dev/null +++ b/static/custom_js/specialist.js @@ -0,0 +1,93 @@ +/** + * Created by dev on 07.09.2015. + */ +$(document).ready(function () { + $('select').select2({ + width: 'element', + allowClear: true + }); + + $('#id_country').change(function () { + $.get( + "/admin/ajax_city/", {'id': $(this).val()}, function (j) { + + $('#id_city').html(j); + $('#id_city').attr('disabled', false); + + }); + }); + + + $('#id_city').select2({ + placeholder: "Город", + width: 300, + ajax: { + + url: "/admin/city/search/", + dataType: "json", + quietMillis: 200, + + data: function (term, page, country) { + var country = $('#id_country').val(); + return { + term: term, + page: page, + country: country + }; + }, + + results: function (data) { + var results = []; + $.each(data, function (index, item) { + results.push({ + id: item.id, + text: item.label + }); + }); + return {results: results}; + } + }, + initSelection: function (element, callback) { + var id = $(element).val(); + var text = $(element).attr('data-init-text'); + callback({id: id, text: text}); + + } + + }); + + + // displaying uploaded photo + + function handleFileSelect(evt) { + var files = evt.target.files; // FileList object + + // Loop through the FileList and render image files as thumbnails. + for (var i = 0, f; f = files[i]; i++) { + + // Only process image files. + if (!f.type.match('image.*')) { + continue; + } + + var reader = new FileReader(); + + // Closure to capture the file information. + + reader.onload = (function (theFile) { + return function (e) { + document.getElementById('list').innerHTML = [''].join(''); + }; + })(f); + + + // Read in the image file as a data URL. + reader.readAsDataURL(f); + } + } + + document.getElementById('id_photo').addEventListener('change', handleFileSelect, false); + document.getElementById('id_logo').addEventListener('change', handleFileSelect, false); + console.log("hello from new specialist view.js"); +}); \ No newline at end of file diff --git a/static/custom_js/specialist_catalog.js b/static/custom_js/specialist_catalog.js new file mode 100644 index 00000000..cdc3ef55 --- /dev/null +++ b/static/custom_js/specialist_catalog.js @@ -0,0 +1,120 @@ +/** + * Created by dev on 07.09.2015. + */ +$(document).ready(function () { + $('select').select2({ + width: 'element', + allowClear: true + }); + + $('#id_country').change(function () { + $.get( + "/admin/ajax_city/", {'id': $(this).val()}, function (j) { + + $('#id_city').html(j); + $('#id_city').attr('disabled', false); + + }); + }); + + + $('#id_city').select2({ + placeholder: "Город", + width: 300, + ajax: { + + url: "/admin/city/search/", + dataType: "json", + quietMillis: 200, + + data: function (term, page, country) { + var country = $('#id_country').val(); + return { + term: term, + page: page, + country: country + }; + }, + + results: function (data) { + var results = []; + $.each(data, function (index, item) { + results.push({ + id: item.id, + text: item.label + }); + }); + return {results: results}; + } + }, + initSelection: function (element, callback) { + var id = $(element).val(); + var text = $(element).attr('data-init-text'); + callback({id: id, text: text}); + + } + + }); + + + // displaying uploaded photo + + function handleFileSelect1(evt) { + var files = evt.target.files; // FileList object + + // Loop through the FileList and render image files as thumbnails. + for (var i = 0, f; f = files[i]; i++) { + + // Only process image files. + if (!f.type.match('image.*')) { + continue; + } + + var reader = new FileReader(); + + // Closure to capture the file information. + + reader.onload = (function (theFile) { + return function (e) { + document.getElementById('list_picture').innerHTML = [''].join(''); + }; + })(f); + + + // Read in the image file as a data URL. + reader.readAsDataURL(f); + } + } + function handleFileSelect2(evt) { + var files = evt.target.files; // FileList object + + // Loop through the FileList and render image files as thumbnails. + for (var i = 0, f; f = files[i]; i++) { + + // Only process image files. + if (!f.type.match('image.*')) { + continue; + } + + var reader = new FileReader(); + + // Closure to capture the file information. + + reader.onload = (function (theFile) { + return function (e) { + document.getElementById('list_logo').innerHTML = [''].join(''); + }; + })(f); + + + // Read in the image file as a data URL. + reader.readAsDataURL(f); + } + } + + document.getElementById('id_place_photo').addEventListener('change', handleFileSelect1, false); + document.getElementById('id_logo_preview').addEventListener('change', handleFileSelect2, false); + console.log("hello from new catalog view.js"); +}); \ No newline at end of file diff --git a/static/custom_js/wizard.js b/static/custom_js/wizard.js new file mode 100644 index 00000000..796e2b8f --- /dev/null +++ b/static/custom_js/wizard.js @@ -0,0 +1,167 @@ +/** + * Created by dev on 07.09.2015. + */ +$(document).ready(function () { + $('select').select2({ + width: 'element', + allowClear: true + }); + + $('#id_country').change(function () { + $.get( + "/admin/ajax_city/", {'id': $(this).val()}, function (j) { + + $('#id_city').html(j); + $('#id_city').attr('disabled', false); + + }); + }); + $('#id_place').select2({ + placeholder:"Место проведения", + widht: 400 + }); + + $('#id_city').select2({ + placeholder: "Город", + width: 300, + ajax: { + + url: "/admin/city/search/", + dataType: "json", + quietMillis: 200, + + data: function (term, page, country) { + var country = $('#id_country').val() + return { + term: term, + page: page, + country: country + }; + }, + + results: function (data) { + var results = []; + $.each(data, function (index, item) { + results.push({ + id: item.id, + text: item.label + }); + }); + return {results: results}; + } + }, + initSelection: function (element, callback) { + var id = $(element).val(); + var text = $(element).attr('data-init-text'); + callback({id: id, text: text}); + + } + + }); + $('#id_0-periodic').select2({ + placeholder: "Периодичность", + width: '350px' + }); + + + $('#id_tag').select2({ + placeholder: "Теги", + width: '350px', + multiple: true, + ajax: { + + url: "/admin/theme/tag/search/", + dataType: "json", + quietMillis: 200, + multiple: true, + + data: function (term, page, theme) { + var theme = $('#id_theme').serialize().replace(/0-theme/g, 'theme'); + return { + term: term, + page: page, + theme: theme + }; + }, + + results: function (data) { + var results = []; + $.each(data, function (index, item) { + results.push({ + id: item.id, + text: item.label + }); + }); + return {results: results}; + } + }, + initSelection: function (element, callback) { + var data = []; + $(element.val().split(",")).each(function (i) { + var item = this.split(':'); + data.push({ + id: item[0], + text: item[1] + }); + }); + callback(data); + + } + + }); + // end selects + /* + */ + // theme change + + $('#id_theme').change(function () { + $.get( + "/admin/ajax_tag/", {'id': $(this).serialize().replace(/0-theme/g, 'theme')}, function (data) { + var optionValues = []; + var getValues = []; + var selectedValues = []; + //push values sended from server in array + $.each(data, function (i, elem) { + getValues.push(elem[0].toString()) + }); + //delete options if they aren't in getvalues + //otherwise push it in array + //also push in array already selected values + $('#id_tag option').each(function () { + var check = $.inArray($(this), getValues); + if ($(this).is(':selected')) { + selectedValues.push($(this).val()) + } + if (check == -1) { + $(this).remove() + } + else { + optionValues.push($(this).val()); + } + }); + //generate new options + //old options unchanged + var html = ''; + $.each(data, function (i, elem) { + var check = $.inArray(elem[0].toString(), optionValues); + + if (check == -1) { + html += ''; + } + }); + $('#id_tag').append(html); + //select previous selected values + $('#id_tag option').each(function () { + var check = $.inArray($(this).val(), selectedValues) + if (check != -1) { + $(this).attr('selected', 'selected'); + } + }); + });//end get + });//end change + console.log("hello from wizard.js"); + }); \ No newline at end of file diff --git a/static/js/datetimepicker/js/locales/bootstrap-datetimepicker.lt.js b/static/js/datetimepicker/js/locales/bootstrap-datetimepicker.lt.js index 8018a70e..a639f6eb 100644 --- a/static/js/datetimepicker/js/locales/bootstrap-datetimepicker.lt.js +++ b/static/js/datetimepicker/js/locales/bootstrap-datetimepicker.lt.js @@ -1,4 +1,4 @@ -/** +/** * Lithuanian translation for bootstrap-datetimepicker * Šarūnas Gliebus */ diff --git a/templates/admin/expobanner/banner_stat.html b/templates/admin/expobanner/banner_stat.html index 15d51bc2..6de23537 100644 --- a/templates/admin/expobanner/banner_stat.html +++ b/templates/admin/expobanner/banner_stat.html @@ -1,5 +1,6 @@ {% extends 'base.html' %} {% load static %} +{% load i18n %} {% block scripts %} {% endblock %} @@ -12,6 +13,20 @@

{{ object }} (Пароль: {{ object.stat_pswd }})

+ + +
+
+
+ + + + + +
+
+
+ @@ -23,7 +38,7 @@ - {% with stats=object.banner_stat.all %} + {% with stats=stats %} {% for stat in stats %} @@ -39,5 +54,19 @@ + {% endblock %} \ No newline at end of file diff --git a/templates/admin/expobanner/banners_control.html b/templates/admin/expobanner/banners_control.html index e307cecd..5d4214fb 100644 --- a/templates/admin/expobanner/banners_control.html +++ b/templates/admin/expobanner/banners_control.html @@ -13,6 +13,9 @@ + @@ -27,6 +30,9 @@ + diff --git a/templates/admin/expobanner/default_form.html b/templates/admin/expobanner/default_form.html index 50d696c0..3322088e 100644 --- a/templates/admin/expobanner/default_form.html +++ b/templates/admin/expobanner/default_form.html @@ -2,6 +2,7 @@ {% load static %} {% block scripts %} + {% endblock %} \ No newline at end of file diff --git a/templates/admin/expobanner/paid_stat.html b/templates/admin/expobanner/paid_stat.html index b935251c..1d0244ea 100644 --- a/templates/admin/expobanner/paid_stat.html +++ b/templates/admin/expobanner/paid_stat.html @@ -1,4 +1,5 @@ {% extends 'base.html' %} +{% load i18n %} {% load static %} {% block scripts %} @@ -12,6 +13,24 @@

{{ object.get_event }} (Пароль: {{ object.stat_pswd }})

+
+
Линк на статистику: {{ request.get_host }}/expo-b/paid/{{ object.id }}/stat/
+
Пароль: {{ object.stat_pswd }}
+
+ + +
+
+
+ + + + + +
+ +
+
{{ stat.date|date:"Y-m-d" }}
@@ -23,7 +42,14 @@ - {% with stats=object.paidstat_set.all %} + + + + + + + + {% with stats=stats %} {% for stat in stats %} @@ -39,5 +65,19 @@ + {% endblock %} \ No newline at end of file diff --git a/templates/admin/expobanner/top_create.html b/templates/admin/expobanner/top_create.html index 4479d055..648ea992 100644 --- a/templates/admin/expobanner/top_create.html +++ b/templates/admin/expobanner/top_create.html @@ -61,7 +61,7 @@ $(function(){
-

{{ form.verbose }}

+

{{ form.verbose }} {% if object %}{{ object.get_event }}{% endif %}

{% for field in form %} diff --git a/templates/admin/expobanner/top_list.html b/templates/admin/expobanner/top_list.html index 78642de7..13110d32 100644 --- a/templates/admin/expobanner/top_list.html +++ b/templates/admin/expobanner/top_list.html @@ -9,6 +9,11 @@
{% block list_table %} Добавить выставку +
+
+ Только активние + +
За весь период{{ all.official }}{{ all.ticket }}{{ all.participation}}{{ all.catalog }}
{{ stat.date|date:"Y-m-d" }}
@@ -32,5 +37,13 @@ {# pagination #} {% include 'admin/includes/admin_pagination.html' with page_obj=object_list %} - + {% endblock %} \ No newline at end of file diff --git a/templates/admin/includes/admin_nav.html b/templates/admin/includes/admin_nav.html index 59a41ebf..25226d51 100644 --- a/templates/admin/includes/admin_nav.html +++ b/templates/admin/includes/admin_nav.html @@ -29,11 +29,7 @@ Пользователи @@ -46,7 +42,6 @@
  • Тематики
  • Теги
  • Услуги
  • -
  • Настройки
  • Главная страница
  • Мета
  • @@ -61,9 +56,8 @@
  • Управление банерами
  • Платные выставки
  • Выставки в топе
  • +
  • Выставки на главной
  • diff --git a/templates/admin/meta/create_seo_text.html b/templates/admin/meta/create_seo_text.html index 3bf4c337..04182684 100644 --- a/templates/admin/meta/create_seo_text.html +++ b/templates/admin/meta/create_seo_text.html @@ -1,63 +1,79 @@ -{% extends 'base.html' %} -{% load static %} -{# Displays article form #} - - {% block scripts %} - - - {# selects #} - - - - {# ajax #} - - - - {% endblock %} - -{% block body %} - {{ request.LANGUAGE_CODE }} - {% csrf_token %} -
    -
    -
    -

    Основная информация

    -
    -
    - {# url/slug #} -
    - -
    - {{ form.langs }} - {{ form.url }} - {{ form.url.errors }} -
    -
    - {# title #} -
    - -
    - {{ form.title }} - {{ form.title.errors }} -
    -
    - {# body #} -
    - -
    - {{ form.body }} - {{ form.body.errors }} -
    -
    -
    -
    - -
    - - - -
    -
    - - -{% endblock %} +{% extends 'base.html' %} +{% load static %} +{# Displays article form #} + + {% block scripts %} + + + {# selects #} + + + + {# ajax #} + + + + {% endblock %} + +{% block body %} + {{ request.LANGUAGE_CODE }} + {% csrf_token %} +
    +
    +
    +

    Основная информация

    +
    +
    + {# url/slug #} +
    + +
    + {{ form.langs }} + {{ form.url }} + {{ form.url.errors }} +
    +
    + {# title #} +
    + +
    + {{ form.title }} + {{ form.title.errors }} +
    +
    + {# page title #} +
    + +
    + {{ form.page_title }} + {{ form.page_title.errors }} +
    +
    + {# description #} +
    + +
    + {{ form.description }} + {{ form.description.errors }} +
    +
    + {# body #} +
    + +
    + {{ form.body }} + {{ form.body.errors }} +
    +
    +
    +
    + +
    + + + +
    +
    + + +{% endblock %} diff --git a/templates/admin/meta/seo_confirm_delete.html b/templates/admin/meta/seo_confirm_delete.html index aa997c38..90cc492c 100644 --- a/templates/admin/meta/seo_confirm_delete.html +++ b/templates/admin/meta/seo_confirm_delete.html @@ -1,11 +1,11 @@ -{% extends 'base.html' %} -{% block sidebar %}{% endblock %} -{% block body %} -{% csrf_token %} -
    -

    Вы точно хотите удалить seo-текст "{{ object.title }}" для страницы ?

    - - Нет -
    - +{% extends 'base.html' %} +{% block sidebar %}{% endblock %} +{% block body %} +{% csrf_token %} +
    +

    Вы точно хотите удалить seo-текст "{{ object.title }}" для страницы ?

    + + Нет +
    + {% endblock %} \ No newline at end of file diff --git a/templates/admin/page/new_page.html b/templates/admin/page/new_page.html index ac08c1b4..8fed1258 100644 --- a/templates/admin/page/new_page.html +++ b/templates/admin/page/new_page.html @@ -1,90 +1,90 @@ -{% extends 'base.html' %} -{% load static %} -{# Displays article form #} - - {% block scripts %} - - - {# selects #} - - - - {# ajax #} - - - - {% endblock %} - -{% block body %} - -{# Uses multilang.html template for translated fields #} - {% csrf_token %} -
    -
    -
    -

    Основная информация

    -
    -
    - {# url/slug #} - {% if request.path == '/admin/page/new/' %} -
    - -
    - {{ form.langs }} - {{ form.url }} - {{ form.url.errors }} -
    -
    - {% endif %} - {# h1 #} -
    - -
    - {{ form.h1 }} - {{ form.h1.errors }} -
    -
    - {# title #} -
    - -
    - {{ form.title }} - {{ form.title.errors }} -
    -
    - {# description #} -
    - -
    - {{ form.descriptions }} - {{ form.descriptions.errors }} -
    -
    - {# keywords #} -
    - -
    - {{ form.keywords }} - {{ form.keywords.errors }} -
    -
    - {# body #} -
    - -
    - {{ form.body }} - {{ form.body.errors }} -
    -
    -
    -
    - -
    - - - -
    -
    - - -{% endblock %} +{% extends 'base.html' %} +{% load static %} +{# Displays article form #} + + {% block scripts %} + + + {# selects #} + + + + {# ajax #} + + + + {% endblock %} + +{% block body %} + +{# Uses multilang.html template for translated fields #} + {% csrf_token %} +
    +
    +
    +

    Основная информация

    +
    +
    + {# url/slug #} +{# {% if request.path == '/admin/page/new/' %}#} +
    + +
    + {{ form.url }} + {{ form.url.errors }} +
    +
    +{# {% endif %}#} + + {# h1 #} +
    + +
    + {{ form.h1 }} + {{ form.h1.errors }} +
    +
    + {# title #} +
    + +
    + {{ form.title }} + {{ form.title.errors }} +
    +
    + {# description #} +
    + +
    + {{ form.descriptions }} + {{ form.descriptions.errors }} +
    +
    + {# keywords #} +
    + +
    + {{ form.keywords }} + {{ form.keywords.errors }} +
    +
    + {# body #} +
    + +
    + {{ form.body }} + {{ form.body.errors }} +
    +
    +
    +
    + +
    + + + +
    +
    + + +{% endblock %} diff --git a/templates/admin/page/page_confirm_delete.html b/templates/admin/page/page_confirm_delete.html index c957256f..22558761 100644 --- a/templates/admin/page/page_confirm_delete.html +++ b/templates/admin/page/page_confirm_delete.html @@ -1,11 +1,11 @@ -{% extends 'base.html' %} -{% block sidebar %}{% endblock %} -{% block body %} -{% csrf_token %} -
    -

    Вы точно хотите удалить страницу "{{ object }}"?

    - - Нет -
    - +{% extends 'base.html' %} +{% block sidebar %}{% endblock %} +{% block body %} +{% csrf_token %} +
    +

    Вы точно хотите удалить страницу "{{ object }}"?

    + + Нет +
    + {% endblock %} \ No newline at end of file diff --git a/templates/admin/page/page_template_view.html b/templates/admin/page/page_template_view.html new file mode 100644 index 00000000..214b7ba0 --- /dev/null +++ b/templates/admin/page/page_template_view.html @@ -0,0 +1,14 @@ +{% extends 'client/base_catalog.html' %} +{% load static %} +{% load i18n %} +{% load template_filters %} + +{% block title %}{{ object.title }} {% endblock %} + +{% block content_list %} +
    + {{ object.h1 }} +
    +
    {{ object.body }}
    + +{% endblock %} \ No newline at end of file diff --git a/templates/admin/specialist/catalog_all.html b/templates/admin/specialist/catalog_all.html new file mode 100644 index 00000000..ae0b720e --- /dev/null +++ b/templates/admin/specialist/catalog_all.html @@ -0,0 +1,74 @@ +{% extends 'base.html' %} +{% load thumbnail %} +{% load i18n %} +{% block body %} +
    +
    +

    Поиск

    +
    +
    +
    + + + + + + +
    + +
    + +
    +
    +

    {% trans "Все каталоги специалистов" %}

    +
    +
    +
    + + + + + + + + + + + {% for item in object_list %} + + + + + + + + + {% endfor %} + +
    {% trans "Заголовок" %}{% trans 'Страна/Город' %}Link 
    {{ item.title }}{% if item.type == 1%}{{ item.country.name }}{% else %}{{ item.city.name }}{% endif %}{% trans "на сайте" %} + + {% trans "Изменить" %} + + + + {% trans "Удалить" %} + +
    + + {% trans "Добавить" %} +
    + {% include 'admin/includes/admin_pagination.html' %} + + +{% endblock %} \ No newline at end of file diff --git a/templates/admin/specialist/catalog_confirm_delete.html b/templates/admin/specialist/catalog_confirm_delete.html new file mode 100644 index 00000000..6dd1ae8e --- /dev/null +++ b/templates/admin/specialist/catalog_confirm_delete.html @@ -0,0 +1,11 @@ +{% extends 'base.html' %} +{% block sidebar %}{% endblock %} +{% block body %} +
    {% csrf_token %} +
    +

    Вы точно хотите удалить "{{ object.title }}" ?

    + + Нет +
    +
    +{% endblock %} \ No newline at end of file diff --git a/templates/admin/specialist/catalog_new.html b/templates/admin/specialist/catalog_new.html new file mode 100644 index 00000000..f66f8d09 --- /dev/null +++ b/templates/admin/specialist/catalog_new.html @@ -0,0 +1,195 @@ +{% extends 'base.html' %} +{% load thumbnail %} +{% load static %} +{# Displays article form #} + + {% block scripts %} + + {# selects for city and country #} + + + + + {% endblock %} + +{% block body %} +
    {% csrf_token %} +
    +
    +
    +

    Добавление каталога специалистов(переводчиков)

    +
    +
    + {# title #} +
    + +
    + {{ form.title }} + {{ form.title.errors }} +
    +
    + {# main_descr #} +
    + +
    + {{ form.main_descr }} + {{ form.main_descr.errors }} +
    +
    + + {# benefits #} +
    + +
    + {{ form.benefits }} + {{ form.benefits.errors }} +
    +
    + {# big_cities #} +
    + +
    + {{ form.big_cities }} + {{ form.big_cities.errors }} +
    +
    + + {# price #} +
    + +
    + {{ form.price }}{{ form.currency.label }}{{ form.currency }} + {{ form.price.errors }} +
    +
    + + {# type #} +
    + +
    + {{ form.type }} + {{ form.type.errors }} +
    +
    + + {# country #} +
    + +
    + {{ form.country }} + {{ form.country.errors }} +
    +
    + {# city #} +
    + +
    + {{ form.city }} + {{ form.city.errors }} +
    +
    + + {# specialists #} +
    + +
    + {{ form.specialists }}Довавить + {{ form.specialists.errors }} +
    +
    + {# logo #} +
    + +
    + {{ form.logo }} + {{ form.logo.errors }} +
    +
    + {# place_photo #} +
    + +
    + {{ form.place_photo }} + {{ form.place_photo.errors }} +
    +
    + +
    +
    + +
    + + + + Вернуться +
    +
    +
    + + +
    +
    +

    Отзывы для текущего каталога

    +
    +
    + {% if object.feedback_set.all %} + {% with object.feedback_set.all as feedbacks %} + + + + + + + + + + + + + {% for item in feedbacks %} + + + + + + + + + + + {% endfor %} + +
    ЛоготипИмяКомпанияТекст 
    + {% thumbnail item.logo "100x100" crop="center" as im %} + + {% endthumbnail %}{{ item.name }}{{ item.company }}{{ item.text }} + + Изменить + + + + Удалить + +
    + + Хочу еще один + {% endwith %} + {% elif object.id %} + Отзывов еще нет, + + Добавить + {% endif %} +
    + + +
    + + + +{% endblock %} diff --git a/templates/admin/specialist/feedback_all.html b/templates/admin/specialist/feedback_all.html new file mode 100644 index 00000000..2d40605f --- /dev/null +++ b/templates/admin/specialist/feedback_all.html @@ -0,0 +1,62 @@ +{% extends 'base.html' %} +{% load thumbnail %} +{% block body %} +
    +
    +

    Отзывы для %(calatolog)

    +
    +
    + + + + + + + + + + + + + {% for item in object_list %} + + + + + + + + + + + {% endfor %} + +
    Логотип ИмяКомпанияТекст 
    + {% thumbnail item.logo "100x100" crop="center" as im %} + + {% endthumbnail %}{{ item.name }}{{ item.company }}{{ item.text }} + + Изменить + + + + Удалить + +
    + + Хочу еще один +
    + + +
    +{% endblock %} \ No newline at end of file diff --git a/templates/admin/specialist/feedback_confirm_delete.html b/templates/admin/specialist/feedback_confirm_delete.html new file mode 100644 index 00000000..2314e117 --- /dev/null +++ b/templates/admin/specialist/feedback_confirm_delete.html @@ -0,0 +1,11 @@ +{% extends 'base.html' %} +{% block sidebar %}{% endblock %} +{% block body %} +
    {% csrf_token %} +
    +

    Вы точно хотите удалить "{{ object.name }}" ?

    + + Нет +
    +
    +{% endblock %} \ No newline at end of file diff --git a/templates/admin/specialist/feedback_new.html b/templates/admin/specialist/feedback_new.html new file mode 100644 index 00000000..404651b1 --- /dev/null +++ b/templates/admin/specialist/feedback_new.html @@ -0,0 +1,79 @@ +{% extends 'base.html' %} +{% load static %} +{# Displays article form #} + + {% block scripts %} + {# selects for city and country #} + + + + + {% endblock %} + +{% block body %} +
    {% csrf_token %} +
    +
    +
    +

    Добавление отз ва

    +
    +
    + {# name #} +
    + +
    + {{ form.name }} + {{ form.name.errors }} +
    +
    + {# company #} +
    + +
    + {{ form.company }} + {{ form.company.errors }} +
    +
    + {# text #} +
    + +
    + {{ form.text }} + {{ form.text.errors }} +
    +
    + {# catalog #} +
    + +
    + {{ form.catalog }} + {{ form.catalog.errors }} +
    +
    + {# logo #} +
    + +
    + {{ form.logo }} + {{ form.logo.errors }} +
    +
    + +
    +
    + +
    + + + +
    +
    +
    + +{% endblock %} diff --git a/templates/admin/specialist/specialist_all.html b/templates/admin/specialist/specialist_all.html new file mode 100644 index 00000000..df69fa63 --- /dev/null +++ b/templates/admin/specialist/specialist_all.html @@ -0,0 +1,76 @@ +{% extends 'base.html' %} +{% load thumbnail %} +{% block body %} +
    +
    +

    Поиск

    +
    +
    +
    + + + +
    +
    + +
    + +
    +
    +

    Список специалистов(переводчиков)

    +
    +
    + + + + + + + + + + + + + {% for item in object_list %} + + + + + + + + + + + {% endfor %} + +
    Фото ИмяГородЯзыки 
    + {% thumbnail item.photo "100x100" crop="center" as im %} + + {% endthumbnail %}{{ item.name }}{{ item.city.name }}{{ item.languages }} + + Изменить + + + + Удалить + +
    + + Хочу еще +
    + + +
    +{% endblock %} \ No newline at end of file diff --git a/templates/admin/specialist/specialist_confirm_delete.html b/templates/admin/specialist/specialist_confirm_delete.html new file mode 100644 index 00000000..4cb4b98c --- /dev/null +++ b/templates/admin/specialist/specialist_confirm_delete.html @@ -0,0 +1,11 @@ +{% extends 'base.html' %} +{% block sidebar %}{% endblock %} +{% block body %} +
    {% csrf_token %} +
    +

    Вы точно хотите удалить "{{ object.name }}" ?

    + + Нет +
    +
    +{% endblock %} \ No newline at end of file diff --git a/templates/admin/specialist/specialist_new.html b/templates/admin/specialist/specialist_new.html new file mode 100644 index 00000000..7835b82c --- /dev/null +++ b/templates/admin/specialist/specialist_new.html @@ -0,0 +1,79 @@ +{% extends 'base.html' %} +{% load static %} +{# Displays article form #} + + {% block scripts %} + {# selects for city and country #} + + + + + {% endblock %} + +{% block body %} +
    {% csrf_token %} +
    +
    +
    +

    Добавление специалиста(переводчика)

    +
    +
    + {# name #} +
    + +
    + {{ form.name }} + {{ form.name.errors }} +
    +
    + {# languages #} +
    + +
    + {{ form.languages }} + {{ form.languages.errors }} +
    +
    + {# country #} +
    + +
    + {{ form.country }} + {{ form.country.errors }} +
    +
    + {# city #} +
    + +
    + {{ form.city }} + {{ form.city.errors }} +
    +
    + {# photo #} +
    + +
    + {{ form.photo }} + {{ form.photo.errors }} +
    +
    + +
    +
    + +
    + + + +
    +
    +
    + +{% endblock %} diff --git a/templates/client/404.html b/templates/client/404.html index bded0e78..27dc338f 100644 --- a/templates/client/404.html +++ b/templates/client/404.html @@ -1,17 +1,18 @@ {% extends 'base_catalog.html' %} +{% load i18n %} {% block content_list %}
    -

    Запрашиваемая страница не найдена

    +

    {% trans 'Запрашиваемая страница не найдена' %}

    404: -

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

    +

    {% trans 'Возможно у нее изменился адрес или же она была удалена' %}.
    {% trans 'Воспользуйтесь поиском по названию, расширенной формой поиска или каталогом событий' %}.


    -

    Каталог выставок

    +

    {% trans 'Каталог выставок' %}


    -

    Каталог конференций

    +

    {% trans 'Каталог конференций' %}

      {% for item in conf_themes %}
    • {{ item.name }} ({{ item.conference_count }})
    • diff --git a/templates/client/404_test.html b/templates/client/404_test.html new file mode 100644 index 00000000..bded0e78 --- /dev/null +++ b/templates/client/404_test.html @@ -0,0 +1,31 @@ +{% extends 'base_catalog.html' %} + +{% block content_list %} + +
      +

      Запрашиваемая страница не найдена

      +
      +
      + 404: +

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

      +
      +
      +
      +

      Каталог выставок

      + +
      +
      +
      +

      Каталог конференций

      + +
      +
      +{% endblock %} \ No newline at end of file diff --git a/templates/client/accounts/calendar.html b/templates/client/accounts/calendar.html index 261d1bfd..d49542e5 100644 --- a/templates/client/accounts/calendar.html +++ b/templates/client/accounts/calendar.html @@ -28,16 +28,18 @@ {% if events|length > 0 %}
      {{ days.15|date:"F"}}’{{ days.15|date:"y"}}
      - {% include 'includes/accounts/calendar_list.html' with events=events %} + {% include 'client/includes/accounts/calendar_list.html' with events=events %}
      + {% endblock %} {% block scripts %} - + +++++++++++++++++++++++++++++++++++++++++++++++++++++++ {% endblock %} \ No newline at end of file diff --git a/templates/client/accounts/email_required.html b/templates/client/accounts/email_required.html index 24300f36..bcacaaeb 100644 --- a/templates/client/accounts/email_required.html +++ b/templates/client/accounts/email_required.html @@ -1,7 +1,7 @@ -{% extends 'client/blank.html' %} -{% block main_part %} -
      {% csrf_token %} - {{ form }} - -
      +{% extends 'client/blank.html' %} +{% block main_part %} +
      {% csrf_token %} + {{ form }} + +
      {% endblock %} \ No newline at end of file diff --git a/templates/client/accounts/fill_company.html b/templates/client/accounts/fill_company.html index c338e95d..e3208cdb 100644 --- a/templates/client/accounts/fill_company.html +++ b/templates/client/accounts/fill_company.html @@ -72,9 +72,9 @@
    - +
    - закрыть + {% trans 'закрыть' %} @@ -115,8 +115,8 @@ {% if spec_form.specialization.value %} {% trans 'редактировать' %} {% else %} - Добавить - + {% trans 'Добавить' %} + {% endif %}
    {% csrf_token %} @@ -130,10 +130,10 @@
    - +
    - закрыть + {% trans 'закрыть' %} @@ -151,8 +151,8 @@ {% if address_form.address_inf.value %} {% trans 'редактировать' %} {% else %} - Добавить - + {% trans 'Добавить' %} + {% endif %}
    {% csrf_token %} @@ -163,10 +163,10 @@
    - +
    - закрыть + {% trans 'закрыть' %} @@ -269,8 +269,8 @@ {% if phone_form.phone.value %} {% trans 'редактировать' %} {% else %} - Добавить - + {% trans 'Добавить' %} + {% endif %}
    {% csrf_token %} @@ -301,7 +301,7 @@ {% if email_form.email.value %} {% trans 'редактировать' %} {% else %} - Добавить + {% trans 'Добавить' %} {% endif %}
    diff --git a/templates/client/accounts/new_profile.html b/templates/client/accounts/new_profile.html index bf5d47bb..472b4f2d 100644 --- a/templates/client/accounts/new_profile.html +++ b/templates/client/accounts/new_profile.html @@ -46,8 +46,10 @@
    551
    + {% blocktrans %}

    Заполните свой
    профиль, чтобы
    повысить рейтинг

    Чем выше
    рейтинг —
    тем больше
    преимуществ!

    + {% endblocktrans %}
    @@ -83,7 +85,7 @@
    - +
    {{ home_form.country }}
    @@ -99,11 +101,11 @@
    - +
    - закрыть + {% trans 'закрыть' %}
    @@ -159,8 +161,8 @@ {% if work_form.position.value and work_form.company.value %} {% trans 'редактировать' %} {% else %} - Указать - + {% trans 'Указать' %} + {% endif %}
    {% csrf_token %} @@ -191,12 +193,12 @@
    - редактировать профиль - завершить редактирование + {% trans 'редактировать профиль' %} + {% trans 'завершить редактирование' %}
    Добавить профили в соц.сетях: