├── db.sqlite3 ├── ecommerce ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── settings.cpython-38.pyc │ ├── urls.cpython-38.pyc │ └── wsgi.cpython-38.pyc ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── env ├── Include │ ├── Python-ast.h │ ├── Python.h │ ├── abstract.h │ ├── asdl.h │ ├── ast.h │ ├── bitset.h │ ├── bltinmodule.h │ ├── boolobject.h │ ├── bytearrayobject.h │ ├── bytes_methods.h │ ├── bytesobject.h │ ├── cellobject.h │ ├── ceval.h │ ├── classobject.h │ ├── code.h │ ├── codecs.h │ ├── compile.h │ ├── complexobject.h │ ├── context.h │ ├── cpython │ │ ├── abstract.h │ │ ├── dictobject.h │ │ ├── fileobject.h │ │ ├── initconfig.h │ │ ├── interpreteridobject.h │ │ ├── object.h │ │ ├── objimpl.h │ │ ├── pyerrors.h │ │ ├── pylifecycle.h │ │ ├── pymem.h │ │ ├── pystate.h │ │ ├── sysmodule.h │ │ ├── traceback.h │ │ ├── tupleobject.h │ │ └── unicodeobject.h │ ├── datetime.h │ ├── descrobject.h │ ├── dictobject.h │ ├── dtoa.h │ ├── dynamic_annotations.h │ ├── enumobject.h │ ├── errcode.h │ ├── eval.h │ ├── fileobject.h │ ├── fileutils.h │ ├── floatobject.h │ ├── frameobject.h │ ├── funcobject.h │ ├── genobject.h │ ├── graminit.h │ ├── grammar.h │ ├── import.h │ ├── internal │ │ ├── pycore_accu.h │ │ ├── pycore_atomic.h │ │ ├── pycore_ceval.h │ │ ├── pycore_code.h │ │ ├── pycore_condvar.h │ │ ├── pycore_context.h │ │ ├── pycore_fileutils.h │ │ ├── pycore_getopt.h │ │ ├── pycore_gil.h │ │ ├── pycore_hamt.h │ │ ├── pycore_initconfig.h │ │ ├── pycore_object.h │ │ ├── pycore_pathconfig.h │ │ ├── pycore_pyerrors.h │ │ ├── pycore_pyhash.h │ │ ├── pycore_pylifecycle.h │ │ ├── pycore_pymem.h │ │ ├── pycore_pystate.h │ │ ├── pycore_traceback.h │ │ ├── pycore_tupleobject.h │ │ └── pycore_warnings.h │ ├── interpreteridobject.h │ ├── intrcheck.h │ ├── iterobject.h │ ├── listobject.h │ ├── longintrepr.h │ ├── longobject.h │ ├── marshal.h │ ├── memoryobject.h │ ├── methodobject.h │ ├── modsupport.h │ ├── moduleobject.h │ ├── namespaceobject.h │ ├── node.h │ ├── object.h │ ├── objimpl.h │ ├── odictobject.h │ ├── opcode.h │ ├── osdefs.h │ ├── osmodule.h │ ├── parsetok.h │ ├── patchlevel.h │ ├── picklebufobject.h │ ├── py_curses.h │ ├── pyarena.h │ ├── pycapsule.h │ ├── pyconfig.h │ ├── pyctype.h │ ├── pydebug.h │ ├── pydtrace.h │ ├── pyerrors.h │ ├── pyexpat.h │ ├── pyfpe.h │ ├── pyhash.h │ ├── pylifecycle.h │ ├── pymacconfig.h │ ├── pymacro.h │ ├── pymath.h │ ├── pymem.h │ ├── pyport.h │ ├── pystate.h │ ├── pystrcmp.h │ ├── pystrhex.h │ ├── pystrtod.h │ ├── pythonrun.h │ ├── pythread.h │ ├── pytime.h │ ├── rangeobject.h │ ├── setobject.h │ ├── sliceobject.h │ ├── structmember.h │ ├── structseq.h │ ├── symtable.h │ ├── sysmodule.h │ ├── token.h │ ├── traceback.h │ ├── tracemalloc.h │ ├── tupleobject.h │ ├── typeslots.h │ ├── ucnhash.h │ ├── unicodeobject.h │ ├── warnings.h │ └── weakrefobject.h ├── LICENSE.txt ├── Lib │ ├── __future__.py │ ├── __pycache__ │ │ ├── __future__.cpython-38.pyc │ │ ├── _bootlocale.cpython-38.pyc │ │ ├── _collections_abc.cpython-38.pyc │ │ ├── _weakrefset.cpython-38.pyc │ │ ├── abc.cpython-38.pyc │ │ ├── base64.cpython-38.pyc │ │ ├── bisect.cpython-38.pyc │ │ ├── codecs.cpython-38.pyc │ │ ├── copy.cpython-38.pyc │ │ ├── copyreg.cpython-38.pyc │ │ ├── enum.cpython-38.pyc │ │ ├── fnmatch.cpython-38.pyc │ │ ├── functools.cpython-38.pyc │ │ ├── genericpath.cpython-38.pyc │ │ ├── hashlib.cpython-38.pyc │ │ ├── heapq.cpython-38.pyc │ │ ├── hmac.cpython-38.pyc │ │ ├── io.cpython-38.pyc │ │ ├── keyword.cpython-38.pyc │ │ ├── linecache.cpython-38.pyc │ │ ├── locale.cpython-38.pyc │ │ ├── ntpath.cpython-38.pyc │ │ ├── operator.cpython-38.pyc │ │ ├── os.cpython-38.pyc │ │ ├── posixpath.cpython-38.pyc │ │ ├── random.cpython-38.pyc │ │ ├── re.cpython-38.pyc │ │ ├── reprlib.cpython-38.pyc │ │ ├── shutil.cpython-38.pyc │ │ ├── site.cpython-38.pyc │ │ ├── sre_compile.cpython-38.pyc │ │ ├── sre_constants.cpython-38.pyc │ │ ├── sre_parse.cpython-38.pyc │ │ ├── stat.cpython-38.pyc │ │ ├── struct.cpython-38.pyc │ │ ├── tarfile.cpython-38.pyc │ │ ├── tempfile.cpython-38.pyc │ │ ├── token.cpython-38.pyc │ │ ├── tokenize.cpython-38.pyc │ │ ├── types.cpython-38.pyc │ │ ├── warnings.cpython-38.pyc │ │ └── weakref.cpython-38.pyc │ ├── _bootlocale.py │ ├── _collections_abc.py │ ├── _dummy_thread.py │ ├── _weakrefset.py │ ├── abc.py │ ├── base64.py │ ├── bisect.py │ ├── codecs.py │ ├── collections │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ └── abc.cpython-38.pyc │ │ └── abc.py │ ├── copy.py │ ├── copyreg.py │ ├── distutils │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ └── __init__.cpython-38.pyc │ │ └── distutils.cfg │ ├── encodings │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── aliases.cpython-38.pyc │ │ │ ├── charmap.cpython-38.pyc │ │ │ ├── cp1252.cpython-38.pyc │ │ │ ├── cp437.cpython-38.pyc │ │ │ ├── idna.cpython-38.pyc │ │ │ ├── latin_1.cpython-38.pyc │ │ │ ├── mbcs.cpython-38.pyc │ │ │ ├── unicode_escape.cpython-38.pyc │ │ │ ├── utf_16_be.cpython-38.pyc │ │ │ ├── utf_16_le.cpython-38.pyc │ │ │ └── utf_8.cpython-38.pyc │ │ ├── aliases.py │ │ ├── ascii.py │ │ ├── base64_codec.py │ │ ├── big5.py │ │ ├── big5hkscs.py │ │ ├── bz2_codec.py │ │ ├── charmap.py │ │ ├── cp037.py │ │ ├── cp1006.py │ │ ├── cp1026.py │ │ ├── cp1125.py │ │ ├── cp1140.py │ │ ├── cp1250.py │ │ ├── cp1251.py │ │ ├── cp1252.py │ │ ├── cp1253.py │ │ ├── cp1254.py │ │ ├── cp1255.py │ │ ├── cp1256.py │ │ ├── cp1257.py │ │ ├── cp1258.py │ │ ├── cp273.py │ │ ├── cp424.py │ │ ├── cp437.py │ │ ├── cp500.py │ │ ├── cp720.py │ │ ├── cp737.py │ │ ├── cp775.py │ │ ├── cp850.py │ │ ├── cp852.py │ │ ├── cp855.py │ │ ├── cp856.py │ │ ├── cp857.py │ │ ├── cp858.py │ │ ├── cp860.py │ │ ├── cp861.py │ │ ├── cp862.py │ │ ├── cp863.py │ │ ├── cp864.py │ │ ├── cp865.py │ │ ├── cp866.py │ │ ├── cp869.py │ │ ├── cp874.py │ │ ├── cp875.py │ │ ├── cp932.py │ │ ├── cp949.py │ │ ├── cp950.py │ │ ├── euc_jis_2004.py │ │ ├── euc_jisx0213.py │ │ ├── euc_jp.py │ │ ├── euc_kr.py │ │ ├── gb18030.py │ │ ├── gb2312.py │ │ ├── gbk.py │ │ ├── hex_codec.py │ │ ├── hp_roman8.py │ │ ├── hz.py │ │ ├── idna.py │ │ ├── iso2022_jp.py │ │ ├── iso2022_jp_1.py │ │ ├── iso2022_jp_2.py │ │ ├── iso2022_jp_2004.py │ │ ├── iso2022_jp_3.py │ │ ├── iso2022_jp_ext.py │ │ ├── iso2022_kr.py │ │ ├── iso8859_1.py │ │ ├── iso8859_10.py │ │ ├── iso8859_11.py │ │ ├── iso8859_13.py │ │ ├── iso8859_14.py │ │ ├── iso8859_15.py │ │ ├── iso8859_16.py │ │ ├── iso8859_2.py │ │ ├── iso8859_3.py │ │ ├── iso8859_4.py │ │ ├── iso8859_5.py │ │ ├── iso8859_6.py │ │ ├── iso8859_7.py │ │ ├── iso8859_8.py │ │ ├── iso8859_9.py │ │ ├── johab.py │ │ ├── koi8_r.py │ │ ├── koi8_t.py │ │ ├── koi8_u.py │ │ ├── kz1048.py │ │ ├── latin_1.py │ │ ├── mac_arabic.py │ │ ├── mac_centeuro.py │ │ ├── mac_croatian.py │ │ ├── mac_cyrillic.py │ │ ├── mac_farsi.py │ │ ├── mac_greek.py │ │ ├── mac_iceland.py │ │ ├── mac_latin2.py │ │ ├── mac_roman.py │ │ ├── mac_romanian.py │ │ ├── mac_turkish.py │ │ ├── mbcs.py │ │ ├── oem.py │ │ ├── palmos.py │ │ ├── ptcp154.py │ │ ├── punycode.py │ │ ├── quopri_codec.py │ │ ├── raw_unicode_escape.py │ │ ├── rot_13.py │ │ ├── shift_jis.py │ │ ├── shift_jis_2004.py │ │ ├── shift_jisx0213.py │ │ ├── tis_620.py │ │ ├── undefined.py │ │ ├── unicode_escape.py │ │ ├── utf_16.py │ │ ├── utf_16_be.py │ │ ├── utf_16_le.py │ │ ├── utf_32.py │ │ ├── utf_32_be.py │ │ ├── utf_32_le.py │ │ ├── utf_7.py │ │ ├── utf_8.py │ │ ├── utf_8_sig.py │ │ ├── uu_codec.py │ │ └── zlib_codec.py │ ├── enum.py │ ├── fnmatch.py │ ├── functools.py │ ├── genericpath.py │ ├── hashlib.py │ ├── heapq.py │ ├── hmac.py │ ├── imp.py │ ├── importlib │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── abc.cpython-38.pyc │ │ │ ├── machinery.cpython-38.pyc │ │ │ ├── resources.cpython-38.pyc │ │ │ └── util.cpython-38.pyc │ │ ├── _bootstrap.py │ │ ├── _bootstrap_external.py │ │ ├── abc.py │ │ ├── machinery.py │ │ ├── metadata.py │ │ ├── resources.py │ │ └── util.py │ ├── io.py │ ├── keyword.py │ ├── linecache.py │ ├── locale.py │ ├── no-global-site-packages.txt │ ├── ntpath.py │ ├── operator.py │ ├── orig-prefix.txt │ ├── os.py │ ├── posixpath.py │ ├── random.py │ ├── re.py │ ├── reprlib.py │ ├── rlcompleter.py │ ├── shutil.py │ ├── site-packages │ │ ├── Django-3.0.5.dist-info │ │ │ ├── AUTHORS │ │ │ ├── INSTALLER │ │ │ ├── LICENSE │ │ │ ├── LICENSE.python │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── entry_points.txt │ │ │ └── top_level.txt │ │ ├── PIL │ │ │ ├── BdfFontFile.py │ │ │ ├── BlpImagePlugin.py │ │ │ ├── BmpImagePlugin.py │ │ │ ├── BufrStubImagePlugin.py │ │ │ ├── ContainerIO.py │ │ │ ├── CurImagePlugin.py │ │ │ ├── DcxImagePlugin.py │ │ │ ├── DdsImagePlugin.py │ │ │ ├── EpsImagePlugin.py │ │ │ ├── ExifTags.py │ │ │ ├── FitsStubImagePlugin.py │ │ │ ├── FliImagePlugin.py │ │ │ ├── FontFile.py │ │ │ ├── FpxImagePlugin.py │ │ │ ├── FtexImagePlugin.py │ │ │ ├── GbrImagePlugin.py │ │ │ ├── GdImageFile.py │ │ │ ├── GifImagePlugin.py │ │ │ ├── GimpGradientFile.py │ │ │ ├── GimpPaletteFile.py │ │ │ ├── GribStubImagePlugin.py │ │ │ ├── Hdf5StubImagePlugin.py │ │ │ ├── IcnsImagePlugin.py │ │ │ ├── IcoImagePlugin.py │ │ │ ├── ImImagePlugin.py │ │ │ ├── Image.py │ │ │ ├── ImageChops.py │ │ │ ├── ImageCms.py │ │ │ ├── ImageColor.py │ │ │ ├── ImageDraw.py │ │ │ ├── ImageDraw2.py │ │ │ ├── ImageEnhance.py │ │ │ ├── ImageFile.py │ │ │ ├── ImageFilter.py │ │ │ ├── ImageFont.py │ │ │ ├── ImageGrab.py │ │ │ ├── ImageMath.py │ │ │ ├── ImageMode.py │ │ │ ├── ImageMorph.py │ │ │ ├── ImageOps.py │ │ │ ├── ImagePalette.py │ │ │ ├── ImagePath.py │ │ │ ├── ImageQt.py │ │ │ ├── ImageSequence.py │ │ │ ├── ImageShow.py │ │ │ ├── ImageStat.py │ │ │ ├── ImageTk.py │ │ │ ├── ImageTransform.py │ │ │ ├── ImageWin.py │ │ │ ├── ImtImagePlugin.py │ │ │ ├── IptcImagePlugin.py │ │ │ ├── Jpeg2KImagePlugin.py │ │ │ ├── JpegImagePlugin.py │ │ │ ├── JpegPresets.py │ │ │ ├── McIdasImagePlugin.py │ │ │ ├── MicImagePlugin.py │ │ │ ├── MpegImagePlugin.py │ │ │ ├── MpoImagePlugin.py │ │ │ ├── MspImagePlugin.py │ │ │ ├── PSDraw.py │ │ │ ├── PaletteFile.py │ │ │ ├── PalmImagePlugin.py │ │ │ ├── PcdImagePlugin.py │ │ │ ├── PcfFontFile.py │ │ │ ├── PcxImagePlugin.py │ │ │ ├── PdfImagePlugin.py │ │ │ ├── PdfParser.py │ │ │ ├── PixarImagePlugin.py │ │ │ ├── PngImagePlugin.py │ │ │ ├── PpmImagePlugin.py │ │ │ ├── PsdImagePlugin.py │ │ │ ├── PyAccess.py │ │ │ ├── SgiImagePlugin.py │ │ │ ├── SpiderImagePlugin.py │ │ │ ├── SunImagePlugin.py │ │ │ ├── TarIO.py │ │ │ ├── TgaImagePlugin.py │ │ │ ├── TiffImagePlugin.py │ │ │ ├── TiffTags.py │ │ │ ├── WalImageFile.py │ │ │ ├── WebPImagePlugin.py │ │ │ ├── WmfImagePlugin.py │ │ │ ├── XVThumbImagePlugin.py │ │ │ ├── XbmImagePlugin.py │ │ │ ├── XpmImagePlugin.py │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pycache__ │ │ │ │ ├── BdfFontFile.cpython-38.pyc │ │ │ │ ├── BlpImagePlugin.cpython-38.pyc │ │ │ │ ├── BmpImagePlugin.cpython-38.pyc │ │ │ │ ├── BufrStubImagePlugin.cpython-38.pyc │ │ │ │ ├── ContainerIO.cpython-38.pyc │ │ │ │ ├── CurImagePlugin.cpython-38.pyc │ │ │ │ ├── DcxImagePlugin.cpython-38.pyc │ │ │ │ ├── DdsImagePlugin.cpython-38.pyc │ │ │ │ ├── EpsImagePlugin.cpython-38.pyc │ │ │ │ ├── ExifTags.cpython-38.pyc │ │ │ │ ├── FitsStubImagePlugin.cpython-38.pyc │ │ │ │ ├── FliImagePlugin.cpython-38.pyc │ │ │ │ ├── FontFile.cpython-38.pyc │ │ │ │ ├── FpxImagePlugin.cpython-38.pyc │ │ │ │ ├── FtexImagePlugin.cpython-38.pyc │ │ │ │ ├── GbrImagePlugin.cpython-38.pyc │ │ │ │ ├── GdImageFile.cpython-38.pyc │ │ │ │ ├── GifImagePlugin.cpython-38.pyc │ │ │ │ ├── GimpGradientFile.cpython-38.pyc │ │ │ │ ├── GimpPaletteFile.cpython-38.pyc │ │ │ │ ├── GribStubImagePlugin.cpython-38.pyc │ │ │ │ ├── Hdf5StubImagePlugin.cpython-38.pyc │ │ │ │ ├── IcnsImagePlugin.cpython-38.pyc │ │ │ │ ├── IcoImagePlugin.cpython-38.pyc │ │ │ │ ├── ImImagePlugin.cpython-38.pyc │ │ │ │ ├── Image.cpython-38.pyc │ │ │ │ ├── ImageChops.cpython-38.pyc │ │ │ │ ├── ImageCms.cpython-38.pyc │ │ │ │ ├── ImageColor.cpython-38.pyc │ │ │ │ ├── ImageDraw.cpython-38.pyc │ │ │ │ ├── ImageDraw2.cpython-38.pyc │ │ │ │ ├── ImageEnhance.cpython-38.pyc │ │ │ │ ├── ImageFile.cpython-38.pyc │ │ │ │ ├── ImageFilter.cpython-38.pyc │ │ │ │ ├── ImageFont.cpython-38.pyc │ │ │ │ ├── ImageGrab.cpython-38.pyc │ │ │ │ ├── ImageMath.cpython-38.pyc │ │ │ │ ├── ImageMode.cpython-38.pyc │ │ │ │ ├── ImageMorph.cpython-38.pyc │ │ │ │ ├── ImageOps.cpython-38.pyc │ │ │ │ ├── ImagePalette.cpython-38.pyc │ │ │ │ ├── ImagePath.cpython-38.pyc │ │ │ │ ├── ImageQt.cpython-38.pyc │ │ │ │ ├── ImageSequence.cpython-38.pyc │ │ │ │ ├── ImageShow.cpython-38.pyc │ │ │ │ ├── ImageStat.cpython-38.pyc │ │ │ │ ├── ImageTk.cpython-38.pyc │ │ │ │ ├── ImageTransform.cpython-38.pyc │ │ │ │ ├── ImageWin.cpython-38.pyc │ │ │ │ ├── ImtImagePlugin.cpython-38.pyc │ │ │ │ ├── IptcImagePlugin.cpython-38.pyc │ │ │ │ ├── Jpeg2KImagePlugin.cpython-38.pyc │ │ │ │ ├── JpegImagePlugin.cpython-38.pyc │ │ │ │ ├── JpegPresets.cpython-38.pyc │ │ │ │ ├── McIdasImagePlugin.cpython-38.pyc │ │ │ │ ├── MicImagePlugin.cpython-38.pyc │ │ │ │ ├── MpegImagePlugin.cpython-38.pyc │ │ │ │ ├── MpoImagePlugin.cpython-38.pyc │ │ │ │ ├── MspImagePlugin.cpython-38.pyc │ │ │ │ ├── PSDraw.cpython-38.pyc │ │ │ │ ├── PaletteFile.cpython-38.pyc │ │ │ │ ├── PalmImagePlugin.cpython-38.pyc │ │ │ │ ├── PcdImagePlugin.cpython-38.pyc │ │ │ │ ├── PcfFontFile.cpython-38.pyc │ │ │ │ ├── PcxImagePlugin.cpython-38.pyc │ │ │ │ ├── PdfImagePlugin.cpython-38.pyc │ │ │ │ ├── PdfParser.cpython-38.pyc │ │ │ │ ├── PixarImagePlugin.cpython-38.pyc │ │ │ │ ├── PngImagePlugin.cpython-38.pyc │ │ │ │ ├── PpmImagePlugin.cpython-38.pyc │ │ │ │ ├── PsdImagePlugin.cpython-38.pyc │ │ │ │ ├── PyAccess.cpython-38.pyc │ │ │ │ ├── SgiImagePlugin.cpython-38.pyc │ │ │ │ ├── SpiderImagePlugin.cpython-38.pyc │ │ │ │ ├── SunImagePlugin.cpython-38.pyc │ │ │ │ ├── TarIO.cpython-38.pyc │ │ │ │ ├── TgaImagePlugin.cpython-38.pyc │ │ │ │ ├── TiffImagePlugin.cpython-38.pyc │ │ │ │ ├── TiffTags.cpython-38.pyc │ │ │ │ ├── WalImageFile.cpython-38.pyc │ │ │ │ ├── WebPImagePlugin.cpython-38.pyc │ │ │ │ ├── WmfImagePlugin.cpython-38.pyc │ │ │ │ ├── XVThumbImagePlugin.cpython-38.pyc │ │ │ │ ├── XbmImagePlugin.cpython-38.pyc │ │ │ │ ├── XpmImagePlugin.cpython-38.pyc │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── __main__.cpython-38.pyc │ │ │ │ ├── _binary.cpython-38.pyc │ │ │ │ ├── _tkinter_finder.cpython-38.pyc │ │ │ │ ├── _util.cpython-38.pyc │ │ │ │ ├── _version.cpython-38.pyc │ │ │ │ └── features.cpython-38.pyc │ │ │ ├── _binary.py │ │ │ ├── _imaging.cp38-win32.pyd │ │ │ ├── _imagingcms.cp38-win32.pyd │ │ │ ├── _imagingft.cp38-win32.pyd │ │ │ ├── _imagingmath.cp38-win32.pyd │ │ │ ├── _imagingmorph.cp38-win32.pyd │ │ │ ├── _imagingtk.cp38-win32.pyd │ │ │ ├── _tkinter_finder.py │ │ │ ├── _util.py │ │ │ ├── _version.py │ │ │ ├── _webp.cp38-win32.pyd │ │ │ └── features.py │ │ ├── Pillow-7.1.1.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── top_level.txt │ │ │ └── zip-safe │ │ ├── __pycache__ │ │ │ └── easy_install.cpython-38.pyc │ │ ├── asgiref-3.2.7.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ └── top_level.txt │ │ ├── asgiref │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── compatibility.cpython-38.pyc │ │ │ │ ├── current_thread_executor.cpython-38.pyc │ │ │ │ ├── local.cpython-38.pyc │ │ │ │ ├── server.cpython-38.pyc │ │ │ │ ├── sync.cpython-38.pyc │ │ │ │ ├── testing.cpython-38.pyc │ │ │ │ ├── timeout.cpython-38.pyc │ │ │ │ └── wsgi.cpython-38.pyc │ │ │ ├── compatibility.py │ │ │ ├── current_thread_executor.py │ │ │ ├── local.py │ │ │ ├── server.py │ │ │ ├── sync.py │ │ │ ├── testing.py │ │ │ ├── timeout.py │ │ │ └── wsgi.py │ │ ├── django │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── __main__.cpython-38.pyc │ │ │ │ └── shortcuts.cpython-38.pyc │ │ │ ├── apps │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── config.cpython-38.pyc │ │ │ │ │ └── registry.cpython-38.pyc │ │ │ │ ├── config.py │ │ │ │ └── registry.py │ │ │ ├── bin │ │ │ │ ├── __pycache__ │ │ │ │ │ └── django-admin.cpython-38.pyc │ │ │ │ └── django-admin.py │ │ │ ├── conf │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ └── global_settings.cpython-38.pyc │ │ │ │ ├── app_template │ │ │ │ │ ├── __init__.py-tpl │ │ │ │ │ ├── admin.py-tpl │ │ │ │ │ ├── apps.py-tpl │ │ │ │ │ ├── migrations │ │ │ │ │ │ └── __init__.py-tpl │ │ │ │ │ ├── models.py-tpl │ │ │ │ │ ├── tests.py-tpl │ │ │ │ │ └── views.py-tpl │ │ │ │ ├── global_settings.py │ │ │ │ ├── locale │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ └── __init__.cpython-38.pyc │ │ │ │ │ ├── af │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ar │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── ast │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── az │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── be │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── bg │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── bn │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── br │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── bs │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── ca │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── cs │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── cy │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── da │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── de │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── de_CH │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── dsb │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── el │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── en │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── en_AU │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── en_GB │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── eo │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── es │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── es_AR │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── es_CO │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── es_MX │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── es_NI │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── es_PR │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── es_VE │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── et │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── eu │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── fa │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── fi │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── fr │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── fy │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── ga │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── gd │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── gl │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── he │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── hi │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── hr │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── hsb │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── hu │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── hy │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ia │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── id │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── io │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── is │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── it │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── ja │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── ka │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── kab │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── kk │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── km │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── kn │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── ko │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── lb │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── lt │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── lv │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── mk │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── ml │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── mn │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── mr │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── my │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── nb │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── ne │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── nl │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── nn │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── os │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── pa │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── pl │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── pt │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── pt_BR │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── ro │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── ru │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── sk │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── sl │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── sq │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── sr │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── sr_Latn │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── sv │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── sw │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ta │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── te │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── th │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── tr │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── tt │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── udm │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── uk │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── ur │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── uz │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── vi │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ ├── zh_Hans │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ │ └── zh_Hant │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ └── formats.cpython-38.pyc │ │ │ │ │ │ └── formats.py │ │ │ │ ├── project_template │ │ │ │ │ ├── manage.py-tpl │ │ │ │ │ └── project_name │ │ │ │ │ │ ├── __init__.py-tpl │ │ │ │ │ │ ├── asgi.py-tpl │ │ │ │ │ │ ├── settings.py-tpl │ │ │ │ │ │ ├── urls.py-tpl │ │ │ │ │ │ └── wsgi.py-tpl │ │ │ │ └── urls │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── i18n.cpython-38.pyc │ │ │ │ │ └── static.cpython-38.pyc │ │ │ │ │ ├── i18n.py │ │ │ │ │ └── static.py │ │ │ ├── contrib │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-38.pyc │ │ │ │ ├── admin │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── actions.cpython-38.pyc │ │ │ │ │ │ ├── apps.cpython-38.pyc │ │ │ │ │ │ ├── checks.cpython-38.pyc │ │ │ │ │ │ ├── decorators.cpython-38.pyc │ │ │ │ │ │ ├── exceptions.cpython-38.pyc │ │ │ │ │ │ ├── filters.cpython-38.pyc │ │ │ │ │ │ ├── forms.cpython-38.pyc │ │ │ │ │ │ ├── helpers.cpython-38.pyc │ │ │ │ │ │ ├── models.cpython-38.pyc │ │ │ │ │ │ ├── options.cpython-38.pyc │ │ │ │ │ │ ├── sites.cpython-38.pyc │ │ │ │ │ │ ├── tests.cpython-38.pyc │ │ │ │ │ │ ├── utils.cpython-38.pyc │ │ │ │ │ │ └── widgets.cpython-38.pyc │ │ │ │ │ ├── actions.py │ │ │ │ │ ├── apps.py │ │ │ │ │ ├── checks.py │ │ │ │ │ ├── decorators.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ ├── filters.py │ │ │ │ │ ├── forms.py │ │ │ │ │ ├── helpers.py │ │ │ │ │ ├── locale │ │ │ │ │ │ ├── af │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── am │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ar │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── ast │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── az │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── be │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── bg │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── bn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── br │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── bs │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── ca │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── cs │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── cy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── da │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── de │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── dsb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── el │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── en │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── en_AU │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── en_GB │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── eo │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── es │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── es_AR │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── es_CO │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── es_MX │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── es_VE │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── et │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── eu │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── fa │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── fi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── fr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── fy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── ga │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── gd │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── gl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── he │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── hi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── hr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── hsb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── hu │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── hy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── ia │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── id │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── io │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── is │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── it │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── ja │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── ka │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── kab │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── kk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── km │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── kn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── ko │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── lb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── lt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── lv │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── mk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── ml │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── mn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── mr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── my │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── nb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── ne │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── nl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── nn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── os │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── pa │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── pl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── pt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── pt_BR │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── ro │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── ru │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── sk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── sl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── sq │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── sr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── sr_Latn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── sv │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── sw │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── ta │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── te │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── th │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── tr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── tt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── udm │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── uk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── ur │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── uz │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── vi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ ├── zh_Hans │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ │ └── zh_Hant │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ │ └── djangojs.po │ │ │ │ │ ├── migrations │ │ │ │ │ │ ├── 0001_initial.py │ │ │ │ │ │ ├── 0002_logentry_remove_auto_add.py │ │ │ │ │ │ ├── 0003_logentry_add_action_flag_choices.py │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ │ ├── 0001_initial.cpython-38.pyc │ │ │ │ │ │ │ ├── 0002_logentry_remove_auto_add.cpython-38.pyc │ │ │ │ │ │ │ ├── 0003_logentry_add_action_flag_choices.cpython-38.pyc │ │ │ │ │ │ │ └── __init__.cpython-38.pyc │ │ │ │ │ ├── models.py │ │ │ │ │ ├── options.py │ │ │ │ │ ├── sites.py │ │ │ │ │ ├── static │ │ │ │ │ │ └── admin │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── autocomplete.css │ │ │ │ │ │ │ ├── base.css │ │ │ │ │ │ │ ├── changelists.css │ │ │ │ │ │ │ ├── dashboard.css │ │ │ │ │ │ │ ├── fonts.css │ │ │ │ │ │ │ ├── forms.css │ │ │ │ │ │ │ ├── login.css │ │ │ │ │ │ │ ├── responsive.css │ │ │ │ │ │ │ ├── responsive_rtl.css │ │ │ │ │ │ │ ├── rtl.css │ │ │ │ │ │ │ ├── vendor │ │ │ │ │ │ │ │ └── select2 │ │ │ │ │ │ │ │ │ ├── LICENSE-SELECT2.md │ │ │ │ │ │ │ │ │ ├── select2.css │ │ │ │ │ │ │ │ │ └── select2.min.css │ │ │ │ │ │ │ └── widgets.css │ │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ │ ├── README.txt │ │ │ │ │ │ │ ├── Roboto-Bold-webfont.woff │ │ │ │ │ │ │ ├── Roboto-Light-webfont.woff │ │ │ │ │ │ │ └── Roboto-Regular-webfont.woff │ │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.txt │ │ │ │ │ │ │ ├── calendar-icons.svg │ │ │ │ │ │ │ ├── gis │ │ │ │ │ │ │ │ ├── move_vertex_off.svg │ │ │ │ │ │ │ │ └── move_vertex_on.svg │ │ │ │ │ │ │ ├── icon-addlink.svg │ │ │ │ │ │ │ ├── icon-alert.svg │ │ │ │ │ │ │ ├── icon-calendar.svg │ │ │ │ │ │ │ ├── icon-changelink.svg │ │ │ │ │ │ │ ├── icon-clock.svg │ │ │ │ │ │ │ ├── icon-deletelink.svg │ │ │ │ │ │ │ ├── icon-no.svg │ │ │ │ │ │ │ ├── icon-unknown-alt.svg │ │ │ │ │ │ │ ├── icon-unknown.svg │ │ │ │ │ │ │ ├── icon-viewlink.svg │ │ │ │ │ │ │ ├── icon-yes.svg │ │ │ │ │ │ │ ├── inline-delete.svg │ │ │ │ │ │ │ ├── search.svg │ │ │ │ │ │ │ ├── selector-icons.svg │ │ │ │ │ │ │ ├── sorting-icons.svg │ │ │ │ │ │ │ ├── tooltag-add.svg │ │ │ │ │ │ │ └── tooltag-arrowright.svg │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── SelectBox.js │ │ │ │ │ │ │ ├── SelectFilter2.js │ │ │ │ │ │ │ ├── actions.js │ │ │ │ │ │ │ ├── actions.min.js │ │ │ │ │ │ │ ├── admin │ │ │ │ │ │ │ ├── DateTimeShortcuts.js │ │ │ │ │ │ │ └── RelatedObjectLookups.js │ │ │ │ │ │ │ ├── autocomplete.js │ │ │ │ │ │ │ ├── calendar.js │ │ │ │ │ │ │ ├── cancel.js │ │ │ │ │ │ │ ├── change_form.js │ │ │ │ │ │ │ ├── collapse.js │ │ │ │ │ │ │ ├── collapse.min.js │ │ │ │ │ │ │ ├── core.js │ │ │ │ │ │ │ ├── inlines.js │ │ │ │ │ │ │ ├── inlines.min.js │ │ │ │ │ │ │ ├── jquery.init.js │ │ │ │ │ │ │ ├── popup_response.js │ │ │ │ │ │ │ ├── prepopulate.js │ │ │ │ │ │ │ ├── prepopulate.min.js │ │ │ │ │ │ │ ├── prepopulate_init.js │ │ │ │ │ │ │ ├── urlify.js │ │ │ │ │ │ │ └── vendor │ │ │ │ │ │ │ ├── jquery │ │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ │ └── jquery.min.js │ │ │ │ │ │ │ ├── select2 │ │ │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ │ │ ├── i18n │ │ │ │ │ │ │ │ ├── af.js │ │ │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ │ │ ├── az.js │ │ │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ │ │ ├── bn.js │ │ │ │ │ │ │ │ ├── bs.js │ │ │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ │ │ ├── dsb.js │ │ │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ │ │ ├── hi.js │ │ │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ │ │ ├── hsb.js │ │ │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ │ │ ├── hy.js │ │ │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ │ │ ├── is.js │ │ │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ │ │ ├── ka.js │ │ │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ │ │ ├── mk.js │ │ │ │ │ │ │ │ ├── ms.js │ │ │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ │ │ ├── ne.js │ │ │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ │ │ ├── ps.js │ │ │ │ │ │ │ │ ├── pt-BR.js │ │ │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ │ │ ├── sr-Cyrl.js │ │ │ │ │ │ │ │ ├── sr.js │ │ │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ │ │ ├── tk.js │ │ │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ │ │ ├── zh-CN.js │ │ │ │ │ │ │ │ └── zh-TW.js │ │ │ │ │ │ │ ├── select2.full.js │ │ │ │ │ │ │ └── select2.full.min.js │ │ │ │ │ │ │ └── xregexp │ │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ │ ├── xregexp.js │ │ │ │ │ │ │ └── xregexp.min.js │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── admin │ │ │ │ │ │ │ ├── 404.html │ │ │ │ │ │ │ ├── 500.html │ │ │ │ │ │ │ ├── actions.html │ │ │ │ │ │ │ ├── app_index.html │ │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ │ └── user │ │ │ │ │ │ │ │ │ ├── add_form.html │ │ │ │ │ │ │ │ │ └── change_password.html │ │ │ │ │ │ │ ├── base.html │ │ │ │ │ │ │ ├── base_site.html │ │ │ │ │ │ │ ├── change_form.html │ │ │ │ │ │ │ ├── change_form_object_tools.html │ │ │ │ │ │ │ ├── change_list.html │ │ │ │ │ │ │ ├── change_list_object_tools.html │ │ │ │ │ │ │ ├── change_list_results.html │ │ │ │ │ │ │ ├── date_hierarchy.html │ │ │ │ │ │ │ ├── delete_confirmation.html │ │ │ │ │ │ │ ├── delete_selected_confirmation.html │ │ │ │ │ │ │ ├── edit_inline │ │ │ │ │ │ │ │ ├── stacked.html │ │ │ │ │ │ │ │ └── tabular.html │ │ │ │ │ │ │ ├── filter.html │ │ │ │ │ │ │ ├── includes │ │ │ │ │ │ │ │ ├── fieldset.html │ │ │ │ │ │ │ │ └── object_delete_summary.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── invalid_setup.html │ │ │ │ │ │ │ ├── login.html │ │ │ │ │ │ │ ├── object_history.html │ │ │ │ │ │ │ ├── pagination.html │ │ │ │ │ │ │ ├── popup_response.html │ │ │ │ │ │ │ ├── prepopulated_fields_js.html │ │ │ │ │ │ │ ├── search_form.html │ │ │ │ │ │ │ ├── submit_line.html │ │ │ │ │ │ │ └── widgets │ │ │ │ │ │ │ │ ├── clearable_file_input.html │ │ │ │ │ │ │ │ ├── foreign_key_raw_id.html │ │ │ │ │ │ │ │ ├── many_to_many_raw_id.html │ │ │ │ │ │ │ │ ├── radio.html │ │ │ │ │ │ │ │ ├── related_widget_wrapper.html │ │ │ │ │ │ │ │ ├── split_datetime.html │ │ │ │ │ │ │ │ └── url.html │ │ │ │ │ │ └── registration │ │ │ │ │ │ │ ├── logged_out.html │ │ │ │ │ │ │ ├── password_change_done.html │ │ │ │ │ │ │ ├── password_change_form.html │ │ │ │ │ │ │ ├── password_reset_complete.html │ │ │ │ │ │ │ ├── password_reset_confirm.html │ │ │ │ │ │ │ ├── password_reset_done.html │ │ │ │ │ │ │ ├── password_reset_email.html │ │ │ │ │ │ │ └── password_reset_form.html │ │ │ │ │ ├── templatetags │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ ├── admin_list.cpython-38.pyc │ │ │ │ │ │ │ ├── admin_modify.cpython-38.pyc │ │ │ │ │ │ │ ├── admin_urls.cpython-38.pyc │ │ │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ │ │ └── log.cpython-38.pyc │ │ │ │ │ │ ├── admin_list.py │ │ │ │ │ │ ├── admin_modify.py │ │ │ │ │ │ ├── admin_urls.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ └── log.py │ │ │ │ │ ├── tests.py │ │ │ │ │ ├── utils.py │ │ │ │ │ ├── views │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ ├── autocomplete.cpython-38.pyc │ │ │ │ │ │ │ ├── decorators.cpython-38.pyc │ │ │ │ │ │ │ └── main.cpython-38.pyc │ │ │ │ │ │ ├── autocomplete.py │ │ │ │ │ │ ├── decorators.py │ │ │ │ │ │ └── main.py │ │ │ │ │ └── widgets.py │ │ │ │ ├── admindocs │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── apps.cpython-38.pyc │ │ │ │ │ │ ├── middleware.cpython-38.pyc │ │ │ │ │ │ ├── urls.cpython-38.pyc │ │ │ │ │ │ ├── utils.cpython-38.pyc │ │ │ │ │ │ └── views.cpython-38.pyc │ │ │ │ │ ├── apps.py │ │ │ │ │ ├── locale │ │ │ │ │ │ ├── af │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ar │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ast │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── az │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── be │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── bg │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── bn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── br │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── bs │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ca │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── cs │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── cy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── da │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── de │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── dsb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── el │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── en │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── en_AU │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── en_GB │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── eo │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_AR │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_CO │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_MX │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_VE │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── et │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── eu │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fa │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ga │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── gd │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── gl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── he │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hsb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hu │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ia │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── id │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── io │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── is │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── it │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ja │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ka │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── kab │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── kk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── km │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── kn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ko │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── lb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── lt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── lv │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── mk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ml │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── mn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── mr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── my │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── nb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ne │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── nl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── nn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── os │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pa │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pt_BR │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ro │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ru │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sq │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sr_Latn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sv │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sw │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ta │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── te │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── th │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── tr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── tt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── udm │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── uk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ur │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── vi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── zh_Hans │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ └── zh_Hant │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── middleware.py │ │ │ │ │ ├── templates │ │ │ │ │ │ └── admin_doc │ │ │ │ │ │ │ ├── bookmarklets.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── missing_docutils.html │ │ │ │ │ │ │ ├── model_detail.html │ │ │ │ │ │ │ ├── model_index.html │ │ │ │ │ │ │ ├── template_detail.html │ │ │ │ │ │ │ ├── template_filter_index.html │ │ │ │ │ │ │ ├── template_tag_index.html │ │ │ │ │ │ │ ├── view_detail.html │ │ │ │ │ │ │ └── view_index.html │ │ │ │ │ ├── urls.py │ │ │ │ │ ├── utils.py │ │ │ │ │ └── views.py │ │ │ │ ├── auth │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── admin.cpython-38.pyc │ │ │ │ │ │ ├── apps.cpython-38.pyc │ │ │ │ │ │ ├── backends.cpython-38.pyc │ │ │ │ │ │ ├── base_user.cpython-38.pyc │ │ │ │ │ │ ├── checks.cpython-38.pyc │ │ │ │ │ │ ├── context_processors.cpython-38.pyc │ │ │ │ │ │ ├── decorators.cpython-38.pyc │ │ │ │ │ │ ├── forms.cpython-38.pyc │ │ │ │ │ │ ├── hashers.cpython-38.pyc │ │ │ │ │ │ ├── middleware.cpython-38.pyc │ │ │ │ │ │ ├── mixins.cpython-38.pyc │ │ │ │ │ │ ├── models.cpython-38.pyc │ │ │ │ │ │ ├── password_validation.cpython-38.pyc │ │ │ │ │ │ ├── signals.cpython-38.pyc │ │ │ │ │ │ ├── tokens.cpython-38.pyc │ │ │ │ │ │ ├── urls.cpython-38.pyc │ │ │ │ │ │ ├── validators.cpython-38.pyc │ │ │ │ │ │ └── views.cpython-38.pyc │ │ │ │ │ ├── admin.py │ │ │ │ │ ├── apps.py │ │ │ │ │ ├── backends.py │ │ │ │ │ ├── base_user.py │ │ │ │ │ ├── checks.py │ │ │ │ │ ├── common-passwords.txt.gz │ │ │ │ │ ├── context_processors.py │ │ │ │ │ ├── decorators.py │ │ │ │ │ ├── forms.py │ │ │ │ │ ├── handlers │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── modwsgi.cpython-38.pyc │ │ │ │ │ │ └── modwsgi.py │ │ │ │ │ ├── hashers.py │ │ │ │ │ ├── locale │ │ │ │ │ │ ├── af │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ar │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ast │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── az │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── be │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── bg │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── bn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── br │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── bs │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ca │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── cs │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── cy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── da │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── de │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── dsb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── el │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── en │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── en_AU │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── en_GB │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── eo │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_AR │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_CO │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_MX │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_VE │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── et │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── eu │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fa │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ga │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── gd │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── gl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── he │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hsb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hu │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ia │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── id │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── io │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── is │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── it │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ja │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ka │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── kab │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── kk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── km │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── kn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ko │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── lb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── lt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── lv │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── mk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ml │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── mn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── mr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── my │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── nb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ne │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── nl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── nn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── os │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pa │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pt_BR │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ro │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ru │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sq │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sr_Latn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sv │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sw │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ta │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── te │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── th │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── tr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── tt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── udm │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── uk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ur │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── uz │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── vi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── zh_Hans │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ └── zh_Hant │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── management │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ └── __init__.cpython-38.pyc │ │ │ │ │ │ └── commands │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── changepassword.cpython-38.pyc │ │ │ │ │ │ │ └── createsuperuser.cpython-38.pyc │ │ │ │ │ │ │ ├── changepassword.py │ │ │ │ │ │ │ └── createsuperuser.py │ │ │ │ │ ├── middleware.py │ │ │ │ │ ├── migrations │ │ │ │ │ │ ├── 0001_initial.py │ │ │ │ │ │ ├── 0002_alter_permission_name_max_length.py │ │ │ │ │ │ ├── 0003_alter_user_email_max_length.py │ │ │ │ │ │ ├── 0004_alter_user_username_opts.py │ │ │ │ │ │ ├── 0005_alter_user_last_login_null.py │ │ │ │ │ │ ├── 0006_require_contenttypes_0002.py │ │ │ │ │ │ ├── 0007_alter_validators_add_error_messages.py │ │ │ │ │ │ ├── 0008_alter_user_username_max_length.py │ │ │ │ │ │ ├── 0009_alter_user_last_name_max_length.py │ │ │ │ │ │ ├── 0010_alter_group_name_max_length.py │ │ │ │ │ │ ├── 0011_update_proxy_permissions.py │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ │ ├── 0001_initial.cpython-38.pyc │ │ │ │ │ │ │ ├── 0002_alter_permission_name_max_length.cpython-38.pyc │ │ │ │ │ │ │ ├── 0003_alter_user_email_max_length.cpython-38.pyc │ │ │ │ │ │ │ ├── 0004_alter_user_username_opts.cpython-38.pyc │ │ │ │ │ │ │ ├── 0005_alter_user_last_login_null.cpython-38.pyc │ │ │ │ │ │ │ ├── 0006_require_contenttypes_0002.cpython-38.pyc │ │ │ │ │ │ │ ├── 0007_alter_validators_add_error_messages.cpython-38.pyc │ │ │ │ │ │ │ ├── 0008_alter_user_username_max_length.cpython-38.pyc │ │ │ │ │ │ │ ├── 0009_alter_user_last_name_max_length.cpython-38.pyc │ │ │ │ │ │ │ ├── 0010_alter_group_name_max_length.cpython-38.pyc │ │ │ │ │ │ │ ├── 0011_update_proxy_permissions.cpython-38.pyc │ │ │ │ │ │ │ └── __init__.cpython-38.pyc │ │ │ │ │ ├── mixins.py │ │ │ │ │ ├── models.py │ │ │ │ │ ├── password_validation.py │ │ │ │ │ ├── signals.py │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ └── widgets │ │ │ │ │ │ │ │ └── read_only_password_hash.html │ │ │ │ │ │ └── registration │ │ │ │ │ │ │ └── password_reset_subject.txt │ │ │ │ │ ├── tokens.py │ │ │ │ │ ├── urls.py │ │ │ │ │ ├── validators.py │ │ │ │ │ └── views.py │ │ │ │ ├── contenttypes │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── admin.cpython-38.pyc │ │ │ │ │ │ ├── apps.cpython-38.pyc │ │ │ │ │ │ ├── checks.cpython-38.pyc │ │ │ │ │ │ ├── fields.cpython-38.pyc │ │ │ │ │ │ ├── forms.cpython-38.pyc │ │ │ │ │ │ ├── models.cpython-38.pyc │ │ │ │ │ │ └── views.cpython-38.pyc │ │ │ │ │ ├── admin.py │ │ │ │ │ ├── apps.py │ │ │ │ │ ├── checks.py │ │ │ │ │ ├── fields.py │ │ │ │ │ ├── forms.py │ │ │ │ │ ├── locale │ │ │ │ │ │ ├── af │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ar │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ast │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── az │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── be │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── bg │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── bn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── br │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── bs │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ca │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── cs │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── cy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── da │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── de │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── dsb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── el │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── en │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── en_AU │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── en_GB │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── eo │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_AR │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_CO │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_MX │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_VE │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── et │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── eu │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fa │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ga │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── gd │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── gl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── he │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hsb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hu │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ia │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── id │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── io │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── is │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── it │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ja │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ka │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── kk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── km │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── kn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ko │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── lb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── lt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── lv │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── mk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ml │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── mn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── mr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── my │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── nb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ne │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── nl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── nn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── os │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pa │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pt_BR │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ro │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ru │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sq │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sr_Latn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sv │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sw │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ta │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── te │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── th │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── tr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── tt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── udm │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── uk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ur │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── vi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── zh_Hans │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ └── zh_Hant │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── management │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ └── __init__.cpython-38.pyc │ │ │ │ │ │ └── commands │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ └── remove_stale_contenttypes.cpython-38.pyc │ │ │ │ │ │ │ └── remove_stale_contenttypes.py │ │ │ │ │ ├── migrations │ │ │ │ │ │ ├── 0001_initial.py │ │ │ │ │ │ ├── 0002_remove_content_type_name.py │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ │ ├── 0001_initial.cpython-38.pyc │ │ │ │ │ │ │ ├── 0002_remove_content_type_name.cpython-38.pyc │ │ │ │ │ │ │ └── __init__.cpython-38.pyc │ │ │ │ │ ├── models.py │ │ │ │ │ └── views.py │ │ │ │ ├── flatpages │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── admin.cpython-38.pyc │ │ │ │ │ │ ├── apps.cpython-38.pyc │ │ │ │ │ │ ├── forms.cpython-38.pyc │ │ │ │ │ │ ├── middleware.cpython-38.pyc │ │ │ │ │ │ ├── models.cpython-38.pyc │ │ │ │ │ │ ├── sitemaps.cpython-38.pyc │ │ │ │ │ │ ├── urls.cpython-38.pyc │ │ │ │ │ │ └── views.cpython-38.pyc │ │ │ │ │ ├── admin.py │ │ │ │ │ ├── apps.py │ │ │ │ │ ├── forms.py │ │ │ │ │ ├── locale │ │ │ │ │ │ ├── af │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ar │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ast │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── az │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── be │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── bg │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── bn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── br │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── bs │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ca │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── cs │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── cy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── da │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── de │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── dsb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── el │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── en │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── en_AU │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── en_GB │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── eo │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_AR │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_CO │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_MX │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_VE │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── et │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── eu │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fa │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ga │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── gd │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── gl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── he │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hsb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hu │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ia │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── id │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── io │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── is │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── it │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ja │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ka │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── kk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── km │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── kn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ko │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── lb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── lt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── lv │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── mk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ml │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── mn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── mr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── my │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── nb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ne │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── nl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── nn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── os │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pa │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pt_BR │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ro │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ru │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sq │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sr_Latn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sv │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sw │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ta │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── te │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── th │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── tr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── tt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── udm │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── uk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ur │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── vi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── zh_Hans │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ └── zh_Hant │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── middleware.py │ │ │ │ │ ├── migrations │ │ │ │ │ │ ├── 0001_initial.py │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ │ ├── 0001_initial.cpython-38.pyc │ │ │ │ │ │ │ └── __init__.cpython-38.pyc │ │ │ │ │ ├── models.py │ │ │ │ │ ├── sitemaps.py │ │ │ │ │ ├── templatetags │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── flatpages.cpython-38.pyc │ │ │ │ │ │ └── flatpages.py │ │ │ │ │ ├── urls.py │ │ │ │ │ └── views.py │ │ │ │ ├── gis │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── apps.cpython-38.pyc │ │ │ │ │ │ ├── feeds.cpython-38.pyc │ │ │ │ │ │ ├── geometry.cpython-38.pyc │ │ │ │ │ │ ├── measure.cpython-38.pyc │ │ │ │ │ │ ├── ptr.cpython-38.pyc │ │ │ │ │ │ ├── shortcuts.cpython-38.pyc │ │ │ │ │ │ └── views.cpython-38.pyc │ │ │ │ │ ├── admin │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ ├── options.cpython-38.pyc │ │ │ │ │ │ │ └── widgets.cpython-38.pyc │ │ │ │ │ │ ├── options.py │ │ │ │ │ │ └── widgets.py │ │ │ │ │ ├── apps.py │ │ │ │ │ ├── db │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ └── __init__.cpython-38.pyc │ │ │ │ │ │ ├── backends │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ │ └── utils.cpython-38.pyc │ │ │ │ │ │ │ ├── base │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ │ │ ├── adapter.cpython-38.pyc │ │ │ │ │ │ │ │ │ ├── features.cpython-38.pyc │ │ │ │ │ │ │ │ │ ├── models.cpython-38.pyc │ │ │ │ │ │ │ │ │ └── operations.cpython-38.pyc │ │ │ │ │ │ │ │ ├── adapter.py │ │ │ │ │ │ │ │ ├── features.py │ │ │ │ │ │ │ │ ├── models.py │ │ │ │ │ │ │ │ └── operations.py │ │ │ │ │ │ │ ├── mysql │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ │ │ │ │ ├── features.cpython-38.pyc │ │ │ │ │ │ │ │ │ ├── introspection.cpython-38.pyc │ │ │ │ │ │ │ │ │ ├── operations.cpython-38.pyc │ │ │ │ │ │ │ │ │ └── schema.cpython-38.pyc │ │ │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ │ │ ├── features.py │ │ │ │ │ │ │ │ ├── introspection.py │ │ │ │ │ │ │ │ ├── operations.py │ │ │ │ │ │ │ │ └── schema.py │ │ │ │ │ │ │ ├── oracle │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ │ │ ├── adapter.cpython-38.pyc │ │ │ │ │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ │ │ │ │ ├── features.cpython-38.pyc │ │ │ │ │ │ │ │ │ ├── introspection.cpython-38.pyc │ │ │ │ │ │ │ │ │ ├── models.cpython-38.pyc │ │ │ │ │ │ │ │ │ ├── operations.cpython-38.pyc │ │ │ │ │ │ │ │ │ └── schema.cpython-38.pyc │ │ │ │ │ │ │ │ ├── adapter.py │ │ │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ │ │ ├── features.py │ │ │ │ │ │ │ │ ├── introspection.py │ │ │ │ │ │ │ │ ├── models.py │ │ │ │ │ │ │ │ ├── operations.py │ │ │ │ │ │ │ │ └── schema.py │ │ │ │ │ │ │ ├── postgis │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ │ │ ├── adapter.cpython-38.pyc │ │ │ │ │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ │ │ │ │ ├── const.cpython-38.pyc │ │ │ │ │ │ │ │ │ ├── features.cpython-38.pyc │ │ │ │ │ │ │ │ │ ├── introspection.cpython-38.pyc │ │ │ │ │ │ │ │ │ ├── models.cpython-38.pyc │ │ │ │ │ │ │ │ │ ├── operations.cpython-38.pyc │ │ │ │ │ │ │ │ │ ├── pgraster.cpython-38.pyc │ │ │ │ │ │ │ │ │ └── schema.cpython-38.pyc │ │ │ │ │ │ │ │ ├── adapter.py │ │ │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ │ │ ├── const.py │ │ │ │ │ │ │ │ ├── features.py │ │ │ │ │ │ │ │ ├── introspection.py │ │ │ │ │ │ │ │ ├── models.py │ │ │ │ │ │ │ │ ├── operations.py │ │ │ │ │ │ │ │ ├── pgraster.py │ │ │ │ │ │ │ │ └── schema.py │ │ │ │ │ │ │ ├── spatialite │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ │ │ ├── adapter.cpython-38.pyc │ │ │ │ │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ │ │ │ │ ├── client.cpython-38.pyc │ │ │ │ │ │ │ │ │ ├── features.cpython-38.pyc │ │ │ │ │ │ │ │ │ ├── introspection.cpython-38.pyc │ │ │ │ │ │ │ │ │ ├── models.cpython-38.pyc │ │ │ │ │ │ │ │ │ ├── operations.cpython-38.pyc │ │ │ │ │ │ │ │ │ └── schema.cpython-38.pyc │ │ │ │ │ │ │ │ ├── adapter.py │ │ │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ │ │ ├── client.py │ │ │ │ │ │ │ │ ├── features.py │ │ │ │ │ │ │ │ ├── introspection.py │ │ │ │ │ │ │ │ ├── models.py │ │ │ │ │ │ │ │ ├── operations.py │ │ │ │ │ │ │ │ └── schema.py │ │ │ │ │ │ │ └── utils.py │ │ │ │ │ │ └── models │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ ├── aggregates.cpython-38.pyc │ │ │ │ │ │ │ ├── fields.cpython-38.pyc │ │ │ │ │ │ │ ├── functions.cpython-38.pyc │ │ │ │ │ │ │ ├── lookups.cpython-38.pyc │ │ │ │ │ │ │ └── proxy.cpython-38.pyc │ │ │ │ │ │ │ ├── aggregates.py │ │ │ │ │ │ │ ├── fields.py │ │ │ │ │ │ │ ├── functions.py │ │ │ │ │ │ │ ├── lookups.py │ │ │ │ │ │ │ ├── proxy.py │ │ │ │ │ │ │ └── sql │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── conversion.cpython-38.pyc │ │ │ │ │ │ │ └── conversion.py │ │ │ │ │ ├── feeds.py │ │ │ │ │ ├── forms │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ ├── fields.cpython-38.pyc │ │ │ │ │ │ │ └── widgets.cpython-38.pyc │ │ │ │ │ │ ├── fields.py │ │ │ │ │ │ └── widgets.py │ │ │ │ │ ├── gdal │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ │ │ ├── datasource.cpython-38.pyc │ │ │ │ │ │ │ ├── driver.cpython-38.pyc │ │ │ │ │ │ │ ├── envelope.cpython-38.pyc │ │ │ │ │ │ │ ├── error.cpython-38.pyc │ │ │ │ │ │ │ ├── feature.cpython-38.pyc │ │ │ │ │ │ │ ├── field.cpython-38.pyc │ │ │ │ │ │ │ ├── geometries.cpython-38.pyc │ │ │ │ │ │ │ ├── geomtype.cpython-38.pyc │ │ │ │ │ │ │ ├── layer.cpython-38.pyc │ │ │ │ │ │ │ ├── libgdal.cpython-38.pyc │ │ │ │ │ │ │ └── srs.cpython-38.pyc │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── datasource.py │ │ │ │ │ │ ├── driver.py │ │ │ │ │ │ ├── envelope.py │ │ │ │ │ │ ├── error.py │ │ │ │ │ │ ├── feature.py │ │ │ │ │ │ ├── field.py │ │ │ │ │ │ ├── geometries.py │ │ │ │ │ │ ├── geomtype.py │ │ │ │ │ │ ├── layer.py │ │ │ │ │ │ ├── libgdal.py │ │ │ │ │ │ ├── prototypes │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ │ ├── ds.cpython-38.pyc │ │ │ │ │ │ │ │ ├── errcheck.cpython-38.pyc │ │ │ │ │ │ │ │ ├── generation.cpython-38.pyc │ │ │ │ │ │ │ │ ├── geom.cpython-38.pyc │ │ │ │ │ │ │ │ ├── raster.cpython-38.pyc │ │ │ │ │ │ │ │ └── srs.cpython-38.pyc │ │ │ │ │ │ │ ├── ds.py │ │ │ │ │ │ │ ├── errcheck.py │ │ │ │ │ │ │ ├── generation.py │ │ │ │ │ │ │ ├── geom.py │ │ │ │ │ │ │ ├── raster.py │ │ │ │ │ │ │ └── srs.py │ │ │ │ │ │ ├── raster │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ │ ├── band.cpython-38.pyc │ │ │ │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ │ │ │ ├── const.cpython-38.pyc │ │ │ │ │ │ │ │ └── source.cpython-38.pyc │ │ │ │ │ │ │ ├── band.py │ │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ │ ├── const.py │ │ │ │ │ │ │ └── source.py │ │ │ │ │ │ └── srs.py │ │ │ │ │ ├── geoip2 │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ │ │ └── resources.cpython-38.pyc │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ └── resources.py │ │ │ │ │ ├── geometry.py │ │ │ │ │ ├── geos │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ │ │ ├── collections.cpython-38.pyc │ │ │ │ │ │ │ ├── coordseq.cpython-38.pyc │ │ │ │ │ │ │ ├── error.cpython-38.pyc │ │ │ │ │ │ │ ├── factory.cpython-38.pyc │ │ │ │ │ │ │ ├── geometry.cpython-38.pyc │ │ │ │ │ │ │ ├── io.cpython-38.pyc │ │ │ │ │ │ │ ├── libgeos.cpython-38.pyc │ │ │ │ │ │ │ ├── linestring.cpython-38.pyc │ │ │ │ │ │ │ ├── mutable_list.cpython-38.pyc │ │ │ │ │ │ │ ├── point.cpython-38.pyc │ │ │ │ │ │ │ ├── polygon.cpython-38.pyc │ │ │ │ │ │ │ └── prepared.cpython-38.pyc │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── collections.py │ │ │ │ │ │ ├── coordseq.py │ │ │ │ │ │ ├── error.py │ │ │ │ │ │ ├── factory.py │ │ │ │ │ │ ├── geometry.py │ │ │ │ │ │ ├── io.py │ │ │ │ │ │ ├── libgeos.py │ │ │ │ │ │ ├── linestring.py │ │ │ │ │ │ ├── mutable_list.py │ │ │ │ │ │ ├── point.py │ │ │ │ │ │ ├── polygon.py │ │ │ │ │ │ ├── prepared.py │ │ │ │ │ │ └── prototypes │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ ├── coordseq.cpython-38.pyc │ │ │ │ │ │ │ ├── errcheck.cpython-38.pyc │ │ │ │ │ │ │ ├── geom.cpython-38.pyc │ │ │ │ │ │ │ ├── io.cpython-38.pyc │ │ │ │ │ │ │ ├── misc.cpython-38.pyc │ │ │ │ │ │ │ ├── predicates.cpython-38.pyc │ │ │ │ │ │ │ ├── prepared.cpython-38.pyc │ │ │ │ │ │ │ ├── threadsafe.cpython-38.pyc │ │ │ │ │ │ │ └── topology.cpython-38.pyc │ │ │ │ │ │ │ ├── coordseq.py │ │ │ │ │ │ │ ├── errcheck.py │ │ │ │ │ │ │ ├── geom.py │ │ │ │ │ │ │ ├── io.py │ │ │ │ │ │ │ ├── misc.py │ │ │ │ │ │ │ ├── predicates.py │ │ │ │ │ │ │ ├── prepared.py │ │ │ │ │ │ │ ├── threadsafe.py │ │ │ │ │ │ │ └── topology.py │ │ │ │ │ ├── locale │ │ │ │ │ │ ├── af │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ar │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ast │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── az │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── be │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── bg │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── bn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── br │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── bs │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ca │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── cs │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── cy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── da │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── de │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── dsb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── el │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── en │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── en_AU │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── en_GB │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── eo │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_AR │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_CO │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_MX │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_VE │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── et │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── eu │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fa │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ga │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── gd │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── gl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── he │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hsb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hu │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ia │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── id │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── io │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── is │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── it │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ja │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ka │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── kk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── km │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── kn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ko │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── lb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── lt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── lv │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── mk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ml │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── mn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── mr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── my │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── nb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ne │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── nl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── nn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── os │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pa │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pt_BR │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ro │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ru │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sq │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sr_Latn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sv │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sw │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ta │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── te │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── th │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── tr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── tt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── udm │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── uk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ur │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── vi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── zh_Hans │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ └── zh_Hant │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── management │ │ │ │ │ │ └── commands │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── inspectdb.cpython-38.pyc │ │ │ │ │ │ │ └── ogrinspect.cpython-38.pyc │ │ │ │ │ │ │ ├── inspectdb.py │ │ │ │ │ │ │ └── ogrinspect.py │ │ │ │ │ ├── measure.py │ │ │ │ │ ├── ptr.py │ │ │ │ │ ├── serializers │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── geojson.cpython-38.pyc │ │ │ │ │ │ └── geojson.py │ │ │ │ │ ├── shortcuts.py │ │ │ │ │ ├── sitemaps │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ ├── kml.cpython-38.pyc │ │ │ │ │ │ │ └── views.cpython-38.pyc │ │ │ │ │ │ ├── kml.py │ │ │ │ │ │ └── views.py │ │ │ │ │ ├── static │ │ │ │ │ │ └── gis │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ └── ol3.css │ │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ ├── draw_line_off.svg │ │ │ │ │ │ │ ├── draw_line_on.svg │ │ │ │ │ │ │ ├── draw_point_off.svg │ │ │ │ │ │ │ ├── draw_point_on.svg │ │ │ │ │ │ │ ├── draw_polygon_off.svg │ │ │ │ │ │ │ └── draw_polygon_on.svg │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ └── OLMapWidget.js │ │ │ │ │ ├── templates │ │ │ │ │ │ └── gis │ │ │ │ │ │ │ ├── admin │ │ │ │ │ │ │ ├── openlayers.html │ │ │ │ │ │ │ ├── openlayers.js │ │ │ │ │ │ │ ├── osm.html │ │ │ │ │ │ │ └── osm.js │ │ │ │ │ │ │ ├── kml │ │ │ │ │ │ │ ├── base.kml │ │ │ │ │ │ │ └── placemarks.kml │ │ │ │ │ │ │ ├── openlayers-osm.html │ │ │ │ │ │ │ └── openlayers.html │ │ │ │ │ ├── utils │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ ├── layermapping.cpython-38.pyc │ │ │ │ │ │ │ ├── ogrinfo.cpython-38.pyc │ │ │ │ │ │ │ ├── ogrinspect.cpython-38.pyc │ │ │ │ │ │ │ └── srs.cpython-38.pyc │ │ │ │ │ │ ├── layermapping.py │ │ │ │ │ │ ├── ogrinfo.py │ │ │ │ │ │ ├── ogrinspect.py │ │ │ │ │ │ └── srs.py │ │ │ │ │ └── views.py │ │ │ │ ├── humanize │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ └── apps.cpython-38.pyc │ │ │ │ │ ├── apps.py │ │ │ │ │ ├── locale │ │ │ │ │ │ ├── af │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ar │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ast │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── az │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── be │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── bg │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── bn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── br │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── bs │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ca │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── cs │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── cy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── da │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── de │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── dsb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── el │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── en │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── en_AU │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── en_GB │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── eo │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_AR │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_CO │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_MX │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_VE │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── et │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── eu │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fa │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ga │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── gd │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── gl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── he │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hsb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hu │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ia │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── id │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── io │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── is │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── it │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ja │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ka │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── kk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── km │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── kn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ko │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── lb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── lt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── lv │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── mk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ml │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── mn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── mr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ms │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── my │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── nb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ne │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── nl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── nn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── os │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pa │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pt_BR │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ro │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ru │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sq │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sr_Latn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sv │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sw │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ta │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── te │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── th │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── tr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── tt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── udm │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── uk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ur │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── uz │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── vi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── zh_Hans │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ └── zh_Hant │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ └── templatetags │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ └── humanize.cpython-38.pyc │ │ │ │ │ │ └── humanize.py │ │ │ │ ├── messages │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── api.cpython-38.pyc │ │ │ │ │ │ ├── apps.cpython-38.pyc │ │ │ │ │ │ ├── constants.cpython-38.pyc │ │ │ │ │ │ ├── context_processors.cpython-38.pyc │ │ │ │ │ │ ├── middleware.cpython-38.pyc │ │ │ │ │ │ ├── utils.cpython-38.pyc │ │ │ │ │ │ └── views.cpython-38.pyc │ │ │ │ │ ├── api.py │ │ │ │ │ ├── apps.py │ │ │ │ │ ├── constants.py │ │ │ │ │ ├── context_processors.py │ │ │ │ │ ├── middleware.py │ │ │ │ │ ├── storage │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ │ │ ├── cookie.cpython-38.pyc │ │ │ │ │ │ │ ├── fallback.cpython-38.pyc │ │ │ │ │ │ │ └── session.cpython-38.pyc │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── cookie.py │ │ │ │ │ │ ├── fallback.py │ │ │ │ │ │ └── session.py │ │ │ │ │ ├── utils.py │ │ │ │ │ └── views.py │ │ │ │ ├── postgres │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── apps.cpython-38.pyc │ │ │ │ │ │ ├── constraints.cpython-38.pyc │ │ │ │ │ │ ├── functions.cpython-38.pyc │ │ │ │ │ │ ├── indexes.cpython-38.pyc │ │ │ │ │ │ ├── lookups.cpython-38.pyc │ │ │ │ │ │ ├── operations.cpython-38.pyc │ │ │ │ │ │ ├── search.cpython-38.pyc │ │ │ │ │ │ ├── serializers.cpython-38.pyc │ │ │ │ │ │ ├── signals.cpython-38.pyc │ │ │ │ │ │ ├── utils.cpython-38.pyc │ │ │ │ │ │ └── validators.cpython-38.pyc │ │ │ │ │ ├── aggregates │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ ├── general.cpython-38.pyc │ │ │ │ │ │ │ ├── mixins.cpython-38.pyc │ │ │ │ │ │ │ └── statistics.cpython-38.pyc │ │ │ │ │ │ ├── general.py │ │ │ │ │ │ ├── mixins.py │ │ │ │ │ │ └── statistics.py │ │ │ │ │ ├── apps.py │ │ │ │ │ ├── constraints.py │ │ │ │ │ ├── fields │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ ├── array.cpython-38.pyc │ │ │ │ │ │ │ ├── citext.cpython-38.pyc │ │ │ │ │ │ │ ├── hstore.cpython-38.pyc │ │ │ │ │ │ │ ├── jsonb.cpython-38.pyc │ │ │ │ │ │ │ ├── mixins.cpython-38.pyc │ │ │ │ │ │ │ ├── ranges.cpython-38.pyc │ │ │ │ │ │ │ └── utils.cpython-38.pyc │ │ │ │ │ │ ├── array.py │ │ │ │ │ │ ├── citext.py │ │ │ │ │ │ ├── hstore.py │ │ │ │ │ │ ├── jsonb.py │ │ │ │ │ │ ├── mixins.py │ │ │ │ │ │ ├── ranges.py │ │ │ │ │ │ └── utils.py │ │ │ │ │ ├── forms │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ ├── array.cpython-38.pyc │ │ │ │ │ │ │ ├── hstore.cpython-38.pyc │ │ │ │ │ │ │ ├── jsonb.cpython-38.pyc │ │ │ │ │ │ │ └── ranges.cpython-38.pyc │ │ │ │ │ │ ├── array.py │ │ │ │ │ │ ├── hstore.py │ │ │ │ │ │ ├── jsonb.py │ │ │ │ │ │ └── ranges.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── indexes.py │ │ │ │ │ ├── jinja2 │ │ │ │ │ │ └── postgres │ │ │ │ │ │ │ └── widgets │ │ │ │ │ │ │ └── split_array.html │ │ │ │ │ ├── locale │ │ │ │ │ │ ├── af │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ar │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── az │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── be │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── bg │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ca │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── cs │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── da │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── de │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── dsb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── el │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── en │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── eo │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_AR │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_CO │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_MX │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── et │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── eu │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fa │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── gd │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── gl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── he │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hsb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hu │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ia │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── id │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── is │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── it │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ja │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ka │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── kk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ko │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── lt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── lv │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── mk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── mn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── nb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ne │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── nl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pt_BR │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ro │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ru │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sq │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sr_Latn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sv │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── tr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── uk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── zh_Hans │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ └── zh_Hant │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── lookups.py │ │ │ │ │ ├── operations.py │ │ │ │ │ ├── search.py │ │ │ │ │ ├── serializers.py │ │ │ │ │ ├── signals.py │ │ │ │ │ ├── templates │ │ │ │ │ │ └── postgres │ │ │ │ │ │ │ └── widgets │ │ │ │ │ │ │ └── split_array.html │ │ │ │ │ ├── utils.py │ │ │ │ │ └── validators.py │ │ │ │ ├── redirects │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── admin.cpython-38.pyc │ │ │ │ │ │ ├── apps.cpython-38.pyc │ │ │ │ │ │ ├── middleware.cpython-38.pyc │ │ │ │ │ │ └── models.cpython-38.pyc │ │ │ │ │ ├── admin.py │ │ │ │ │ ├── apps.py │ │ │ │ │ ├── locale │ │ │ │ │ │ ├── af │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ar │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ast │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── az │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── be │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── bg │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── bn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── br │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── bs │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ca │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── cs │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── cy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── da │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── de │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── dsb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── el │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── en │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── en_AU │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── en_GB │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── eo │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_AR │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_CO │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_MX │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_VE │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── et │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── eu │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fa │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ga │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── gd │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── gl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── he │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hsb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hu │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ia │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── id │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── io │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── is │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── it │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ja │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ka │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── kab │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── kk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── km │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── kn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ko │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── lb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── lt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── lv │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── mk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ml │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── mn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── mr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── my │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── nb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ne │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── nl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── nn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── os │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pa │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pt_BR │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ro │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ru │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sq │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sr_Latn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sv │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sw │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ta │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── te │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── th │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── tr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── tt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── udm │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── uk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ur │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── uz │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── vi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── zh_Hans │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ └── zh_Hant │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── middleware.py │ │ │ │ │ ├── migrations │ │ │ │ │ │ ├── 0001_initial.py │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ │ ├── 0001_initial.cpython-38.pyc │ │ │ │ │ │ │ └── __init__.cpython-38.pyc │ │ │ │ │ └── models.py │ │ │ │ ├── sessions │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── apps.cpython-38.pyc │ │ │ │ │ │ ├── base_session.cpython-38.pyc │ │ │ │ │ │ ├── exceptions.cpython-38.pyc │ │ │ │ │ │ ├── middleware.cpython-38.pyc │ │ │ │ │ │ ├── models.cpython-38.pyc │ │ │ │ │ │ └── serializers.cpython-38.pyc │ │ │ │ │ ├── apps.py │ │ │ │ │ ├── backends │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ │ │ ├── cache.cpython-38.pyc │ │ │ │ │ │ │ ├── cached_db.cpython-38.pyc │ │ │ │ │ │ │ ├── db.cpython-38.pyc │ │ │ │ │ │ │ ├── file.cpython-38.pyc │ │ │ │ │ │ │ └── signed_cookies.cpython-38.pyc │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── cache.py │ │ │ │ │ │ ├── cached_db.py │ │ │ │ │ │ ├── db.py │ │ │ │ │ │ ├── file.py │ │ │ │ │ │ └── signed_cookies.py │ │ │ │ │ ├── base_session.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ ├── locale │ │ │ │ │ │ ├── af │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ar │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ast │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── az │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── be │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── bg │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── bn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── br │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── bs │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ca │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── cs │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── cy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── da │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── de │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── dsb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── el │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── en │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── en_AU │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── en_GB │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── eo │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_AR │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_CO │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_MX │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_VE │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── et │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── eu │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fa │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ga │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── gd │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── gl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── he │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hsb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hu │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ia │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── id │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── io │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── is │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── it │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ja │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ka │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── kab │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── kk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── km │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── kn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ko │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── lb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── lt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── lv │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── mk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ml │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── mn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── mr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── my │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── nb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ne │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── nl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── nn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── os │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pa │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pt_BR │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ro │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ru │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sq │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sr_Latn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sv │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sw │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ta │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── te │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── th │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── tr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── tt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── udm │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── uk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ur │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── uz │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── vi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── zh_Hans │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ └── zh_Hant │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── management │ │ │ │ │ │ └── commands │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ └── clearsessions.cpython-38.pyc │ │ │ │ │ │ │ └── clearsessions.py │ │ │ │ │ ├── middleware.py │ │ │ │ │ ├── migrations │ │ │ │ │ │ ├── 0001_initial.py │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ │ ├── 0001_initial.cpython-38.pyc │ │ │ │ │ │ │ └── __init__.cpython-38.pyc │ │ │ │ │ ├── models.py │ │ │ │ │ └── serializers.py │ │ │ │ ├── sitemaps │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── apps.cpython-38.pyc │ │ │ │ │ │ └── views.cpython-38.pyc │ │ │ │ │ ├── apps.py │ │ │ │ │ ├── management │ │ │ │ │ │ └── commands │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ └── ping_google.cpython-38.pyc │ │ │ │ │ │ │ └── ping_google.py │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── sitemap.xml │ │ │ │ │ │ └── sitemap_index.xml │ │ │ │ │ └── views.py │ │ │ │ ├── sites │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── admin.cpython-38.pyc │ │ │ │ │ │ ├── apps.cpython-38.pyc │ │ │ │ │ │ ├── management.cpython-38.pyc │ │ │ │ │ │ ├── managers.cpython-38.pyc │ │ │ │ │ │ ├── middleware.cpython-38.pyc │ │ │ │ │ │ ├── models.cpython-38.pyc │ │ │ │ │ │ ├── requests.cpython-38.pyc │ │ │ │ │ │ └── shortcuts.cpython-38.pyc │ │ │ │ │ ├── admin.py │ │ │ │ │ ├── apps.py │ │ │ │ │ ├── locale │ │ │ │ │ │ ├── af │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ar │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ast │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── az │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── be │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── bg │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── bn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── br │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── bs │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ca │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── cs │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── cy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── da │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── de │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── dsb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── el │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── en │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── en_AU │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── en_GB │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── eo │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_AR │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_CO │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_MX │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── es_VE │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── et │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── eu │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fa │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── fy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ga │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── gd │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── gl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── he │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hsb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hu │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── hy │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ia │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── id │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── io │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── is │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── it │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ja │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ka │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── kab │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── kk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── km │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── kn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ko │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── lb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── lt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── lv │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── mk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ml │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── mn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── mr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── my │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── nb │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ne │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── nl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── nn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── os │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pa │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── pt_BR │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ro │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ru │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sl │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sq │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sr_Latn │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sv │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── sw │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ta │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── te │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── th │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── tr │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── tt │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── udm │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── uk │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── ur │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── uz │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── vi │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ ├── zh_Hans │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ │ └── django.po │ │ │ │ │ │ └── zh_Hant │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── management.py │ │ │ │ │ ├── managers.py │ │ │ │ │ ├── middleware.py │ │ │ │ │ ├── migrations │ │ │ │ │ │ ├── 0001_initial.py │ │ │ │ │ │ ├── 0002_alter_domain_unique.py │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ │ ├── 0001_initial.cpython-38.pyc │ │ │ │ │ │ │ ├── 0002_alter_domain_unique.cpython-38.pyc │ │ │ │ │ │ │ └── __init__.cpython-38.pyc │ │ │ │ │ ├── models.py │ │ │ │ │ ├── requests.py │ │ │ │ │ └── shortcuts.py │ │ │ │ ├── staticfiles │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── apps.cpython-38.pyc │ │ │ │ │ │ ├── checks.cpython-38.pyc │ │ │ │ │ │ ├── finders.cpython-38.pyc │ │ │ │ │ │ ├── handlers.cpython-38.pyc │ │ │ │ │ │ ├── storage.cpython-38.pyc │ │ │ │ │ │ ├── testing.cpython-38.pyc │ │ │ │ │ │ ├── urls.cpython-38.pyc │ │ │ │ │ │ ├── utils.cpython-38.pyc │ │ │ │ │ │ └── views.cpython-38.pyc │ │ │ │ │ ├── apps.py │ │ │ │ │ ├── checks.py │ │ │ │ │ ├── finders.py │ │ │ │ │ ├── handlers.py │ │ │ │ │ ├── management │ │ │ │ │ │ └── commands │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── collectstatic.cpython-38.pyc │ │ │ │ │ │ │ ├── findstatic.cpython-38.pyc │ │ │ │ │ │ │ └── runserver.cpython-38.pyc │ │ │ │ │ │ │ ├── collectstatic.py │ │ │ │ │ │ │ ├── findstatic.py │ │ │ │ │ │ │ └── runserver.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── testing.py │ │ │ │ │ ├── urls.py │ │ │ │ │ ├── utils.py │ │ │ │ │ └── views.py │ │ │ │ └── syndication │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── apps.cpython-38.pyc │ │ │ │ │ └── views.cpython-38.pyc │ │ │ │ │ ├── apps.py │ │ │ │ │ └── views.py │ │ │ ├── core │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── asgi.cpython-38.pyc │ │ │ │ │ ├── exceptions.cpython-38.pyc │ │ │ │ │ ├── paginator.cpython-38.pyc │ │ │ │ │ ├── signals.cpython-38.pyc │ │ │ │ │ ├── signing.cpython-38.pyc │ │ │ │ │ ├── validators.cpython-38.pyc │ │ │ │ │ └── wsgi.cpython-38.pyc │ │ │ │ ├── asgi.py │ │ │ │ ├── cache │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ └── utils.cpython-38.pyc │ │ │ │ │ ├── backends │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ │ │ ├── db.cpython-38.pyc │ │ │ │ │ │ │ ├── dummy.cpython-38.pyc │ │ │ │ │ │ │ ├── filebased.cpython-38.pyc │ │ │ │ │ │ │ ├── locmem.cpython-38.pyc │ │ │ │ │ │ │ └── memcached.cpython-38.pyc │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── db.py │ │ │ │ │ │ ├── dummy.py │ │ │ │ │ │ ├── filebased.py │ │ │ │ │ │ ├── locmem.py │ │ │ │ │ │ └── memcached.py │ │ │ │ │ └── utils.py │ │ │ │ ├── checks │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── caches.cpython-38.pyc │ │ │ │ │ │ ├── database.cpython-38.pyc │ │ │ │ │ │ ├── messages.cpython-38.pyc │ │ │ │ │ │ ├── model_checks.cpython-38.pyc │ │ │ │ │ │ ├── registry.cpython-38.pyc │ │ │ │ │ │ ├── templates.cpython-38.pyc │ │ │ │ │ │ ├── translation.cpython-38.pyc │ │ │ │ │ │ └── urls.cpython-38.pyc │ │ │ │ │ ├── caches.py │ │ │ │ │ ├── compatibility │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ │ └── __init__.cpython-38.pyc │ │ │ │ │ ├── database.py │ │ │ │ │ ├── messages.py │ │ │ │ │ ├── model_checks.py │ │ │ │ │ ├── registry.py │ │ │ │ │ ├── security │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ │ │ ├── csrf.cpython-38.pyc │ │ │ │ │ │ │ └── sessions.cpython-38.pyc │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── csrf.py │ │ │ │ │ │ └── sessions.py │ │ │ │ │ ├── templates.py │ │ │ │ │ ├── translation.py │ │ │ │ │ └── urls.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── files │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ │ ├── images.cpython-38.pyc │ │ │ │ │ │ ├── locks.cpython-38.pyc │ │ │ │ │ │ ├── move.cpython-38.pyc │ │ │ │ │ │ ├── storage.cpython-38.pyc │ │ │ │ │ │ ├── temp.cpython-38.pyc │ │ │ │ │ │ ├── uploadedfile.cpython-38.pyc │ │ │ │ │ │ ├── uploadhandler.cpython-38.pyc │ │ │ │ │ │ └── utils.cpython-38.pyc │ │ │ │ │ ├── base.py │ │ │ │ │ ├── images.py │ │ │ │ │ ├── locks.py │ │ │ │ │ ├── move.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── temp.py │ │ │ │ │ ├── uploadedfile.py │ │ │ │ │ ├── uploadhandler.py │ │ │ │ │ └── utils.py │ │ │ │ ├── handlers │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── asgi.cpython-38.pyc │ │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ │ ├── exception.cpython-38.pyc │ │ │ │ │ │ └── wsgi.cpython-38.pyc │ │ │ │ │ ├── asgi.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── exception.py │ │ │ │ │ └── wsgi.py │ │ │ │ ├── mail │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── message.cpython-38.pyc │ │ │ │ │ │ └── utils.cpython-38.pyc │ │ │ │ │ ├── backends │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ │ │ ├── console.cpython-38.pyc │ │ │ │ │ │ │ ├── dummy.cpython-38.pyc │ │ │ │ │ │ │ ├── filebased.cpython-38.pyc │ │ │ │ │ │ │ ├── locmem.cpython-38.pyc │ │ │ │ │ │ │ └── smtp.cpython-38.pyc │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── console.py │ │ │ │ │ │ ├── dummy.py │ │ │ │ │ │ ├── filebased.py │ │ │ │ │ │ ├── locmem.py │ │ │ │ │ │ └── smtp.py │ │ │ │ │ ├── message.py │ │ │ │ │ └── utils.py │ │ │ │ ├── management │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ │ ├── color.cpython-38.pyc │ │ │ │ │ │ ├── sql.cpython-38.pyc │ │ │ │ │ │ ├── templates.cpython-38.pyc │ │ │ │ │ │ └── utils.cpython-38.pyc │ │ │ │ │ ├── base.py │ │ │ │ │ ├── color.py │ │ │ │ │ ├── commands │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── check.cpython-38.pyc │ │ │ │ │ │ │ ├── compilemessages.cpython-38.pyc │ │ │ │ │ │ │ ├── createcachetable.cpython-38.pyc │ │ │ │ │ │ │ ├── dbshell.cpython-38.pyc │ │ │ │ │ │ │ ├── diffsettings.cpython-38.pyc │ │ │ │ │ │ │ ├── dumpdata.cpython-38.pyc │ │ │ │ │ │ │ ├── flush.cpython-38.pyc │ │ │ │ │ │ │ ├── inspectdb.cpython-38.pyc │ │ │ │ │ │ │ ├── loaddata.cpython-38.pyc │ │ │ │ │ │ │ ├── makemessages.cpython-38.pyc │ │ │ │ │ │ │ ├── makemigrations.cpython-38.pyc │ │ │ │ │ │ │ ├── migrate.cpython-38.pyc │ │ │ │ │ │ │ ├── runserver.cpython-38.pyc │ │ │ │ │ │ │ ├── sendtestemail.cpython-38.pyc │ │ │ │ │ │ │ ├── shell.cpython-38.pyc │ │ │ │ │ │ │ ├── showmigrations.cpython-38.pyc │ │ │ │ │ │ │ ├── sqlflush.cpython-38.pyc │ │ │ │ │ │ │ ├── sqlmigrate.cpython-38.pyc │ │ │ │ │ │ │ ├── sqlsequencereset.cpython-38.pyc │ │ │ │ │ │ │ ├── squashmigrations.cpython-38.pyc │ │ │ │ │ │ │ ├── startapp.cpython-38.pyc │ │ │ │ │ │ │ ├── startproject.cpython-38.pyc │ │ │ │ │ │ │ ├── test.cpython-38.pyc │ │ │ │ │ │ │ └── testserver.cpython-38.pyc │ │ │ │ │ │ ├── check.py │ │ │ │ │ │ ├── compilemessages.py │ │ │ │ │ │ ├── createcachetable.py │ │ │ │ │ │ ├── dbshell.py │ │ │ │ │ │ ├── diffsettings.py │ │ │ │ │ │ ├── dumpdata.py │ │ │ │ │ │ ├── flush.py │ │ │ │ │ │ ├── inspectdb.py │ │ │ │ │ │ ├── loaddata.py │ │ │ │ │ │ ├── makemessages.py │ │ │ │ │ │ ├── makemigrations.py │ │ │ │ │ │ ├── migrate.py │ │ │ │ │ │ ├── runserver.py │ │ │ │ │ │ ├── sendtestemail.py │ │ │ │ │ │ ├── shell.py │ │ │ │ │ │ ├── showmigrations.py │ │ │ │ │ │ ├── sqlflush.py │ │ │ │ │ │ ├── sqlmigrate.py │ │ │ │ │ │ ├── sqlsequencereset.py │ │ │ │ │ │ ├── squashmigrations.py │ │ │ │ │ │ ├── startapp.py │ │ │ │ │ │ ├── startproject.py │ │ │ │ │ │ ├── test.py │ │ │ │ │ │ └── testserver.py │ │ │ │ │ ├── sql.py │ │ │ │ │ ├── templates.py │ │ │ │ │ └── utils.py │ │ │ │ ├── paginator.py │ │ │ │ ├── serializers │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ │ ├── json.cpython-38.pyc │ │ │ │ │ │ ├── python.cpython-38.pyc │ │ │ │ │ │ ├── pyyaml.cpython-38.pyc │ │ │ │ │ │ └── xml_serializer.cpython-38.pyc │ │ │ │ │ ├── base.py │ │ │ │ │ ├── json.py │ │ │ │ │ ├── python.py │ │ │ │ │ ├── pyyaml.py │ │ │ │ │ └── xml_serializer.py │ │ │ │ ├── servers │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ └── basehttp.cpython-38.pyc │ │ │ │ │ └── basehttp.py │ │ │ │ ├── signals.py │ │ │ │ ├── signing.py │ │ │ │ ├── validators.py │ │ │ │ └── wsgi.py │ │ │ ├── db │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── transaction.cpython-38.pyc │ │ │ │ │ └── utils.cpython-38.pyc │ │ │ │ ├── backends │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── ddl_references.cpython-38.pyc │ │ │ │ │ │ ├── signals.cpython-38.pyc │ │ │ │ │ │ └── utils.cpython-38.pyc │ │ │ │ │ ├── base │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ │ │ ├── client.cpython-38.pyc │ │ │ │ │ │ │ ├── creation.cpython-38.pyc │ │ │ │ │ │ │ ├── features.cpython-38.pyc │ │ │ │ │ │ │ ├── introspection.cpython-38.pyc │ │ │ │ │ │ │ ├── operations.cpython-38.pyc │ │ │ │ │ │ │ ├── schema.cpython-38.pyc │ │ │ │ │ │ │ └── validation.cpython-38.pyc │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── client.py │ │ │ │ │ │ ├── creation.py │ │ │ │ │ │ ├── features.py │ │ │ │ │ │ ├── introspection.py │ │ │ │ │ │ ├── operations.py │ │ │ │ │ │ ├── schema.py │ │ │ │ │ │ └── validation.py │ │ │ │ │ ├── ddl_references.py │ │ │ │ │ ├── dummy │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ │ │ └── features.cpython-38.pyc │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ └── features.py │ │ │ │ │ ├── mysql │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ │ │ ├── client.cpython-38.pyc │ │ │ │ │ │ │ ├── compiler.cpython-38.pyc │ │ │ │ │ │ │ ├── creation.cpython-38.pyc │ │ │ │ │ │ │ ├── features.cpython-38.pyc │ │ │ │ │ │ │ ├── introspection.cpython-38.pyc │ │ │ │ │ │ │ ├── operations.cpython-38.pyc │ │ │ │ │ │ │ ├── schema.cpython-38.pyc │ │ │ │ │ │ │ └── validation.cpython-38.pyc │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── client.py │ │ │ │ │ │ ├── compiler.py │ │ │ │ │ │ ├── creation.py │ │ │ │ │ │ ├── features.py │ │ │ │ │ │ ├── introspection.py │ │ │ │ │ │ ├── operations.py │ │ │ │ │ │ ├── schema.py │ │ │ │ │ │ └── validation.py │ │ │ │ │ ├── oracle │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ │ │ ├── client.cpython-38.pyc │ │ │ │ │ │ │ ├── creation.cpython-38.pyc │ │ │ │ │ │ │ ├── features.cpython-38.pyc │ │ │ │ │ │ │ ├── functions.cpython-38.pyc │ │ │ │ │ │ │ ├── introspection.cpython-38.pyc │ │ │ │ │ │ │ ├── operations.cpython-38.pyc │ │ │ │ │ │ │ ├── schema.cpython-38.pyc │ │ │ │ │ │ │ ├── utils.cpython-38.pyc │ │ │ │ │ │ │ └── validation.cpython-38.pyc │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── client.py │ │ │ │ │ │ ├── creation.py │ │ │ │ │ │ ├── features.py │ │ │ │ │ │ ├── functions.py │ │ │ │ │ │ ├── introspection.py │ │ │ │ │ │ ├── operations.py │ │ │ │ │ │ ├── schema.py │ │ │ │ │ │ ├── utils.py │ │ │ │ │ │ └── validation.py │ │ │ │ │ ├── postgresql │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ │ │ ├── client.cpython-38.pyc │ │ │ │ │ │ │ ├── creation.cpython-38.pyc │ │ │ │ │ │ │ ├── features.cpython-38.pyc │ │ │ │ │ │ │ ├── introspection.cpython-38.pyc │ │ │ │ │ │ │ ├── operations.cpython-38.pyc │ │ │ │ │ │ │ ├── schema.cpython-38.pyc │ │ │ │ │ │ │ └── utils.cpython-38.pyc │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── client.py │ │ │ │ │ │ ├── creation.py │ │ │ │ │ │ ├── features.py │ │ │ │ │ │ ├── introspection.py │ │ │ │ │ │ ├── operations.py │ │ │ │ │ │ ├── schema.py │ │ │ │ │ │ └── utils.py │ │ │ │ │ ├── signals.py │ │ │ │ │ ├── sqlite3 │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ │ │ ├── client.cpython-38.pyc │ │ │ │ │ │ │ ├── creation.cpython-38.pyc │ │ │ │ │ │ │ ├── features.cpython-38.pyc │ │ │ │ │ │ │ ├── introspection.cpython-38.pyc │ │ │ │ │ │ │ ├── operations.cpython-38.pyc │ │ │ │ │ │ │ └── schema.cpython-38.pyc │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── client.py │ │ │ │ │ │ ├── creation.py │ │ │ │ │ │ ├── features.py │ │ │ │ │ │ ├── introspection.py │ │ │ │ │ │ ├── operations.py │ │ │ │ │ │ └── schema.py │ │ │ │ │ └── utils.py │ │ │ │ ├── migrations │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── autodetector.cpython-38.pyc │ │ │ │ │ │ ├── exceptions.cpython-38.pyc │ │ │ │ │ │ ├── executor.cpython-38.pyc │ │ │ │ │ │ ├── graph.cpython-38.pyc │ │ │ │ │ │ ├── loader.cpython-38.pyc │ │ │ │ │ │ ├── migration.cpython-38.pyc │ │ │ │ │ │ ├── optimizer.cpython-38.pyc │ │ │ │ │ │ ├── questioner.cpython-38.pyc │ │ │ │ │ │ ├── recorder.cpython-38.pyc │ │ │ │ │ │ ├── serializer.cpython-38.pyc │ │ │ │ │ │ ├── state.cpython-38.pyc │ │ │ │ │ │ ├── utils.cpython-38.pyc │ │ │ │ │ │ └── writer.cpython-38.pyc │ │ │ │ │ ├── autodetector.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ ├── executor.py │ │ │ │ │ ├── graph.py │ │ │ │ │ ├── loader.py │ │ │ │ │ ├── migration.py │ │ │ │ │ ├── operations │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ │ │ ├── fields.cpython-38.pyc │ │ │ │ │ │ │ ├── models.cpython-38.pyc │ │ │ │ │ │ │ ├── special.cpython-38.pyc │ │ │ │ │ │ │ └── utils.cpython-38.pyc │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── fields.py │ │ │ │ │ │ ├── models.py │ │ │ │ │ │ ├── special.py │ │ │ │ │ │ └── utils.py │ │ │ │ │ ├── optimizer.py │ │ │ │ │ ├── questioner.py │ │ │ │ │ ├── recorder.py │ │ │ │ │ ├── serializer.py │ │ │ │ │ ├── state.py │ │ │ │ │ ├── utils.py │ │ │ │ │ └── writer.py │ │ │ │ ├── models │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── aggregates.cpython-38.pyc │ │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ │ ├── constants.cpython-38.pyc │ │ │ │ │ │ ├── constraints.cpython-38.pyc │ │ │ │ │ │ ├── deletion.cpython-38.pyc │ │ │ │ │ │ ├── enums.cpython-38.pyc │ │ │ │ │ │ ├── expressions.cpython-38.pyc │ │ │ │ │ │ ├── indexes.cpython-38.pyc │ │ │ │ │ │ ├── lookups.cpython-38.pyc │ │ │ │ │ │ ├── manager.cpython-38.pyc │ │ │ │ │ │ ├── options.cpython-38.pyc │ │ │ │ │ │ ├── query.cpython-38.pyc │ │ │ │ │ │ ├── query_utils.cpython-38.pyc │ │ │ │ │ │ ├── signals.cpython-38.pyc │ │ │ │ │ │ └── utils.cpython-38.pyc │ │ │ │ │ ├── aggregates.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── constants.py │ │ │ │ │ ├── constraints.py │ │ │ │ │ ├── deletion.py │ │ │ │ │ ├── enums.py │ │ │ │ │ ├── expressions.py │ │ │ │ │ ├── fields │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ ├── files.cpython-38.pyc │ │ │ │ │ │ │ ├── mixins.cpython-38.pyc │ │ │ │ │ │ │ ├── proxy.cpython-38.pyc │ │ │ │ │ │ │ ├── related.cpython-38.pyc │ │ │ │ │ │ │ ├── related_descriptors.cpython-38.pyc │ │ │ │ │ │ │ ├── related_lookups.cpython-38.pyc │ │ │ │ │ │ │ └── reverse_related.cpython-38.pyc │ │ │ │ │ │ ├── files.py │ │ │ │ │ │ ├── mixins.py │ │ │ │ │ │ ├── proxy.py │ │ │ │ │ │ ├── related.py │ │ │ │ │ │ ├── related_descriptors.py │ │ │ │ │ │ ├── related_lookups.py │ │ │ │ │ │ └── reverse_related.py │ │ │ │ │ ├── functions │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ ├── comparison.cpython-38.pyc │ │ │ │ │ │ │ ├── datetime.cpython-38.pyc │ │ │ │ │ │ │ ├── math.cpython-38.pyc │ │ │ │ │ │ │ ├── mixins.cpython-38.pyc │ │ │ │ │ │ │ ├── text.cpython-38.pyc │ │ │ │ │ │ │ └── window.cpython-38.pyc │ │ │ │ │ │ ├── comparison.py │ │ │ │ │ │ ├── datetime.py │ │ │ │ │ │ ├── math.py │ │ │ │ │ │ ├── mixins.py │ │ │ │ │ │ ├── text.py │ │ │ │ │ │ └── window.py │ │ │ │ │ ├── indexes.py │ │ │ │ │ ├── lookups.py │ │ │ │ │ ├── manager.py │ │ │ │ │ ├── options.py │ │ │ │ │ ├── query.py │ │ │ │ │ ├── query_utils.py │ │ │ │ │ ├── signals.py │ │ │ │ │ ├── sql │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ ├── compiler.cpython-38.pyc │ │ │ │ │ │ │ ├── constants.cpython-38.pyc │ │ │ │ │ │ │ ├── datastructures.cpython-38.pyc │ │ │ │ │ │ │ ├── query.cpython-38.pyc │ │ │ │ │ │ │ ├── subqueries.cpython-38.pyc │ │ │ │ │ │ │ └── where.cpython-38.pyc │ │ │ │ │ │ ├── compiler.py │ │ │ │ │ │ ├── constants.py │ │ │ │ │ │ ├── datastructures.py │ │ │ │ │ │ ├── query.py │ │ │ │ │ │ ├── subqueries.py │ │ │ │ │ │ └── where.py │ │ │ │ │ └── utils.py │ │ │ │ ├── transaction.py │ │ │ │ └── utils.py │ │ │ ├── dispatch │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ └── dispatcher.cpython-38.pyc │ │ │ │ ├── dispatcher.py │ │ │ │ └── license.txt │ │ │ ├── forms │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── boundfield.cpython-38.pyc │ │ │ │ │ ├── fields.cpython-38.pyc │ │ │ │ │ ├── forms.cpython-38.pyc │ │ │ │ │ ├── formsets.cpython-38.pyc │ │ │ │ │ ├── models.cpython-38.pyc │ │ │ │ │ ├── renderers.cpython-38.pyc │ │ │ │ │ ├── utils.cpython-38.pyc │ │ │ │ │ └── widgets.cpython-38.pyc │ │ │ │ ├── boundfield.py │ │ │ │ ├── fields.py │ │ │ │ ├── forms.py │ │ │ │ ├── formsets.py │ │ │ │ ├── jinja2 │ │ │ │ │ └── django │ │ │ │ │ │ └── forms │ │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── attrs.html │ │ │ │ │ │ ├── checkbox.html │ │ │ │ │ │ ├── checkbox_option.html │ │ │ │ │ │ ├── checkbox_select.html │ │ │ │ │ │ ├── clearable_file_input.html │ │ │ │ │ │ ├── date.html │ │ │ │ │ │ ├── datetime.html │ │ │ │ │ │ ├── email.html │ │ │ │ │ │ ├── file.html │ │ │ │ │ │ ├── hidden.html │ │ │ │ │ │ ├── input.html │ │ │ │ │ │ ├── input_option.html │ │ │ │ │ │ ├── multiple_hidden.html │ │ │ │ │ │ ├── multiple_input.html │ │ │ │ │ │ ├── multiwidget.html │ │ │ │ │ │ ├── number.html │ │ │ │ │ │ ├── password.html │ │ │ │ │ │ ├── radio.html │ │ │ │ │ │ ├── radio_option.html │ │ │ │ │ │ ├── select.html │ │ │ │ │ │ ├── select_date.html │ │ │ │ │ │ ├── select_option.html │ │ │ │ │ │ ├── splitdatetime.html │ │ │ │ │ │ ├── splithiddendatetime.html │ │ │ │ │ │ ├── text.html │ │ │ │ │ │ ├── textarea.html │ │ │ │ │ │ ├── time.html │ │ │ │ │ │ └── url.html │ │ │ │ ├── models.py │ │ │ │ ├── renderers.py │ │ │ │ ├── templates │ │ │ │ │ └── django │ │ │ │ │ │ └── forms │ │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── attrs.html │ │ │ │ │ │ ├── checkbox.html │ │ │ │ │ │ ├── checkbox_option.html │ │ │ │ │ │ ├── checkbox_select.html │ │ │ │ │ │ ├── clearable_file_input.html │ │ │ │ │ │ ├── date.html │ │ │ │ │ │ ├── datetime.html │ │ │ │ │ │ ├── email.html │ │ │ │ │ │ ├── file.html │ │ │ │ │ │ ├── hidden.html │ │ │ │ │ │ ├── input.html │ │ │ │ │ │ ├── input_option.html │ │ │ │ │ │ ├── multiple_hidden.html │ │ │ │ │ │ ├── multiple_input.html │ │ │ │ │ │ ├── multiwidget.html │ │ │ │ │ │ ├── number.html │ │ │ │ │ │ ├── password.html │ │ │ │ │ │ ├── radio.html │ │ │ │ │ │ ├── radio_option.html │ │ │ │ │ │ ├── select.html │ │ │ │ │ │ ├── select_date.html │ │ │ │ │ │ ├── select_option.html │ │ │ │ │ │ ├── splitdatetime.html │ │ │ │ │ │ ├── splithiddendatetime.html │ │ │ │ │ │ ├── text.html │ │ │ │ │ │ ├── textarea.html │ │ │ │ │ │ ├── time.html │ │ │ │ │ │ └── url.html │ │ │ │ ├── utils.py │ │ │ │ └── widgets.py │ │ │ ├── http │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── cookie.cpython-38.pyc │ │ │ │ │ ├── multipartparser.cpython-38.pyc │ │ │ │ │ ├── request.cpython-38.pyc │ │ │ │ │ └── response.cpython-38.pyc │ │ │ │ ├── cookie.py │ │ │ │ ├── multipartparser.py │ │ │ │ ├── request.py │ │ │ │ └── response.py │ │ │ ├── middleware │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── cache.cpython-38.pyc │ │ │ │ │ ├── clickjacking.cpython-38.pyc │ │ │ │ │ ├── common.cpython-38.pyc │ │ │ │ │ ├── csrf.cpython-38.pyc │ │ │ │ │ ├── gzip.cpython-38.pyc │ │ │ │ │ ├── http.cpython-38.pyc │ │ │ │ │ ├── locale.cpython-38.pyc │ │ │ │ │ └── security.cpython-38.pyc │ │ │ │ ├── cache.py │ │ │ │ ├── clickjacking.py │ │ │ │ ├── common.py │ │ │ │ ├── csrf.py │ │ │ │ ├── gzip.py │ │ │ │ ├── http.py │ │ │ │ ├── locale.py │ │ │ │ └── security.py │ │ │ ├── shortcuts.py │ │ │ ├── template │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ ├── context.cpython-38.pyc │ │ │ │ │ ├── context_processors.cpython-38.pyc │ │ │ │ │ ├── defaultfilters.cpython-38.pyc │ │ │ │ │ ├── defaulttags.cpython-38.pyc │ │ │ │ │ ├── engine.cpython-38.pyc │ │ │ │ │ ├── exceptions.cpython-38.pyc │ │ │ │ │ ├── library.cpython-38.pyc │ │ │ │ │ ├── loader.cpython-38.pyc │ │ │ │ │ ├── loader_tags.cpython-38.pyc │ │ │ │ │ ├── response.cpython-38.pyc │ │ │ │ │ ├── smartif.cpython-38.pyc │ │ │ │ │ └── utils.cpython-38.pyc │ │ │ │ ├── backends │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ │ ├── django.cpython-38.pyc │ │ │ │ │ │ ├── dummy.cpython-38.pyc │ │ │ │ │ │ ├── jinja2.cpython-38.pyc │ │ │ │ │ │ └── utils.cpython-38.pyc │ │ │ │ │ ├── base.py │ │ │ │ │ ├── django.py │ │ │ │ │ ├── dummy.py │ │ │ │ │ ├── jinja2.py │ │ │ │ │ └── utils.py │ │ │ │ ├── base.py │ │ │ │ ├── context.py │ │ │ │ ├── context_processors.py │ │ │ │ ├── defaultfilters.py │ │ │ │ ├── defaulttags.py │ │ │ │ ├── engine.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── library.py │ │ │ │ ├── loader.py │ │ │ │ ├── loader_tags.py │ │ │ │ ├── loaders │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── app_directories.cpython-38.pyc │ │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ │ ├── cached.cpython-38.pyc │ │ │ │ │ │ ├── filesystem.cpython-38.pyc │ │ │ │ │ │ └── locmem.cpython-38.pyc │ │ │ │ │ ├── app_directories.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── cached.py │ │ │ │ │ ├── filesystem.py │ │ │ │ │ └── locmem.py │ │ │ │ ├── response.py │ │ │ │ ├── smartif.py │ │ │ │ └── utils.py │ │ │ ├── templatetags │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── cache.cpython-38.pyc │ │ │ │ │ ├── i18n.cpython-38.pyc │ │ │ │ │ ├── l10n.cpython-38.pyc │ │ │ │ │ ├── static.cpython-38.pyc │ │ │ │ │ └── tz.cpython-38.pyc │ │ │ │ ├── cache.py │ │ │ │ ├── i18n.py │ │ │ │ ├── l10n.py │ │ │ │ ├── static.py │ │ │ │ └── tz.py │ │ │ ├── test │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── client.cpython-38.pyc │ │ │ │ │ ├── html.cpython-38.pyc │ │ │ │ │ ├── runner.cpython-38.pyc │ │ │ │ │ ├── selenium.cpython-38.pyc │ │ │ │ │ ├── signals.cpython-38.pyc │ │ │ │ │ ├── testcases.cpython-38.pyc │ │ │ │ │ └── utils.cpython-38.pyc │ │ │ │ ├── client.py │ │ │ │ ├── html.py │ │ │ │ ├── runner.py │ │ │ │ ├── selenium.py │ │ │ │ ├── signals.py │ │ │ │ ├── testcases.py │ │ │ │ └── utils.py │ │ │ ├── urls │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ ├── conf.cpython-38.pyc │ │ │ │ │ ├── converters.cpython-38.pyc │ │ │ │ │ ├── exceptions.cpython-38.pyc │ │ │ │ │ ├── resolvers.cpython-38.pyc │ │ │ │ │ └── utils.cpython-38.pyc │ │ │ │ ├── base.py │ │ │ │ ├── conf.py │ │ │ │ ├── converters.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── resolvers.py │ │ │ │ └── utils.py │ │ │ ├── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── _os.cpython-38.pyc │ │ │ │ │ ├── archive.cpython-38.pyc │ │ │ │ │ ├── asyncio.cpython-38.pyc │ │ │ │ │ ├── autoreload.cpython-38.pyc │ │ │ │ │ ├── baseconv.cpython-38.pyc │ │ │ │ │ ├── cache.cpython-38.pyc │ │ │ │ │ ├── crypto.cpython-38.pyc │ │ │ │ │ ├── datastructures.cpython-38.pyc │ │ │ │ │ ├── dateformat.cpython-38.pyc │ │ │ │ │ ├── dateparse.cpython-38.pyc │ │ │ │ │ ├── dates.cpython-38.pyc │ │ │ │ │ ├── datetime_safe.cpython-38.pyc │ │ │ │ │ ├── deconstruct.cpython-38.pyc │ │ │ │ │ ├── decorators.cpython-38.pyc │ │ │ │ │ ├── deprecation.cpython-38.pyc │ │ │ │ │ ├── duration.cpython-38.pyc │ │ │ │ │ ├── encoding.cpython-38.pyc │ │ │ │ │ ├── feedgenerator.cpython-38.pyc │ │ │ │ │ ├── formats.cpython-38.pyc │ │ │ │ │ ├── functional.cpython-38.pyc │ │ │ │ │ ├── hashable.cpython-38.pyc │ │ │ │ │ ├── html.cpython-38.pyc │ │ │ │ │ ├── http.cpython-38.pyc │ │ │ │ │ ├── inspect.cpython-38.pyc │ │ │ │ │ ├── ipv6.cpython-38.pyc │ │ │ │ │ ├── itercompat.cpython-38.pyc │ │ │ │ │ ├── jslex.cpython-38.pyc │ │ │ │ │ ├── log.cpython-38.pyc │ │ │ │ │ ├── lorem_ipsum.cpython-38.pyc │ │ │ │ │ ├── module_loading.cpython-38.pyc │ │ │ │ │ ├── numberformat.cpython-38.pyc │ │ │ │ │ ├── regex_helper.cpython-38.pyc │ │ │ │ │ ├── safestring.cpython-38.pyc │ │ │ │ │ ├── termcolors.cpython-38.pyc │ │ │ │ │ ├── text.cpython-38.pyc │ │ │ │ │ ├── timesince.cpython-38.pyc │ │ │ │ │ ├── timezone.cpython-38.pyc │ │ │ │ │ ├── topological_sort.cpython-38.pyc │ │ │ │ │ ├── tree.cpython-38.pyc │ │ │ │ │ ├── version.cpython-38.pyc │ │ │ │ │ └── xmlutils.cpython-38.pyc │ │ │ │ ├── _os.py │ │ │ │ ├── archive.py │ │ │ │ ├── asyncio.py │ │ │ │ ├── autoreload.py │ │ │ │ ├── baseconv.py │ │ │ │ ├── cache.py │ │ │ │ ├── crypto.py │ │ │ │ ├── datastructures.py │ │ │ │ ├── dateformat.py │ │ │ │ ├── dateparse.py │ │ │ │ ├── dates.py │ │ │ │ ├── datetime_safe.py │ │ │ │ ├── deconstruct.py │ │ │ │ ├── decorators.py │ │ │ │ ├── deprecation.py │ │ │ │ ├── duration.py │ │ │ │ ├── encoding.py │ │ │ │ ├── feedgenerator.py │ │ │ │ ├── formats.py │ │ │ │ ├── functional.py │ │ │ │ ├── hashable.py │ │ │ │ ├── html.py │ │ │ │ ├── http.py │ │ │ │ ├── inspect.py │ │ │ │ ├── ipv6.py │ │ │ │ ├── itercompat.py │ │ │ │ ├── jslex.py │ │ │ │ ├── log.py │ │ │ │ ├── lorem_ipsum.py │ │ │ │ ├── module_loading.py │ │ │ │ ├── numberformat.py │ │ │ │ ├── regex_helper.py │ │ │ │ ├── safestring.py │ │ │ │ ├── termcolors.py │ │ │ │ ├── text.py │ │ │ │ ├── timesince.py │ │ │ │ ├── timezone.py │ │ │ │ ├── topological_sort.py │ │ │ │ ├── translation │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── reloader.cpython-38.pyc │ │ │ │ │ │ ├── template.cpython-38.pyc │ │ │ │ │ │ ├── trans_null.cpython-38.pyc │ │ │ │ │ │ └── trans_real.cpython-38.pyc │ │ │ │ │ ├── reloader.py │ │ │ │ │ ├── template.py │ │ │ │ │ ├── trans_null.py │ │ │ │ │ └── trans_real.py │ │ │ │ ├── tree.py │ │ │ │ ├── version.py │ │ │ │ └── xmlutils.py │ │ │ └── views │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── csrf.cpython-38.pyc │ │ │ │ ├── debug.cpython-38.pyc │ │ │ │ ├── defaults.cpython-38.pyc │ │ │ │ ├── i18n.cpython-38.pyc │ │ │ │ └── static.cpython-38.pyc │ │ │ │ ├── csrf.py │ │ │ │ ├── debug.py │ │ │ │ ├── decorators │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── cache.cpython-38.pyc │ │ │ │ │ ├── clickjacking.cpython-38.pyc │ │ │ │ │ ├── csrf.cpython-38.pyc │ │ │ │ │ ├── debug.cpython-38.pyc │ │ │ │ │ ├── gzip.cpython-38.pyc │ │ │ │ │ ├── http.cpython-38.pyc │ │ │ │ │ └── vary.cpython-38.pyc │ │ │ │ ├── cache.py │ │ │ │ ├── clickjacking.py │ │ │ │ ├── csrf.py │ │ │ │ ├── debug.py │ │ │ │ ├── gzip.py │ │ │ │ ├── http.py │ │ │ │ └── vary.py │ │ │ │ ├── defaults.py │ │ │ │ ├── generic │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ ├── dates.cpython-38.pyc │ │ │ │ │ ├── detail.cpython-38.pyc │ │ │ │ │ ├── edit.cpython-38.pyc │ │ │ │ │ └── list.cpython-38.pyc │ │ │ │ ├── base.py │ │ │ │ ├── dates.py │ │ │ │ ├── detail.py │ │ │ │ ├── edit.py │ │ │ │ └── list.py │ │ │ │ ├── i18n.py │ │ │ │ ├── static.py │ │ │ │ └── templates │ │ │ │ ├── default_urlconf.html │ │ │ │ ├── technical_404.html │ │ │ │ ├── technical_500.html │ │ │ │ └── technical_500.txt │ │ ├── easy_install.py │ │ ├── pip-20.0.2.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE.txt │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── entry_points.txt │ │ │ └── top_level.txt │ │ ├── pip-20.1.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE.txt │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── entry_points.txt │ │ │ └── top_level.txt │ │ ├── pip │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ └── __main__.cpython-38.pyc │ │ │ ├── _internal │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── build_env.cpython-38.pyc │ │ │ │ │ ├── cache.cpython-38.pyc │ │ │ │ │ ├── configuration.cpython-38.pyc │ │ │ │ │ ├── exceptions.cpython-38.pyc │ │ │ │ │ ├── legacy_resolve.cpython-38.pyc │ │ │ │ │ ├── locations.cpython-38.pyc │ │ │ │ │ ├── main.cpython-38.pyc │ │ │ │ │ ├── pep425tags.cpython-38.pyc │ │ │ │ │ ├── pyproject.cpython-38.pyc │ │ │ │ │ ├── self_outdated_check.cpython-38.pyc │ │ │ │ │ └── wheel_builder.cpython-38.pyc │ │ │ │ ├── build_env.py │ │ │ │ ├── cache.py │ │ │ │ ├── cli │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── autocompletion.cpython-38.pyc │ │ │ │ │ │ ├── base_command.cpython-38.pyc │ │ │ │ │ │ ├── cmdoptions.cpython-38.pyc │ │ │ │ │ │ ├── command_context.cpython-38.pyc │ │ │ │ │ │ ├── main.cpython-38.pyc │ │ │ │ │ │ ├── main_parser.cpython-38.pyc │ │ │ │ │ │ ├── parser.cpython-38.pyc │ │ │ │ │ │ ├── progress_bars.cpython-38.pyc │ │ │ │ │ │ ├── req_command.cpython-38.pyc │ │ │ │ │ │ ├── spinners.cpython-38.pyc │ │ │ │ │ │ └── status_codes.cpython-38.pyc │ │ │ │ │ ├── autocompletion.py │ │ │ │ │ ├── base_command.py │ │ │ │ │ ├── cmdoptions.py │ │ │ │ │ ├── command_context.py │ │ │ │ │ ├── main.py │ │ │ │ │ ├── main_parser.py │ │ │ │ │ ├── parser.py │ │ │ │ │ ├── progress_bars.py │ │ │ │ │ ├── req_command.py │ │ │ │ │ ├── spinners.py │ │ │ │ │ └── status_codes.py │ │ │ │ ├── commands │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── cache.cpython-38.pyc │ │ │ │ │ │ ├── check.cpython-38.pyc │ │ │ │ │ │ ├── completion.cpython-38.pyc │ │ │ │ │ │ ├── configuration.cpython-38.pyc │ │ │ │ │ │ ├── debug.cpython-38.pyc │ │ │ │ │ │ ├── download.cpython-38.pyc │ │ │ │ │ │ ├── freeze.cpython-38.pyc │ │ │ │ │ │ ├── hash.cpython-38.pyc │ │ │ │ │ │ ├── help.cpython-38.pyc │ │ │ │ │ │ ├── install.cpython-38.pyc │ │ │ │ │ │ ├── list.cpython-38.pyc │ │ │ │ │ │ ├── search.cpython-38.pyc │ │ │ │ │ │ ├── show.cpython-38.pyc │ │ │ │ │ │ ├── uninstall.cpython-38.pyc │ │ │ │ │ │ └── wheel.cpython-38.pyc │ │ │ │ │ ├── cache.py │ │ │ │ │ ├── check.py │ │ │ │ │ ├── completion.py │ │ │ │ │ ├── configuration.py │ │ │ │ │ ├── debug.py │ │ │ │ │ ├── download.py │ │ │ │ │ ├── freeze.py │ │ │ │ │ ├── hash.py │ │ │ │ │ ├── help.py │ │ │ │ │ ├── install.py │ │ │ │ │ ├── list.py │ │ │ │ │ ├── search.py │ │ │ │ │ ├── show.py │ │ │ │ │ ├── uninstall.py │ │ │ │ │ └── wheel.py │ │ │ │ ├── configuration.py │ │ │ │ ├── distributions │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ │ ├── installed.cpython-38.pyc │ │ │ │ │ │ ├── sdist.cpython-38.pyc │ │ │ │ │ │ └── wheel.cpython-38.pyc │ │ │ │ │ ├── base.py │ │ │ │ │ ├── installed.py │ │ │ │ │ ├── sdist.py │ │ │ │ │ └── wheel.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── index │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── collector.cpython-38.pyc │ │ │ │ │ │ └── package_finder.cpython-38.pyc │ │ │ │ │ ├── collector.py │ │ │ │ │ └── package_finder.py │ │ │ │ ├── legacy_resolve.py │ │ │ │ ├── locations.py │ │ │ │ ├── main.py │ │ │ │ ├── models │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── candidate.cpython-38.pyc │ │ │ │ │ │ ├── direct_url.cpython-38.pyc │ │ │ │ │ │ ├── format_control.cpython-38.pyc │ │ │ │ │ │ ├── index.cpython-38.pyc │ │ │ │ │ │ ├── link.cpython-38.pyc │ │ │ │ │ │ ├── scheme.cpython-38.pyc │ │ │ │ │ │ ├── search_scope.cpython-38.pyc │ │ │ │ │ │ ├── selection_prefs.cpython-38.pyc │ │ │ │ │ │ ├── target_python.cpython-38.pyc │ │ │ │ │ │ └── wheel.cpython-38.pyc │ │ │ │ │ ├── candidate.py │ │ │ │ │ ├── direct_url.py │ │ │ │ │ ├── format_control.py │ │ │ │ │ ├── index.py │ │ │ │ │ ├── link.py │ │ │ │ │ ├── scheme.py │ │ │ │ │ ├── search_scope.py │ │ │ │ │ ├── selection_prefs.py │ │ │ │ │ ├── target_python.py │ │ │ │ │ └── wheel.py │ │ │ │ ├── network │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── auth.cpython-38.pyc │ │ │ │ │ │ ├── cache.cpython-38.pyc │ │ │ │ │ │ ├── download.cpython-38.pyc │ │ │ │ │ │ ├── session.cpython-38.pyc │ │ │ │ │ │ ├── utils.cpython-38.pyc │ │ │ │ │ │ └── xmlrpc.cpython-38.pyc │ │ │ │ │ ├── auth.py │ │ │ │ │ ├── cache.py │ │ │ │ │ ├── download.py │ │ │ │ │ ├── session.py │ │ │ │ │ ├── utils.py │ │ │ │ │ └── xmlrpc.py │ │ │ │ ├── operations │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── check.cpython-38.pyc │ │ │ │ │ │ ├── freeze.cpython-38.pyc │ │ │ │ │ │ └── prepare.cpython-38.pyc │ │ │ │ │ ├── build │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ ├── metadata.cpython-38.pyc │ │ │ │ │ │ │ ├── metadata_legacy.cpython-38.pyc │ │ │ │ │ │ │ ├── wheel.cpython-38.pyc │ │ │ │ │ │ │ └── wheel_legacy.cpython-38.pyc │ │ │ │ │ │ ├── metadata.py │ │ │ │ │ │ ├── metadata_legacy.py │ │ │ │ │ │ ├── wheel.py │ │ │ │ │ │ └── wheel_legacy.py │ │ │ │ │ ├── check.py │ │ │ │ │ ├── freeze.py │ │ │ │ │ ├── install │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ ├── editable_legacy.cpython-38.pyc │ │ │ │ │ │ │ ├── legacy.cpython-38.pyc │ │ │ │ │ │ │ └── wheel.cpython-38.pyc │ │ │ │ │ │ ├── editable_legacy.py │ │ │ │ │ │ ├── legacy.py │ │ │ │ │ │ └── wheel.py │ │ │ │ │ └── prepare.py │ │ │ │ ├── pep425tags.py │ │ │ │ ├── pyproject.py │ │ │ │ ├── req │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── constructors.cpython-38.pyc │ │ │ │ │ │ ├── req_file.cpython-38.pyc │ │ │ │ │ │ ├── req_install.cpython-38.pyc │ │ │ │ │ │ ├── req_set.cpython-38.pyc │ │ │ │ │ │ ├── req_tracker.cpython-38.pyc │ │ │ │ │ │ └── req_uninstall.cpython-38.pyc │ │ │ │ │ ├── constructors.py │ │ │ │ │ ├── req_file.py │ │ │ │ │ ├── req_install.py │ │ │ │ │ ├── req_set.py │ │ │ │ │ ├── req_tracker.py │ │ │ │ │ └── req_uninstall.py │ │ │ │ ├── resolution │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ └── base.cpython-38.pyc │ │ │ │ │ ├── base.py │ │ │ │ │ ├── legacy │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── resolver.cpython-38.pyc │ │ │ │ │ │ └── resolver.py │ │ │ │ │ └── resolvelib │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ │ ├── candidates.cpython-38.pyc │ │ │ │ │ │ ├── factory.cpython-38.pyc │ │ │ │ │ │ ├── provider.cpython-38.pyc │ │ │ │ │ │ ├── requirements.cpython-38.pyc │ │ │ │ │ │ └── resolver.cpython-38.pyc │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── candidates.py │ │ │ │ │ │ ├── factory.py │ │ │ │ │ │ ├── provider.py │ │ │ │ │ │ ├── requirements.py │ │ │ │ │ │ └── resolver.py │ │ │ │ ├── self_outdated_check.py │ │ │ │ ├── utils │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── appdirs.cpython-38.pyc │ │ │ │ │ │ ├── compat.cpython-38.pyc │ │ │ │ │ │ ├── compatibility_tags.cpython-38.pyc │ │ │ │ │ │ ├── deprecation.cpython-38.pyc │ │ │ │ │ │ ├── direct_url_helpers.cpython-38.pyc │ │ │ │ │ │ ├── distutils_args.cpython-38.pyc │ │ │ │ │ │ ├── encoding.cpython-38.pyc │ │ │ │ │ │ ├── entrypoints.cpython-38.pyc │ │ │ │ │ │ ├── filesystem.cpython-38.pyc │ │ │ │ │ │ ├── filetypes.cpython-38.pyc │ │ │ │ │ │ ├── glibc.cpython-38.pyc │ │ │ │ │ │ ├── hashes.cpython-38.pyc │ │ │ │ │ │ ├── inject_securetransport.cpython-38.pyc │ │ │ │ │ │ ├── logging.cpython-38.pyc │ │ │ │ │ │ ├── marker_files.cpython-38.pyc │ │ │ │ │ │ ├── misc.cpython-38.pyc │ │ │ │ │ │ ├── models.cpython-38.pyc │ │ │ │ │ │ ├── packaging.cpython-38.pyc │ │ │ │ │ │ ├── pkg_resources.cpython-38.pyc │ │ │ │ │ │ ├── setuptools_build.cpython-38.pyc │ │ │ │ │ │ ├── subprocess.cpython-38.pyc │ │ │ │ │ │ ├── temp_dir.cpython-38.pyc │ │ │ │ │ │ ├── typing.cpython-38.pyc │ │ │ │ │ │ ├── ui.cpython-38.pyc │ │ │ │ │ │ ├── unpacking.cpython-38.pyc │ │ │ │ │ │ ├── urls.cpython-38.pyc │ │ │ │ │ │ ├── virtualenv.cpython-38.pyc │ │ │ │ │ │ └── wheel.cpython-38.pyc │ │ │ │ │ ├── appdirs.py │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── compatibility_tags.py │ │ │ │ │ ├── deprecation.py │ │ │ │ │ ├── direct_url_helpers.py │ │ │ │ │ ├── distutils_args.py │ │ │ │ │ ├── encoding.py │ │ │ │ │ ├── entrypoints.py │ │ │ │ │ ├── filesystem.py │ │ │ │ │ ├── filetypes.py │ │ │ │ │ ├── glibc.py │ │ │ │ │ ├── hashes.py │ │ │ │ │ ├── inject_securetransport.py │ │ │ │ │ ├── logging.py │ │ │ │ │ ├── marker_files.py │ │ │ │ │ ├── misc.py │ │ │ │ │ ├── models.py │ │ │ │ │ ├── packaging.py │ │ │ │ │ ├── pkg_resources.py │ │ │ │ │ ├── setuptools_build.py │ │ │ │ │ ├── subprocess.py │ │ │ │ │ ├── temp_dir.py │ │ │ │ │ ├── typing.py │ │ │ │ │ ├── ui.py │ │ │ │ │ ├── unpacking.py │ │ │ │ │ ├── urls.py │ │ │ │ │ ├── virtualenv.py │ │ │ │ │ └── wheel.py │ │ │ │ ├── vcs │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── bazaar.cpython-38.pyc │ │ │ │ │ │ ├── git.cpython-38.pyc │ │ │ │ │ │ ├── mercurial.cpython-38.pyc │ │ │ │ │ │ ├── subversion.cpython-38.pyc │ │ │ │ │ │ └── versioncontrol.cpython-38.pyc │ │ │ │ │ ├── bazaar.py │ │ │ │ │ ├── git.py │ │ │ │ │ ├── mercurial.py │ │ │ │ │ ├── subversion.py │ │ │ │ │ └── versioncontrol.py │ │ │ │ └── wheel_builder.py │ │ │ └── _vendor │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── appdirs.cpython-38.pyc │ │ │ │ ├── contextlib2.cpython-38.pyc │ │ │ │ ├── distro.cpython-38.pyc │ │ │ │ ├── ipaddress.cpython-38.pyc │ │ │ │ ├── pyparsing.cpython-38.pyc │ │ │ │ ├── retrying.cpython-38.pyc │ │ │ │ ├── six.cpython-38.pyc │ │ │ │ └── toml.cpython-38.pyc │ │ │ │ ├── appdirs.py │ │ │ │ ├── cachecontrol │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── _cmd.cpython-38.pyc │ │ │ │ │ ├── adapter.cpython-38.pyc │ │ │ │ │ ├── cache.cpython-38.pyc │ │ │ │ │ ├── compat.cpython-38.pyc │ │ │ │ │ ├── controller.cpython-38.pyc │ │ │ │ │ ├── filewrapper.cpython-38.pyc │ │ │ │ │ ├── heuristics.cpython-38.pyc │ │ │ │ │ ├── serialize.cpython-38.pyc │ │ │ │ │ └── wrapper.cpython-38.pyc │ │ │ │ ├── _cmd.py │ │ │ │ ├── adapter.py │ │ │ │ ├── cache.py │ │ │ │ ├── caches │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── file_cache.cpython-38.pyc │ │ │ │ │ │ └── redis_cache.cpython-38.pyc │ │ │ │ │ ├── file_cache.py │ │ │ │ │ └── redis_cache.py │ │ │ │ ├── compat.py │ │ │ │ ├── controller.py │ │ │ │ ├── filewrapper.py │ │ │ │ ├── heuristics.py │ │ │ │ ├── serialize.py │ │ │ │ └── wrapper.py │ │ │ │ ├── certifi │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── __main__.cpython-38.pyc │ │ │ │ │ └── core.cpython-38.pyc │ │ │ │ ├── cacert.pem │ │ │ │ └── core.py │ │ │ │ ├── chardet │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── big5freq.cpython-38.pyc │ │ │ │ │ ├── big5prober.cpython-38.pyc │ │ │ │ │ ├── chardistribution.cpython-38.pyc │ │ │ │ │ ├── charsetgroupprober.cpython-38.pyc │ │ │ │ │ ├── charsetprober.cpython-38.pyc │ │ │ │ │ ├── codingstatemachine.cpython-38.pyc │ │ │ │ │ ├── compat.cpython-38.pyc │ │ │ │ │ ├── cp949prober.cpython-38.pyc │ │ │ │ │ ├── enums.cpython-38.pyc │ │ │ │ │ ├── escprober.cpython-38.pyc │ │ │ │ │ ├── escsm.cpython-38.pyc │ │ │ │ │ ├── eucjpprober.cpython-38.pyc │ │ │ │ │ ├── euckrfreq.cpython-38.pyc │ │ │ │ │ ├── euckrprober.cpython-38.pyc │ │ │ │ │ ├── euctwfreq.cpython-38.pyc │ │ │ │ │ ├── euctwprober.cpython-38.pyc │ │ │ │ │ ├── gb2312freq.cpython-38.pyc │ │ │ │ │ ├── gb2312prober.cpython-38.pyc │ │ │ │ │ ├── hebrewprober.cpython-38.pyc │ │ │ │ │ ├── jisfreq.cpython-38.pyc │ │ │ │ │ ├── jpcntx.cpython-38.pyc │ │ │ │ │ ├── langbulgarianmodel.cpython-38.pyc │ │ │ │ │ ├── langcyrillicmodel.cpython-38.pyc │ │ │ │ │ ├── langgreekmodel.cpython-38.pyc │ │ │ │ │ ├── langhebrewmodel.cpython-38.pyc │ │ │ │ │ ├── langhungarianmodel.cpython-38.pyc │ │ │ │ │ ├── langthaimodel.cpython-38.pyc │ │ │ │ │ ├── langturkishmodel.cpython-38.pyc │ │ │ │ │ ├── latin1prober.cpython-38.pyc │ │ │ │ │ ├── mbcharsetprober.cpython-38.pyc │ │ │ │ │ ├── mbcsgroupprober.cpython-38.pyc │ │ │ │ │ ├── mbcssm.cpython-38.pyc │ │ │ │ │ ├── sbcharsetprober.cpython-38.pyc │ │ │ │ │ ├── sbcsgroupprober.cpython-38.pyc │ │ │ │ │ ├── sjisprober.cpython-38.pyc │ │ │ │ │ ├── universaldetector.cpython-38.pyc │ │ │ │ │ ├── utf8prober.cpython-38.pyc │ │ │ │ │ └── version.cpython-38.pyc │ │ │ │ ├── big5freq.py │ │ │ │ ├── big5prober.py │ │ │ │ ├── chardistribution.py │ │ │ │ ├── charsetgroupprober.py │ │ │ │ ├── charsetprober.py │ │ │ │ ├── cli │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ └── chardetect.cpython-38.pyc │ │ │ │ │ └── chardetect.py │ │ │ │ ├── codingstatemachine.py │ │ │ │ ├── compat.py │ │ │ │ ├── cp949prober.py │ │ │ │ ├── enums.py │ │ │ │ ├── escprober.py │ │ │ │ ├── escsm.py │ │ │ │ ├── eucjpprober.py │ │ │ │ ├── euckrfreq.py │ │ │ │ ├── euckrprober.py │ │ │ │ ├── euctwfreq.py │ │ │ │ ├── euctwprober.py │ │ │ │ ├── gb2312freq.py │ │ │ │ ├── gb2312prober.py │ │ │ │ ├── hebrewprober.py │ │ │ │ ├── jisfreq.py │ │ │ │ ├── jpcntx.py │ │ │ │ ├── langbulgarianmodel.py │ │ │ │ ├── langcyrillicmodel.py │ │ │ │ ├── langgreekmodel.py │ │ │ │ ├── langhebrewmodel.py │ │ │ │ ├── langhungarianmodel.py │ │ │ │ ├── langthaimodel.py │ │ │ │ ├── langturkishmodel.py │ │ │ │ ├── latin1prober.py │ │ │ │ ├── mbcharsetprober.py │ │ │ │ ├── mbcsgroupprober.py │ │ │ │ ├── mbcssm.py │ │ │ │ ├── sbcharsetprober.py │ │ │ │ ├── sbcsgroupprober.py │ │ │ │ ├── sjisprober.py │ │ │ │ ├── universaldetector.py │ │ │ │ ├── utf8prober.py │ │ │ │ └── version.py │ │ │ │ ├── colorama │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── ansi.cpython-38.pyc │ │ │ │ │ ├── ansitowin32.cpython-38.pyc │ │ │ │ │ ├── initialise.cpython-38.pyc │ │ │ │ │ ├── win32.cpython-38.pyc │ │ │ │ │ └── winterm.cpython-38.pyc │ │ │ │ ├── ansi.py │ │ │ │ ├── ansitowin32.py │ │ │ │ ├── initialise.py │ │ │ │ ├── win32.py │ │ │ │ └── winterm.py │ │ │ │ ├── contextlib2.py │ │ │ │ ├── distlib │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── compat.cpython-38.pyc │ │ │ │ │ ├── database.cpython-38.pyc │ │ │ │ │ ├── index.cpython-38.pyc │ │ │ │ │ ├── locators.cpython-38.pyc │ │ │ │ │ ├── manifest.cpython-38.pyc │ │ │ │ │ ├── markers.cpython-38.pyc │ │ │ │ │ ├── metadata.cpython-38.pyc │ │ │ │ │ ├── resources.cpython-38.pyc │ │ │ │ │ ├── scripts.cpython-38.pyc │ │ │ │ │ ├── util.cpython-38.pyc │ │ │ │ │ ├── version.cpython-38.pyc │ │ │ │ │ └── wheel.cpython-38.pyc │ │ │ │ ├── _backport │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── misc.cpython-38.pyc │ │ │ │ │ │ ├── shutil.cpython-38.pyc │ │ │ │ │ │ ├── sysconfig.cpython-38.pyc │ │ │ │ │ │ └── tarfile.cpython-38.pyc │ │ │ │ │ ├── misc.py │ │ │ │ │ ├── shutil.py │ │ │ │ │ ├── sysconfig.cfg │ │ │ │ │ ├── sysconfig.py │ │ │ │ │ └── tarfile.py │ │ │ │ ├── compat.py │ │ │ │ ├── database.py │ │ │ │ ├── index.py │ │ │ │ ├── locators.py │ │ │ │ ├── manifest.py │ │ │ │ ├── markers.py │ │ │ │ ├── metadata.py │ │ │ │ ├── resources.py │ │ │ │ ├── scripts.py │ │ │ │ ├── t32.exe │ │ │ │ ├── t64.exe │ │ │ │ ├── util.py │ │ │ │ ├── version.py │ │ │ │ ├── w32.exe │ │ │ │ ├── w64.exe │ │ │ │ └── wheel.py │ │ │ │ ├── distro.py │ │ │ │ ├── html5lib │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── _ihatexml.cpython-38.pyc │ │ │ │ │ ├── _inputstream.cpython-38.pyc │ │ │ │ │ ├── _tokenizer.cpython-38.pyc │ │ │ │ │ ├── _utils.cpython-38.pyc │ │ │ │ │ ├── constants.cpython-38.pyc │ │ │ │ │ ├── html5parser.cpython-38.pyc │ │ │ │ │ └── serializer.cpython-38.pyc │ │ │ │ ├── _ihatexml.py │ │ │ │ ├── _inputstream.py │ │ │ │ ├── _tokenizer.py │ │ │ │ ├── _trie │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── _base.cpython-38.pyc │ │ │ │ │ │ ├── datrie.cpython-38.pyc │ │ │ │ │ │ └── py.cpython-38.pyc │ │ │ │ │ ├── _base.py │ │ │ │ │ ├── datrie.py │ │ │ │ │ └── py.py │ │ │ │ ├── _utils.py │ │ │ │ ├── constants.py │ │ │ │ ├── filters │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── alphabeticalattributes.cpython-38.pyc │ │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ │ ├── inject_meta_charset.cpython-38.pyc │ │ │ │ │ │ ├── lint.cpython-38.pyc │ │ │ │ │ │ ├── optionaltags.cpython-38.pyc │ │ │ │ │ │ ├── sanitizer.cpython-38.pyc │ │ │ │ │ │ └── whitespace.cpython-38.pyc │ │ │ │ │ ├── alphabeticalattributes.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── inject_meta_charset.py │ │ │ │ │ ├── lint.py │ │ │ │ │ ├── optionaltags.py │ │ │ │ │ ├── sanitizer.py │ │ │ │ │ └── whitespace.py │ │ │ │ ├── html5parser.py │ │ │ │ ├── serializer.py │ │ │ │ ├── treeadapters │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── genshi.cpython-38.pyc │ │ │ │ │ │ └── sax.cpython-38.pyc │ │ │ │ │ ├── genshi.py │ │ │ │ │ └── sax.py │ │ │ │ ├── treebuilders │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ │ ├── dom.cpython-38.pyc │ │ │ │ │ │ ├── etree.cpython-38.pyc │ │ │ │ │ │ └── etree_lxml.cpython-38.pyc │ │ │ │ │ ├── base.py │ │ │ │ │ ├── dom.py │ │ │ │ │ ├── etree.py │ │ │ │ │ └── etree_lxml.py │ │ │ │ └── treewalkers │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ ├── dom.cpython-38.pyc │ │ │ │ │ ├── etree.cpython-38.pyc │ │ │ │ │ ├── etree_lxml.cpython-38.pyc │ │ │ │ │ └── genshi.cpython-38.pyc │ │ │ │ │ ├── base.py │ │ │ │ │ ├── dom.py │ │ │ │ │ ├── etree.py │ │ │ │ │ ├── etree_lxml.py │ │ │ │ │ └── genshi.py │ │ │ │ ├── idna │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── codec.cpython-38.pyc │ │ │ │ │ ├── compat.cpython-38.pyc │ │ │ │ │ ├── core.cpython-38.pyc │ │ │ │ │ ├── idnadata.cpython-38.pyc │ │ │ │ │ ├── intranges.cpython-38.pyc │ │ │ │ │ ├── package_data.cpython-38.pyc │ │ │ │ │ └── uts46data.cpython-38.pyc │ │ │ │ ├── codec.py │ │ │ │ ├── compat.py │ │ │ │ ├── core.py │ │ │ │ ├── idnadata.py │ │ │ │ ├── intranges.py │ │ │ │ ├── package_data.py │ │ │ │ └── uts46data.py │ │ │ │ ├── ipaddress.py │ │ │ │ ├── msgpack │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── _version.cpython-38.pyc │ │ │ │ │ ├── exceptions.cpython-38.pyc │ │ │ │ │ ├── ext.cpython-38.pyc │ │ │ │ │ └── fallback.cpython-38.pyc │ │ │ │ ├── _version.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── ext.py │ │ │ │ └── fallback.py │ │ │ │ ├── packaging │ │ │ │ ├── __about__.py │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __about__.cpython-38.pyc │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── _compat.cpython-38.pyc │ │ │ │ │ ├── _structures.cpython-38.pyc │ │ │ │ │ ├── _typing.cpython-38.pyc │ │ │ │ │ ├── markers.cpython-38.pyc │ │ │ │ │ ├── requirements.cpython-38.pyc │ │ │ │ │ ├── specifiers.cpython-38.pyc │ │ │ │ │ ├── tags.cpython-38.pyc │ │ │ │ │ ├── utils.cpython-38.pyc │ │ │ │ │ └── version.cpython-38.pyc │ │ │ │ ├── _compat.py │ │ │ │ ├── _structures.py │ │ │ │ ├── _typing.py │ │ │ │ ├── markers.py │ │ │ │ ├── requirements.py │ │ │ │ ├── specifiers.py │ │ │ │ ├── tags.py │ │ │ │ ├── utils.py │ │ │ │ └── version.py │ │ │ │ ├── pep517 │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── _in_process.cpython-38.pyc │ │ │ │ │ ├── build.cpython-38.pyc │ │ │ │ │ ├── check.cpython-38.pyc │ │ │ │ │ ├── colorlog.cpython-38.pyc │ │ │ │ │ ├── compat.cpython-38.pyc │ │ │ │ │ ├── dirtools.cpython-38.pyc │ │ │ │ │ ├── envbuild.cpython-38.pyc │ │ │ │ │ ├── meta.cpython-38.pyc │ │ │ │ │ └── wrappers.cpython-38.pyc │ │ │ │ ├── _in_process.py │ │ │ │ ├── build.py │ │ │ │ ├── check.py │ │ │ │ ├── colorlog.py │ │ │ │ ├── compat.py │ │ │ │ ├── dirtools.py │ │ │ │ ├── envbuild.py │ │ │ │ ├── meta.py │ │ │ │ └── wrappers.py │ │ │ │ ├── pkg_resources │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ └── py31compat.cpython-38.pyc │ │ │ │ └── py31compat.py │ │ │ │ ├── progress │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── bar.cpython-38.pyc │ │ │ │ │ ├── counter.cpython-38.pyc │ │ │ │ │ └── spinner.cpython-38.pyc │ │ │ │ ├── bar.py │ │ │ │ ├── counter.py │ │ │ │ └── spinner.py │ │ │ │ ├── pyparsing.py │ │ │ │ ├── pytoml │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── core.cpython-38.pyc │ │ │ │ │ ├── parser.cpython-38.pyc │ │ │ │ │ ├── test.cpython-38.pyc │ │ │ │ │ ├── utils.cpython-38.pyc │ │ │ │ │ └── writer.cpython-38.pyc │ │ │ │ ├── core.py │ │ │ │ ├── parser.py │ │ │ │ ├── test.py │ │ │ │ ├── utils.py │ │ │ │ └── writer.py │ │ │ │ ├── requests │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── __version__.cpython-38.pyc │ │ │ │ │ ├── _internal_utils.cpython-38.pyc │ │ │ │ │ ├── adapters.cpython-38.pyc │ │ │ │ │ ├── api.cpython-38.pyc │ │ │ │ │ ├── auth.cpython-38.pyc │ │ │ │ │ ├── certs.cpython-38.pyc │ │ │ │ │ ├── compat.cpython-38.pyc │ │ │ │ │ ├── cookies.cpython-38.pyc │ │ │ │ │ ├── exceptions.cpython-38.pyc │ │ │ │ │ ├── help.cpython-38.pyc │ │ │ │ │ ├── hooks.cpython-38.pyc │ │ │ │ │ ├── models.cpython-38.pyc │ │ │ │ │ ├── packages.cpython-38.pyc │ │ │ │ │ ├── sessions.cpython-38.pyc │ │ │ │ │ ├── status_codes.cpython-38.pyc │ │ │ │ │ ├── structures.cpython-38.pyc │ │ │ │ │ └── utils.cpython-38.pyc │ │ │ │ ├── __version__.py │ │ │ │ ├── _internal_utils.py │ │ │ │ ├── adapters.py │ │ │ │ ├── api.py │ │ │ │ ├── auth.py │ │ │ │ ├── certs.py │ │ │ │ ├── compat.py │ │ │ │ ├── cookies.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── help.py │ │ │ │ ├── hooks.py │ │ │ │ ├── models.py │ │ │ │ ├── packages.py │ │ │ │ ├── sessions.py │ │ │ │ ├── status_codes.py │ │ │ │ ├── structures.py │ │ │ │ └── utils.py │ │ │ │ ├── resolvelib │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── providers.cpython-38.pyc │ │ │ │ │ ├── reporters.cpython-38.pyc │ │ │ │ │ ├── resolvers.cpython-38.pyc │ │ │ │ │ └── structs.cpython-38.pyc │ │ │ │ ├── providers.py │ │ │ │ ├── reporters.py │ │ │ │ ├── resolvers.py │ │ │ │ └── structs.py │ │ │ │ ├── retrying.py │ │ │ │ ├── six.py │ │ │ │ ├── toml.py │ │ │ │ ├── toml │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── decoder.cpython-38.pyc │ │ │ │ │ ├── encoder.cpython-38.pyc │ │ │ │ │ ├── ordered.cpython-38.pyc │ │ │ │ │ └── tz.cpython-38.pyc │ │ │ │ ├── decoder.py │ │ │ │ ├── encoder.py │ │ │ │ ├── ordered.py │ │ │ │ └── tz.py │ │ │ │ ├── urllib3 │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── _collections.cpython-38.pyc │ │ │ │ │ ├── connection.cpython-38.pyc │ │ │ │ │ ├── connectionpool.cpython-38.pyc │ │ │ │ │ ├── exceptions.cpython-38.pyc │ │ │ │ │ ├── fields.cpython-38.pyc │ │ │ │ │ ├── filepost.cpython-38.pyc │ │ │ │ │ ├── poolmanager.cpython-38.pyc │ │ │ │ │ ├── request.cpython-38.pyc │ │ │ │ │ └── response.cpython-38.pyc │ │ │ │ ├── _collections.py │ │ │ │ ├── connection.py │ │ │ │ ├── connectionpool.py │ │ │ │ ├── contrib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── _appengine_environ.cpython-38.pyc │ │ │ │ │ │ ├── appengine.cpython-38.pyc │ │ │ │ │ │ ├── ntlmpool.cpython-38.pyc │ │ │ │ │ │ ├── pyopenssl.cpython-38.pyc │ │ │ │ │ │ ├── securetransport.cpython-38.pyc │ │ │ │ │ │ └── socks.cpython-38.pyc │ │ │ │ │ ├── _appengine_environ.py │ │ │ │ │ ├── _securetransport │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ ├── bindings.cpython-38.pyc │ │ │ │ │ │ │ └── low_level.cpython-38.pyc │ │ │ │ │ │ ├── bindings.py │ │ │ │ │ │ └── low_level.py │ │ │ │ │ ├── appengine.py │ │ │ │ │ ├── ntlmpool.py │ │ │ │ │ ├── pyopenssl.py │ │ │ │ │ ├── securetransport.py │ │ │ │ │ └── socks.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── fields.py │ │ │ │ ├── filepost.py │ │ │ │ ├── packages │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ └── six.cpython-38.pyc │ │ │ │ │ ├── backports │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── makefile.cpython-38.pyc │ │ │ │ │ │ └── makefile.py │ │ │ │ │ ├── six.py │ │ │ │ │ └── ssl_match_hostname │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ └── _implementation.cpython-38.pyc │ │ │ │ │ │ └── _implementation.py │ │ │ │ ├── poolmanager.py │ │ │ │ ├── request.py │ │ │ │ ├── response.py │ │ │ │ └── util │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── connection.cpython-38.pyc │ │ │ │ │ ├── queue.cpython-38.pyc │ │ │ │ │ ├── request.cpython-38.pyc │ │ │ │ │ ├── response.cpython-38.pyc │ │ │ │ │ ├── retry.cpython-38.pyc │ │ │ │ │ ├── ssl_.cpython-38.pyc │ │ │ │ │ ├── timeout.cpython-38.pyc │ │ │ │ │ ├── url.cpython-38.pyc │ │ │ │ │ └── wait.cpython-38.pyc │ │ │ │ │ ├── connection.py │ │ │ │ │ ├── queue.py │ │ │ │ │ ├── request.py │ │ │ │ │ ├── response.py │ │ │ │ │ ├── retry.py │ │ │ │ │ ├── ssl_.py │ │ │ │ │ ├── timeout.py │ │ │ │ │ ├── url.py │ │ │ │ │ └── wait.py │ │ │ │ ├── vendor.txt │ │ │ │ └── webencodings │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── labels.cpython-38.pyc │ │ │ │ ├── mklabels.cpython-38.pyc │ │ │ │ ├── tests.cpython-38.pyc │ │ │ │ └── x_user_defined.cpython-38.pyc │ │ │ │ ├── labels.py │ │ │ │ ├── mklabels.py │ │ │ │ ├── tests.py │ │ │ │ └── x_user_defined.py │ │ ├── pkg_resources │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── py2_warn.cpython-38.pyc │ │ │ │ └── py31compat.cpython-38.pyc │ │ │ ├── _vendor │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── appdirs.cpython-38.pyc │ │ │ │ │ ├── pyparsing.cpython-38.pyc │ │ │ │ │ └── six.cpython-38.pyc │ │ │ │ ├── appdirs.py │ │ │ │ ├── packaging │ │ │ │ │ ├── __about__.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __about__.cpython-38.pyc │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── _compat.cpython-38.pyc │ │ │ │ │ │ ├── _structures.cpython-38.pyc │ │ │ │ │ │ ├── markers.cpython-38.pyc │ │ │ │ │ │ ├── requirements.cpython-38.pyc │ │ │ │ │ │ ├── specifiers.cpython-38.pyc │ │ │ │ │ │ ├── utils.cpython-38.pyc │ │ │ │ │ │ └── version.cpython-38.pyc │ │ │ │ │ ├── _compat.py │ │ │ │ │ ├── _structures.py │ │ │ │ │ ├── markers.py │ │ │ │ │ ├── requirements.py │ │ │ │ │ ├── specifiers.py │ │ │ │ │ ├── utils.py │ │ │ │ │ └── version.py │ │ │ │ ├── pyparsing.py │ │ │ │ └── six.py │ │ │ ├── extern │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ └── __init__.cpython-38.pyc │ │ │ ├── py2_warn.py │ │ │ └── py31compat.py │ │ ├── pytz-2019.3.dist-info │ │ │ ├── DESCRIPTION.rst │ │ │ ├── INSTALLER │ │ │ ├── LICENSE.txt │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── metadata.json │ │ │ ├── top_level.txt │ │ │ └── zip-safe │ │ ├── pytz │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── exceptions.cpython-38.pyc │ │ │ │ ├── lazy.cpython-38.pyc │ │ │ │ ├── reference.cpython-38.pyc │ │ │ │ ├── tzfile.cpython-38.pyc │ │ │ │ └── tzinfo.cpython-38.pyc │ │ │ ├── exceptions.py │ │ │ ├── lazy.py │ │ │ ├── reference.py │ │ │ ├── tzfile.py │ │ │ ├── tzinfo.py │ │ │ └── zoneinfo │ │ │ │ ├── Africa │ │ │ │ ├── Abidjan │ │ │ │ ├── Accra │ │ │ │ ├── Addis_Ababa │ │ │ │ ├── Algiers │ │ │ │ ├── Asmara │ │ │ │ ├── Asmera │ │ │ │ ├── Bamako │ │ │ │ ├── Bangui │ │ │ │ ├── Banjul │ │ │ │ ├── Bissau │ │ │ │ ├── Blantyre │ │ │ │ ├── Brazzaville │ │ │ │ ├── Bujumbura │ │ │ │ ├── Cairo │ │ │ │ ├── Casablanca │ │ │ │ ├── Ceuta │ │ │ │ ├── Conakry │ │ │ │ ├── Dakar │ │ │ │ ├── Dar_es_Salaam │ │ │ │ ├── Djibouti │ │ │ │ ├── Douala │ │ │ │ ├── El_Aaiun │ │ │ │ ├── Freetown │ │ │ │ ├── Gaborone │ │ │ │ ├── Harare │ │ │ │ ├── Johannesburg │ │ │ │ ├── Juba │ │ │ │ ├── Kampala │ │ │ │ ├── Khartoum │ │ │ │ ├── Kigali │ │ │ │ ├── Kinshasa │ │ │ │ ├── Lagos │ │ │ │ ├── Libreville │ │ │ │ ├── Lome │ │ │ │ ├── Luanda │ │ │ │ ├── Lubumbashi │ │ │ │ ├── Lusaka │ │ │ │ ├── Malabo │ │ │ │ ├── Maputo │ │ │ │ ├── Maseru │ │ │ │ ├── Mbabane │ │ │ │ ├── Mogadishu │ │ │ │ ├── Monrovia │ │ │ │ ├── Nairobi │ │ │ │ ├── Ndjamena │ │ │ │ ├── Niamey │ │ │ │ ├── Nouakchott │ │ │ │ ├── Ouagadougou │ │ │ │ ├── Porto-Novo │ │ │ │ ├── Sao_Tome │ │ │ │ ├── Timbuktu │ │ │ │ ├── Tripoli │ │ │ │ ├── Tunis │ │ │ │ └── Windhoek │ │ │ │ ├── America │ │ │ │ ├── Adak │ │ │ │ ├── Anchorage │ │ │ │ ├── Anguilla │ │ │ │ ├── Antigua │ │ │ │ ├── Araguaina │ │ │ │ ├── Argentina │ │ │ │ │ ├── Buenos_Aires │ │ │ │ │ ├── Catamarca │ │ │ │ │ ├── ComodRivadavia │ │ │ │ │ ├── Cordoba │ │ │ │ │ ├── Jujuy │ │ │ │ │ ├── La_Rioja │ │ │ │ │ ├── Mendoza │ │ │ │ │ ├── Rio_Gallegos │ │ │ │ │ ├── Salta │ │ │ │ │ ├── San_Juan │ │ │ │ │ ├── San_Luis │ │ │ │ │ ├── Tucuman │ │ │ │ │ └── Ushuaia │ │ │ │ ├── Aruba │ │ │ │ ├── Asuncion │ │ │ │ ├── Atikokan │ │ │ │ ├── Atka │ │ │ │ ├── Bahia │ │ │ │ ├── Bahia_Banderas │ │ │ │ ├── Barbados │ │ │ │ ├── Belem │ │ │ │ ├── Belize │ │ │ │ ├── Blanc-Sablon │ │ │ │ ├── Boa_Vista │ │ │ │ ├── Bogota │ │ │ │ ├── Boise │ │ │ │ ├── Buenos_Aires │ │ │ │ ├── Cambridge_Bay │ │ │ │ ├── Campo_Grande │ │ │ │ ├── Cancun │ │ │ │ ├── Caracas │ │ │ │ ├── Catamarca │ │ │ │ ├── Cayenne │ │ │ │ ├── Cayman │ │ │ │ ├── Chicago │ │ │ │ ├── Chihuahua │ │ │ │ ├── Coral_Harbour │ │ │ │ ├── Cordoba │ │ │ │ ├── Costa_Rica │ │ │ │ ├── Creston │ │ │ │ ├── Cuiaba │ │ │ │ ├── Curacao │ │ │ │ ├── Danmarkshavn │ │ │ │ ├── Dawson │ │ │ │ ├── Dawson_Creek │ │ │ │ ├── Denver │ │ │ │ ├── Detroit │ │ │ │ ├── Dominica │ │ │ │ ├── Edmonton │ │ │ │ ├── Eirunepe │ │ │ │ ├── El_Salvador │ │ │ │ ├── Ensenada │ │ │ │ ├── Fort_Nelson │ │ │ │ ├── Fort_Wayne │ │ │ │ ├── Fortaleza │ │ │ │ ├── Glace_Bay │ │ │ │ ├── Godthab │ │ │ │ ├── Goose_Bay │ │ │ │ ├── Grand_Turk │ │ │ │ ├── Grenada │ │ │ │ ├── Guadeloupe │ │ │ │ ├── Guatemala │ │ │ │ ├── Guayaquil │ │ │ │ ├── Guyana │ │ │ │ ├── Halifax │ │ │ │ ├── Havana │ │ │ │ ├── Hermosillo │ │ │ │ ├── Indiana │ │ │ │ │ ├── Indianapolis │ │ │ │ │ ├── Knox │ │ │ │ │ ├── Marengo │ │ │ │ │ ├── Petersburg │ │ │ │ │ ├── Tell_City │ │ │ │ │ ├── Vevay │ │ │ │ │ ├── Vincennes │ │ │ │ │ └── Winamac │ │ │ │ ├── Indianapolis │ │ │ │ ├── Inuvik │ │ │ │ ├── Iqaluit │ │ │ │ ├── Jamaica │ │ │ │ ├── Jujuy │ │ │ │ ├── Juneau │ │ │ │ ├── Kentucky │ │ │ │ │ ├── Louisville │ │ │ │ │ └── Monticello │ │ │ │ ├── Knox_IN │ │ │ │ ├── Kralendijk │ │ │ │ ├── La_Paz │ │ │ │ ├── Lima │ │ │ │ ├── Los_Angeles │ │ │ │ ├── Louisville │ │ │ │ ├── Lower_Princes │ │ │ │ ├── Maceio │ │ │ │ ├── Managua │ │ │ │ ├── Manaus │ │ │ │ ├── Marigot │ │ │ │ ├── Martinique │ │ │ │ ├── Matamoros │ │ │ │ ├── Mazatlan │ │ │ │ ├── Mendoza │ │ │ │ ├── Menominee │ │ │ │ ├── Merida │ │ │ │ ├── Metlakatla │ │ │ │ ├── Mexico_City │ │ │ │ ├── Miquelon │ │ │ │ ├── Moncton │ │ │ │ ├── Monterrey │ │ │ │ ├── Montevideo │ │ │ │ ├── Montreal │ │ │ │ ├── Montserrat │ │ │ │ ├── Nassau │ │ │ │ ├── New_York │ │ │ │ ├── Nipigon │ │ │ │ ├── Nome │ │ │ │ ├── Noronha │ │ │ │ ├── North_Dakota │ │ │ │ │ ├── Beulah │ │ │ │ │ ├── Center │ │ │ │ │ └── New_Salem │ │ │ │ ├── Ojinaga │ │ │ │ ├── Panama │ │ │ │ ├── Pangnirtung │ │ │ │ ├── Paramaribo │ │ │ │ ├── Phoenix │ │ │ │ ├── Port-au-Prince │ │ │ │ ├── Port_of_Spain │ │ │ │ ├── Porto_Acre │ │ │ │ ├── Porto_Velho │ │ │ │ ├── Puerto_Rico │ │ │ │ ├── Punta_Arenas │ │ │ │ ├── Rainy_River │ │ │ │ ├── Rankin_Inlet │ │ │ │ ├── Recife │ │ │ │ ├── Regina │ │ │ │ ├── Resolute │ │ │ │ ├── Rio_Branco │ │ │ │ ├── Rosario │ │ │ │ ├── Santa_Isabel │ │ │ │ ├── Santarem │ │ │ │ ├── Santiago │ │ │ │ ├── Santo_Domingo │ │ │ │ ├── Sao_Paulo │ │ │ │ ├── Scoresbysund │ │ │ │ ├── Shiprock │ │ │ │ ├── Sitka │ │ │ │ ├── St_Barthelemy │ │ │ │ ├── St_Johns │ │ │ │ ├── St_Kitts │ │ │ │ ├── St_Lucia │ │ │ │ ├── St_Thomas │ │ │ │ ├── St_Vincent │ │ │ │ ├── Swift_Current │ │ │ │ ├── Tegucigalpa │ │ │ │ ├── Thule │ │ │ │ ├── Thunder_Bay │ │ │ │ ├── Tijuana │ │ │ │ ├── Toronto │ │ │ │ ├── Tortola │ │ │ │ ├── Vancouver │ │ │ │ ├── Virgin │ │ │ │ ├── Whitehorse │ │ │ │ ├── Winnipeg │ │ │ │ ├── Yakutat │ │ │ │ └── Yellowknife │ │ │ │ ├── Antarctica │ │ │ │ ├── Casey │ │ │ │ ├── Davis │ │ │ │ ├── DumontDUrville │ │ │ │ ├── Macquarie │ │ │ │ ├── Mawson │ │ │ │ ├── McMurdo │ │ │ │ ├── Palmer │ │ │ │ ├── Rothera │ │ │ │ ├── South_Pole │ │ │ │ ├── Syowa │ │ │ │ ├── Troll │ │ │ │ └── Vostok │ │ │ │ ├── Arctic │ │ │ │ └── Longyearbyen │ │ │ │ ├── Asia │ │ │ │ ├── Aden │ │ │ │ ├── Almaty │ │ │ │ ├── Amman │ │ │ │ ├── Anadyr │ │ │ │ ├── Aqtau │ │ │ │ ├── Aqtobe │ │ │ │ ├── Ashgabat │ │ │ │ ├── Ashkhabad │ │ │ │ ├── Atyrau │ │ │ │ ├── Baghdad │ │ │ │ ├── Bahrain │ │ │ │ ├── Baku │ │ │ │ ├── Bangkok │ │ │ │ ├── Barnaul │ │ │ │ ├── Beirut │ │ │ │ ├── Bishkek │ │ │ │ ├── Brunei │ │ │ │ ├── Calcutta │ │ │ │ ├── Chita │ │ │ │ ├── Choibalsan │ │ │ │ ├── Chongqing │ │ │ │ ├── Chungking │ │ │ │ ├── Colombo │ │ │ │ ├── Dacca │ │ │ │ ├── Damascus │ │ │ │ ├── Dhaka │ │ │ │ ├── Dili │ │ │ │ ├── Dubai │ │ │ │ ├── Dushanbe │ │ │ │ ├── Famagusta │ │ │ │ ├── Gaza │ │ │ │ ├── Harbin │ │ │ │ ├── Hebron │ │ │ │ ├── Ho_Chi_Minh │ │ │ │ ├── Hong_Kong │ │ │ │ ├── Hovd │ │ │ │ ├── Irkutsk │ │ │ │ ├── Istanbul │ │ │ │ ├── Jakarta │ │ │ │ ├── Jayapura │ │ │ │ ├── Jerusalem │ │ │ │ ├── Kabul │ │ │ │ ├── Kamchatka │ │ │ │ ├── Karachi │ │ │ │ ├── Kashgar │ │ │ │ ├── Kathmandu │ │ │ │ ├── Katmandu │ │ │ │ ├── Khandyga │ │ │ │ ├── Kolkata │ │ │ │ ├── Krasnoyarsk │ │ │ │ ├── Kuala_Lumpur │ │ │ │ ├── Kuching │ │ │ │ ├── Kuwait │ │ │ │ ├── Macao │ │ │ │ ├── Macau │ │ │ │ ├── Magadan │ │ │ │ ├── Makassar │ │ │ │ ├── Manila │ │ │ │ ├── Muscat │ │ │ │ ├── Nicosia │ │ │ │ ├── Novokuznetsk │ │ │ │ ├── Novosibirsk │ │ │ │ ├── Omsk │ │ │ │ ├── Oral │ │ │ │ ├── Phnom_Penh │ │ │ │ ├── Pontianak │ │ │ │ ├── Pyongyang │ │ │ │ ├── Qatar │ │ │ │ ├── Qostanay │ │ │ │ ├── Qyzylorda │ │ │ │ ├── Rangoon │ │ │ │ ├── Riyadh │ │ │ │ ├── Saigon │ │ │ │ ├── Sakhalin │ │ │ │ ├── Samarkand │ │ │ │ ├── Seoul │ │ │ │ ├── Shanghai │ │ │ │ ├── Singapore │ │ │ │ ├── Srednekolymsk │ │ │ │ ├── Taipei │ │ │ │ ├── Tashkent │ │ │ │ ├── Tbilisi │ │ │ │ ├── Tehran │ │ │ │ ├── Tel_Aviv │ │ │ │ ├── Thimbu │ │ │ │ ├── Thimphu │ │ │ │ ├── Tokyo │ │ │ │ ├── Tomsk │ │ │ │ ├── Ujung_Pandang │ │ │ │ ├── Ulaanbaatar │ │ │ │ ├── Ulan_Bator │ │ │ │ ├── Urumqi │ │ │ │ ├── Ust-Nera │ │ │ │ ├── Vientiane │ │ │ │ ├── Vladivostok │ │ │ │ ├── Yakutsk │ │ │ │ ├── Yangon │ │ │ │ ├── Yekaterinburg │ │ │ │ └── Yerevan │ │ │ │ ├── Atlantic │ │ │ │ ├── Azores │ │ │ │ ├── Bermuda │ │ │ │ ├── Canary │ │ │ │ ├── Cape_Verde │ │ │ │ ├── Faeroe │ │ │ │ ├── Faroe │ │ │ │ ├── Jan_Mayen │ │ │ │ ├── Madeira │ │ │ │ ├── Reykjavik │ │ │ │ ├── South_Georgia │ │ │ │ ├── St_Helena │ │ │ │ └── Stanley │ │ │ │ ├── Australia │ │ │ │ ├── ACT │ │ │ │ ├── Adelaide │ │ │ │ ├── Brisbane │ │ │ │ ├── Broken_Hill │ │ │ │ ├── Canberra │ │ │ │ ├── Currie │ │ │ │ ├── Darwin │ │ │ │ ├── Eucla │ │ │ │ ├── Hobart │ │ │ │ ├── LHI │ │ │ │ ├── Lindeman │ │ │ │ ├── Lord_Howe │ │ │ │ ├── Melbourne │ │ │ │ ├── NSW │ │ │ │ ├── North │ │ │ │ ├── Perth │ │ │ │ ├── Queensland │ │ │ │ ├── South │ │ │ │ ├── Sydney │ │ │ │ ├── Tasmania │ │ │ │ ├── Victoria │ │ │ │ ├── West │ │ │ │ └── Yancowinna │ │ │ │ ├── Brazil │ │ │ │ ├── Acre │ │ │ │ ├── DeNoronha │ │ │ │ ├── East │ │ │ │ └── West │ │ │ │ ├── CET │ │ │ │ ├── CST6CDT │ │ │ │ ├── Canada │ │ │ │ ├── Atlantic │ │ │ │ ├── Central │ │ │ │ ├── Eastern │ │ │ │ ├── Mountain │ │ │ │ ├── Newfoundland │ │ │ │ ├── Pacific │ │ │ │ ├── Saskatchewan │ │ │ │ └── Yukon │ │ │ │ ├── Chile │ │ │ │ ├── Continental │ │ │ │ └── EasterIsland │ │ │ │ ├── Cuba │ │ │ │ ├── EET │ │ │ │ ├── EST │ │ │ │ ├── EST5EDT │ │ │ │ ├── Egypt │ │ │ │ ├── Eire │ │ │ │ ├── Etc │ │ │ │ ├── GMT │ │ │ │ ├── GMT+0 │ │ │ │ ├── GMT+1 │ │ │ │ ├── GMT+10 │ │ │ │ ├── GMT+11 │ │ │ │ ├── GMT+12 │ │ │ │ ├── GMT+2 │ │ │ │ ├── GMT+3 │ │ │ │ ├── GMT+4 │ │ │ │ ├── GMT+5 │ │ │ │ ├── GMT+6 │ │ │ │ ├── GMT+7 │ │ │ │ ├── GMT+8 │ │ │ │ ├── GMT+9 │ │ │ │ ├── GMT-0 │ │ │ │ ├── GMT-1 │ │ │ │ ├── GMT-10 │ │ │ │ ├── GMT-11 │ │ │ │ ├── GMT-12 │ │ │ │ ├── GMT-13 │ │ │ │ ├── GMT-14 │ │ │ │ ├── GMT-2 │ │ │ │ ├── GMT-3 │ │ │ │ ├── GMT-4 │ │ │ │ ├── GMT-5 │ │ │ │ ├── GMT-6 │ │ │ │ ├── GMT-7 │ │ │ │ ├── GMT-8 │ │ │ │ ├── GMT-9 │ │ │ │ ├── GMT0 │ │ │ │ ├── Greenwich │ │ │ │ ├── UCT │ │ │ │ ├── UTC │ │ │ │ ├── Universal │ │ │ │ └── Zulu │ │ │ │ ├── Europe │ │ │ │ ├── Amsterdam │ │ │ │ ├── Andorra │ │ │ │ ├── Astrakhan │ │ │ │ ├── Athens │ │ │ │ ├── Belfast │ │ │ │ ├── Belgrade │ │ │ │ ├── Berlin │ │ │ │ ├── Bratislava │ │ │ │ ├── Brussels │ │ │ │ ├── Bucharest │ │ │ │ ├── Budapest │ │ │ │ ├── Busingen │ │ │ │ ├── Chisinau │ │ │ │ ├── Copenhagen │ │ │ │ ├── Dublin │ │ │ │ ├── Gibraltar │ │ │ │ ├── Guernsey │ │ │ │ ├── Helsinki │ │ │ │ ├── Isle_of_Man │ │ │ │ ├── Istanbul │ │ │ │ ├── Jersey │ │ │ │ ├── Kaliningrad │ │ │ │ ├── Kiev │ │ │ │ ├── Kirov │ │ │ │ ├── Lisbon │ │ │ │ ├── Ljubljana │ │ │ │ ├── London │ │ │ │ ├── Luxembourg │ │ │ │ ├── Madrid │ │ │ │ ├── Malta │ │ │ │ ├── Mariehamn │ │ │ │ ├── Minsk │ │ │ │ ├── Monaco │ │ │ │ ├── Moscow │ │ │ │ ├── Nicosia │ │ │ │ ├── Oslo │ │ │ │ ├── Paris │ │ │ │ ├── Podgorica │ │ │ │ ├── Prague │ │ │ │ ├── Riga │ │ │ │ ├── Rome │ │ │ │ ├── Samara │ │ │ │ ├── San_Marino │ │ │ │ ├── Sarajevo │ │ │ │ ├── Saratov │ │ │ │ ├── Simferopol │ │ │ │ ├── Skopje │ │ │ │ ├── Sofia │ │ │ │ ├── Stockholm │ │ │ │ ├── Tallinn │ │ │ │ ├── Tirane │ │ │ │ ├── Tiraspol │ │ │ │ ├── Ulyanovsk │ │ │ │ ├── Uzhgorod │ │ │ │ ├── Vaduz │ │ │ │ ├── Vatican │ │ │ │ ├── Vienna │ │ │ │ ├── Vilnius │ │ │ │ ├── Volgograd │ │ │ │ ├── Warsaw │ │ │ │ ├── Zagreb │ │ │ │ ├── Zaporozhye │ │ │ │ └── Zurich │ │ │ │ ├── Factory │ │ │ │ ├── GB │ │ │ │ ├── GB-Eire │ │ │ │ ├── GMT │ │ │ │ ├── GMT+0 │ │ │ │ ├── GMT-0 │ │ │ │ ├── GMT0 │ │ │ │ ├── Greenwich │ │ │ │ ├── HST │ │ │ │ ├── Hongkong │ │ │ │ ├── Iceland │ │ │ │ ├── Indian │ │ │ │ ├── Antananarivo │ │ │ │ ├── Chagos │ │ │ │ ├── Christmas │ │ │ │ ├── Cocos │ │ │ │ ├── Comoro │ │ │ │ ├── Kerguelen │ │ │ │ ├── Mahe │ │ │ │ ├── Maldives │ │ │ │ ├── Mauritius │ │ │ │ ├── Mayotte │ │ │ │ └── Reunion │ │ │ │ ├── Iran │ │ │ │ ├── Israel │ │ │ │ ├── Jamaica │ │ │ │ ├── Japan │ │ │ │ ├── Kwajalein │ │ │ │ ├── Libya │ │ │ │ ├── MET │ │ │ │ ├── MST │ │ │ │ ├── MST7MDT │ │ │ │ ├── Mexico │ │ │ │ ├── BajaNorte │ │ │ │ ├── BajaSur │ │ │ │ └── General │ │ │ │ ├── NZ │ │ │ │ ├── NZ-CHAT │ │ │ │ ├── Navajo │ │ │ │ ├── PRC │ │ │ │ ├── PST8PDT │ │ │ │ ├── Pacific │ │ │ │ ├── Apia │ │ │ │ ├── Auckland │ │ │ │ ├── Bougainville │ │ │ │ ├── Chatham │ │ │ │ ├── Chuuk │ │ │ │ ├── Easter │ │ │ │ ├── Efate │ │ │ │ ├── Enderbury │ │ │ │ ├── Fakaofo │ │ │ │ ├── Fiji │ │ │ │ ├── Funafuti │ │ │ │ ├── Galapagos │ │ │ │ ├── Gambier │ │ │ │ ├── Guadalcanal │ │ │ │ ├── Guam │ │ │ │ ├── Honolulu │ │ │ │ ├── Johnston │ │ │ │ ├── Kiritimati │ │ │ │ ├── Kosrae │ │ │ │ ├── Kwajalein │ │ │ │ ├── Majuro │ │ │ │ ├── Marquesas │ │ │ │ ├── Midway │ │ │ │ ├── Nauru │ │ │ │ ├── Niue │ │ │ │ ├── Norfolk │ │ │ │ ├── Noumea │ │ │ │ ├── Pago_Pago │ │ │ │ ├── Palau │ │ │ │ ├── Pitcairn │ │ │ │ ├── Pohnpei │ │ │ │ ├── Ponape │ │ │ │ ├── Port_Moresby │ │ │ │ ├── Rarotonga │ │ │ │ ├── Saipan │ │ │ │ ├── Samoa │ │ │ │ ├── Tahiti │ │ │ │ ├── Tarawa │ │ │ │ ├── Tongatapu │ │ │ │ ├── Truk │ │ │ │ ├── Wake │ │ │ │ ├── Wallis │ │ │ │ └── Yap │ │ │ │ ├── Poland │ │ │ │ ├── Portugal │ │ │ │ ├── ROC │ │ │ │ ├── ROK │ │ │ │ ├── Singapore │ │ │ │ ├── Turkey │ │ │ │ ├── UCT │ │ │ │ ├── US │ │ │ │ ├── Alaska │ │ │ │ ├── Aleutian │ │ │ │ ├── Arizona │ │ │ │ ├── Central │ │ │ │ ├── East-Indiana │ │ │ │ ├── Eastern │ │ │ │ ├── Hawaii │ │ │ │ ├── Indiana-Starke │ │ │ │ ├── Michigan │ │ │ │ ├── Mountain │ │ │ │ ├── Pacific │ │ │ │ └── Samoa │ │ │ │ ├── UTC │ │ │ │ ├── Universal │ │ │ │ ├── W-SU │ │ │ │ ├── WET │ │ │ │ ├── Zulu │ │ │ │ ├── iso3166.tab │ │ │ │ ├── leapseconds │ │ │ │ ├── posixrules │ │ │ │ ├── tzdata.zi │ │ │ │ ├── zone.tab │ │ │ │ └── zone1970.tab │ │ ├── setuptools-46.1.3.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── dependency_links.txt │ │ │ ├── entry_points.txt │ │ │ ├── top_level.txt │ │ │ └── zip-safe │ │ ├── setuptools │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── _deprecation_warning.cpython-38.pyc │ │ │ │ ├── _imp.cpython-38.pyc │ │ │ │ ├── archive_util.cpython-38.pyc │ │ │ │ ├── build_meta.cpython-38.pyc │ │ │ │ ├── config.cpython-38.pyc │ │ │ │ ├── dep_util.cpython-38.pyc │ │ │ │ ├── depends.cpython-38.pyc │ │ │ │ ├── dist.cpython-38.pyc │ │ │ │ ├── errors.cpython-38.pyc │ │ │ │ ├── extension.cpython-38.pyc │ │ │ │ ├── glob.cpython-38.pyc │ │ │ │ ├── installer.cpython-38.pyc │ │ │ │ ├── launch.cpython-38.pyc │ │ │ │ ├── lib2to3_ex.cpython-38.pyc │ │ │ │ ├── monkey.cpython-38.pyc │ │ │ │ ├── msvc.cpython-38.pyc │ │ │ │ ├── namespaces.cpython-38.pyc │ │ │ │ ├── package_index.cpython-38.pyc │ │ │ │ ├── py27compat.cpython-38.pyc │ │ │ │ ├── py31compat.cpython-38.pyc │ │ │ │ ├── py33compat.cpython-38.pyc │ │ │ │ ├── py34compat.cpython-38.pyc │ │ │ │ ├── sandbox.cpython-38.pyc │ │ │ │ ├── site-patch.cpython-38.pyc │ │ │ │ ├── ssl_support.cpython-38.pyc │ │ │ │ ├── unicode_utils.cpython-38.pyc │ │ │ │ ├── version.cpython-38.pyc │ │ │ │ ├── wheel.cpython-38.pyc │ │ │ │ └── windows_support.cpython-38.pyc │ │ │ ├── _deprecation_warning.py │ │ │ ├── _imp.py │ │ │ ├── _vendor │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── ordered_set.cpython-38.pyc │ │ │ │ │ ├── pyparsing.cpython-38.pyc │ │ │ │ │ └── six.cpython-38.pyc │ │ │ │ ├── ordered_set.py │ │ │ │ ├── packaging │ │ │ │ │ ├── __about__.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __about__.cpython-38.pyc │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── _compat.cpython-38.pyc │ │ │ │ │ │ ├── _structures.cpython-38.pyc │ │ │ │ │ │ ├── markers.cpython-38.pyc │ │ │ │ │ │ ├── requirements.cpython-38.pyc │ │ │ │ │ │ ├── specifiers.cpython-38.pyc │ │ │ │ │ │ ├── tags.cpython-38.pyc │ │ │ │ │ │ ├── utils.cpython-38.pyc │ │ │ │ │ │ └── version.cpython-38.pyc │ │ │ │ │ ├── _compat.py │ │ │ │ │ ├── _structures.py │ │ │ │ │ ├── markers.py │ │ │ │ │ ├── requirements.py │ │ │ │ │ ├── specifiers.py │ │ │ │ │ ├── tags.py │ │ │ │ │ ├── utils.py │ │ │ │ │ └── version.py │ │ │ │ ├── pyparsing.py │ │ │ │ └── six.py │ │ │ ├── archive_util.py │ │ │ ├── build_meta.py │ │ │ ├── cli-32.exe │ │ │ ├── cli-64.exe │ │ │ ├── cli.exe │ │ │ ├── command │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── alias.cpython-38.pyc │ │ │ │ │ ├── bdist_egg.cpython-38.pyc │ │ │ │ │ ├── bdist_rpm.cpython-38.pyc │ │ │ │ │ ├── bdist_wininst.cpython-38.pyc │ │ │ │ │ ├── build_clib.cpython-38.pyc │ │ │ │ │ ├── build_ext.cpython-38.pyc │ │ │ │ │ ├── build_py.cpython-38.pyc │ │ │ │ │ ├── develop.cpython-38.pyc │ │ │ │ │ ├── dist_info.cpython-38.pyc │ │ │ │ │ ├── easy_install.cpython-38.pyc │ │ │ │ │ ├── egg_info.cpython-38.pyc │ │ │ │ │ ├── install.cpython-38.pyc │ │ │ │ │ ├── install_egg_info.cpython-38.pyc │ │ │ │ │ ├── install_lib.cpython-38.pyc │ │ │ │ │ ├── install_scripts.cpython-38.pyc │ │ │ │ │ ├── py36compat.cpython-38.pyc │ │ │ │ │ ├── register.cpython-38.pyc │ │ │ │ │ ├── rotate.cpython-38.pyc │ │ │ │ │ ├── saveopts.cpython-38.pyc │ │ │ │ │ ├── sdist.cpython-38.pyc │ │ │ │ │ ├── setopt.cpython-38.pyc │ │ │ │ │ ├── test.cpython-38.pyc │ │ │ │ │ ├── upload.cpython-38.pyc │ │ │ │ │ └── upload_docs.cpython-38.pyc │ │ │ │ ├── alias.py │ │ │ │ ├── bdist_egg.py │ │ │ │ ├── bdist_rpm.py │ │ │ │ ├── bdist_wininst.py │ │ │ │ ├── build_clib.py │ │ │ │ ├── build_ext.py │ │ │ │ ├── build_py.py │ │ │ │ ├── develop.py │ │ │ │ ├── dist_info.py │ │ │ │ ├── easy_install.py │ │ │ │ ├── egg_info.py │ │ │ │ ├── install.py │ │ │ │ ├── install_egg_info.py │ │ │ │ ├── install_lib.py │ │ │ │ ├── install_scripts.py │ │ │ │ ├── launcher manifest.xml │ │ │ │ ├── py36compat.py │ │ │ │ ├── register.py │ │ │ │ ├── rotate.py │ │ │ │ ├── saveopts.py │ │ │ │ ├── sdist.py │ │ │ │ ├── setopt.py │ │ │ │ ├── test.py │ │ │ │ ├── upload.py │ │ │ │ └── upload_docs.py │ │ │ ├── config.py │ │ │ ├── dep_util.py │ │ │ ├── depends.py │ │ │ ├── dist.py │ │ │ ├── errors.py │ │ │ ├── extension.py │ │ │ ├── extern │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ └── __init__.cpython-38.pyc │ │ │ ├── glob.py │ │ │ ├── gui-32.exe │ │ │ ├── gui-64.exe │ │ │ ├── gui.exe │ │ │ ├── installer.py │ │ │ ├── launch.py │ │ │ ├── lib2to3_ex.py │ │ │ ├── monkey.py │ │ │ ├── msvc.py │ │ │ ├── namespaces.py │ │ │ ├── package_index.py │ │ │ ├── py27compat.py │ │ │ ├── py31compat.py │ │ │ ├── py33compat.py │ │ │ ├── py34compat.py │ │ │ ├── sandbox.py │ │ │ ├── script (dev).tmpl │ │ │ ├── script.tmpl │ │ │ ├── site-patch.py │ │ │ ├── ssl_support.py │ │ │ ├── unicode_utils.py │ │ │ ├── version.py │ │ │ ├── wheel.py │ │ │ └── windows_support.py │ │ ├── sqlparse-0.3.1.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── entry_points.txt │ │ │ └── top_level.txt │ │ ├── sqlparse │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── __main__.cpython-38.pyc │ │ │ │ ├── cli.cpython-38.pyc │ │ │ │ ├── compat.cpython-38.pyc │ │ │ │ ├── exceptions.cpython-38.pyc │ │ │ │ ├── formatter.cpython-38.pyc │ │ │ │ ├── keywords.cpython-38.pyc │ │ │ │ ├── lexer.cpython-38.pyc │ │ │ │ ├── sql.cpython-38.pyc │ │ │ │ ├── tokens.cpython-38.pyc │ │ │ │ └── utils.cpython-38.pyc │ │ │ ├── cli.py │ │ │ ├── compat.py │ │ │ ├── engine │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── filter_stack.cpython-38.pyc │ │ │ │ │ ├── grouping.cpython-38.pyc │ │ │ │ │ └── statement_splitter.cpython-38.pyc │ │ │ │ ├── filter_stack.py │ │ │ │ ├── grouping.py │ │ │ │ └── statement_splitter.py │ │ │ ├── exceptions.py │ │ │ ├── filters │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── aligned_indent.cpython-38.pyc │ │ │ │ │ ├── others.cpython-38.pyc │ │ │ │ │ ├── output.cpython-38.pyc │ │ │ │ │ ├── reindent.cpython-38.pyc │ │ │ │ │ ├── right_margin.cpython-38.pyc │ │ │ │ │ └── tokens.cpython-38.pyc │ │ │ │ ├── aligned_indent.py │ │ │ │ ├── others.py │ │ │ │ ├── output.py │ │ │ │ ├── reindent.py │ │ │ │ ├── right_margin.py │ │ │ │ └── tokens.py │ │ │ ├── formatter.py │ │ │ ├── keywords.py │ │ │ ├── lexer.py │ │ │ ├── sql.py │ │ │ ├── tokens.py │ │ │ └── utils.py │ │ ├── wheel-0.34.2.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE.txt │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── entry_points.txt │ │ │ └── top_level.txt │ │ └── wheel │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── __main__.cpython-38.pyc │ │ │ ├── _version.cpython-38.pyc │ │ │ ├── bdist_wheel.cpython-38.pyc │ │ │ ├── macosx_libfile.cpython-38.pyc │ │ │ ├── metadata.cpython-38.pyc │ │ │ ├── pep425tags.cpython-38.pyc │ │ │ ├── pkginfo.cpython-38.pyc │ │ │ ├── util.cpython-38.pyc │ │ │ └── wheelfile.cpython-38.pyc │ │ │ ├── _version.py │ │ │ ├── bdist_wheel.py │ │ │ ├── cli │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── convert.cpython-38.pyc │ │ │ │ ├── install.cpython-38.pyc │ │ │ │ ├── pack.cpython-38.pyc │ │ │ │ └── unpack.cpython-38.pyc │ │ │ ├── convert.py │ │ │ ├── install.py │ │ │ ├── pack.py │ │ │ └── unpack.py │ │ │ ├── macosx_libfile.py │ │ │ ├── metadata.py │ │ │ ├── pep425tags.py │ │ │ ├── pkginfo.py │ │ │ ├── util.py │ │ │ └── wheelfile.py │ ├── site.py │ ├── sre_compile.py │ ├── sre_constants.py │ ├── sre_parse.py │ ├── stat.py │ ├── struct.py │ ├── tarfile.py │ ├── tempfile.py │ ├── token.py │ ├── tokenize.py │ ├── types.py │ ├── warnings.py │ └── weakref.py ├── Scripts │ ├── __pycache__ │ │ └── django-admin.cpython-38.pyc │ ├── activate │ ├── activate.bat │ ├── activate.ps1 │ ├── activate.xsh │ ├── activate_this.py │ ├── deactivate.bat │ ├── django-admin.exe │ ├── django-admin.py │ ├── easy_install-3.8.exe │ ├── easy_install.exe │ ├── pip.exe │ ├── pip3.8.exe │ ├── pip3.exe │ ├── python.exe │ ├── python3.dll │ ├── python38.dll │ ├── pythonw.exe │ ├── sqlformat.exe │ └── wheel.exe └── tcl │ ├── tcl8.6 │ ├── auto.tcl │ ├── clock.tcl │ ├── encoding │ │ ├── ascii.enc │ │ ├── big5.enc │ │ ├── cp1250.enc │ │ ├── cp1251.enc │ │ ├── cp1252.enc │ │ ├── cp1253.enc │ │ ├── cp1254.enc │ │ ├── cp1255.enc │ │ ├── cp1256.enc │ │ ├── cp1257.enc │ │ ├── cp1258.enc │ │ ├── cp437.enc │ │ ├── cp737.enc │ │ ├── cp775.enc │ │ ├── cp850.enc │ │ ├── cp852.enc │ │ ├── cp855.enc │ │ ├── cp857.enc │ │ ├── cp860.enc │ │ ├── cp861.enc │ │ ├── cp862.enc │ │ ├── cp863.enc │ │ ├── cp864.enc │ │ ├── cp865.enc │ │ ├── cp866.enc │ │ ├── cp869.enc │ │ ├── cp874.enc │ │ ├── cp932.enc │ │ ├── cp936.enc │ │ ├── cp949.enc │ │ ├── cp950.enc │ │ ├── dingbats.enc │ │ ├── ebcdic.enc │ │ ├── euc-cn.enc │ │ ├── euc-jp.enc │ │ ├── euc-kr.enc │ │ ├── gb12345.enc │ │ ├── gb1988.enc │ │ ├── gb2312-raw.enc │ │ ├── gb2312.enc │ │ ├── iso2022-jp.enc │ │ ├── iso2022-kr.enc │ │ ├── iso2022.enc │ │ ├── iso8859-1.enc │ │ ├── iso8859-10.enc │ │ ├── iso8859-13.enc │ │ ├── iso8859-14.enc │ │ ├── iso8859-15.enc │ │ ├── iso8859-16.enc │ │ ├── iso8859-2.enc │ │ ├── iso8859-3.enc │ │ ├── iso8859-4.enc │ │ ├── iso8859-5.enc │ │ ├── iso8859-6.enc │ │ ├── iso8859-7.enc │ │ ├── iso8859-8.enc │ │ ├── iso8859-9.enc │ │ ├── jis0201.enc │ │ ├── jis0208.enc │ │ ├── jis0212.enc │ │ ├── koi8-r.enc │ │ ├── koi8-u.enc │ │ ├── ksc5601.enc │ │ ├── macCentEuro.enc │ │ ├── macCroatian.enc │ │ ├── macCyrillic.enc │ │ ├── macDingbats.enc │ │ ├── macGreek.enc │ │ ├── macIceland.enc │ │ ├── macJapan.enc │ │ ├── macRoman.enc │ │ ├── macRomania.enc │ │ ├── macThai.enc │ │ ├── macTurkish.enc │ │ ├── macUkraine.enc │ │ ├── shiftjis.enc │ │ ├── symbol.enc │ │ └── tis-620.enc │ ├── history.tcl │ ├── http1.0 │ │ ├── http.tcl │ │ └── pkgIndex.tcl │ ├── init.tcl │ ├── msgs │ │ ├── af.msg │ │ ├── af_za.msg │ │ ├── ar.msg │ │ ├── ar_in.msg │ │ ├── ar_jo.msg │ │ ├── ar_lb.msg │ │ ├── ar_sy.msg │ │ ├── be.msg │ │ ├── bg.msg │ │ ├── bn.msg │ │ ├── bn_in.msg │ │ ├── ca.msg │ │ ├── cs.msg │ │ ├── da.msg │ │ ├── de.msg │ │ ├── de_at.msg │ │ ├── de_be.msg │ │ ├── el.msg │ │ ├── en_au.msg │ │ ├── en_be.msg │ │ ├── en_bw.msg │ │ ├── en_ca.msg │ │ ├── en_gb.msg │ │ ├── en_hk.msg │ │ ├── en_ie.msg │ │ ├── en_in.msg │ │ ├── en_nz.msg │ │ ├── en_ph.msg │ │ ├── en_sg.msg │ │ ├── en_za.msg │ │ ├── en_zw.msg │ │ ├── eo.msg │ │ ├── es.msg │ │ ├── es_ar.msg │ │ ├── es_bo.msg │ │ ├── es_cl.msg │ │ ├── es_co.msg │ │ ├── es_cr.msg │ │ ├── es_do.msg │ │ ├── es_ec.msg │ │ ├── es_gt.msg │ │ ├── es_hn.msg │ │ ├── es_mx.msg │ │ ├── es_ni.msg │ │ ├── es_pa.msg │ │ ├── es_pe.msg │ │ ├── es_pr.msg │ │ ├── es_py.msg │ │ ├── es_sv.msg │ │ ├── es_uy.msg │ │ ├── es_ve.msg │ │ ├── et.msg │ │ ├── eu.msg │ │ ├── eu_es.msg │ │ ├── fa.msg │ │ ├── fa_in.msg │ │ ├── fa_ir.msg │ │ ├── fi.msg │ │ ├── fo.msg │ │ ├── fo_fo.msg │ │ ├── fr.msg │ │ ├── fr_be.msg │ │ ├── fr_ca.msg │ │ ├── fr_ch.msg │ │ ├── ga.msg │ │ ├── ga_ie.msg │ │ ├── gl.msg │ │ ├── gl_es.msg │ │ ├── gv.msg │ │ ├── gv_gb.msg │ │ ├── he.msg │ │ ├── hi.msg │ │ ├── hi_in.msg │ │ ├── hr.msg │ │ ├── hu.msg │ │ ├── id.msg │ │ ├── id_id.msg │ │ ├── is.msg │ │ ├── it.msg │ │ ├── it_ch.msg │ │ ├── ja.msg │ │ ├── kl.msg │ │ ├── kl_gl.msg │ │ ├── ko.msg │ │ ├── ko_kr.msg │ │ ├── kok.msg │ │ ├── kok_in.msg │ │ ├── kw.msg │ │ ├── kw_gb.msg │ │ ├── lt.msg │ │ ├── lv.msg │ │ ├── mk.msg │ │ ├── mr.msg │ │ ├── mr_in.msg │ │ ├── ms.msg │ │ ├── ms_my.msg │ │ ├── mt.msg │ │ ├── nb.msg │ │ ├── nl.msg │ │ ├── nl_be.msg │ │ ├── nn.msg │ │ ├── pl.msg │ │ ├── pt.msg │ │ ├── pt_br.msg │ │ ├── ro.msg │ │ ├── ru.msg │ │ ├── ru_ua.msg │ │ ├── sh.msg │ │ ├── sk.msg │ │ ├── sl.msg │ │ ├── sq.msg │ │ ├── sr.msg │ │ ├── sv.msg │ │ ├── sw.msg │ │ ├── ta.msg │ │ ├── ta_in.msg │ │ ├── te.msg │ │ ├── te_in.msg │ │ ├── th.msg │ │ ├── tr.msg │ │ ├── uk.msg │ │ ├── vi.msg │ │ ├── zh.msg │ │ ├── zh_cn.msg │ │ ├── zh_hk.msg │ │ ├── zh_sg.msg │ │ └── zh_tw.msg │ ├── opt0.4 │ │ ├── optparse.tcl │ │ └── pkgIndex.tcl │ ├── package.tcl │ ├── parray.tcl │ ├── safe.tcl │ ├── tclIndex │ ├── tm.tcl │ ├── tzdata │ │ ├── Africa │ │ │ ├── Abidjan │ │ │ ├── Accra │ │ │ ├── Addis_Ababa │ │ │ ├── Algiers │ │ │ ├── Asmara │ │ │ ├── Asmera │ │ │ ├── Bamako │ │ │ ├── Bangui │ │ │ ├── Banjul │ │ │ ├── Bissau │ │ │ ├── Blantyre │ │ │ ├── Brazzaville │ │ │ ├── Bujumbura │ │ │ ├── Cairo │ │ │ ├── Casablanca │ │ │ ├── Ceuta │ │ │ ├── Conakry │ │ │ ├── Dakar │ │ │ ├── Dar_es_Salaam │ │ │ ├── Djibouti │ │ │ ├── Douala │ │ │ ├── El_Aaiun │ │ │ ├── Freetown │ │ │ ├── Gaborone │ │ │ ├── Harare │ │ │ ├── Johannesburg │ │ │ ├── Juba │ │ │ ├── Kampala │ │ │ ├── Khartoum │ │ │ ├── Kigali │ │ │ ├── Kinshasa │ │ │ ├── Lagos │ │ │ ├── Libreville │ │ │ ├── Lome │ │ │ ├── Luanda │ │ │ ├── Lubumbashi │ │ │ ├── Lusaka │ │ │ ├── Malabo │ │ │ ├── Maputo │ │ │ ├── Maseru │ │ │ ├── Mbabane │ │ │ ├── Mogadishu │ │ │ ├── Monrovia │ │ │ ├── Nairobi │ │ │ ├── Ndjamena │ │ │ ├── Niamey │ │ │ ├── Nouakchott │ │ │ ├── Ouagadougou │ │ │ ├── Porto-Novo │ │ │ ├── Sao_Tome │ │ │ ├── Timbuktu │ │ │ ├── Tripoli │ │ │ ├── Tunis │ │ │ └── Windhoek │ │ ├── America │ │ │ ├── Adak │ │ │ ├── Anchorage │ │ │ ├── Anguilla │ │ │ ├── Antigua │ │ │ ├── Araguaina │ │ │ ├── Argentina │ │ │ │ ├── Buenos_Aires │ │ │ │ ├── Catamarca │ │ │ │ ├── ComodRivadavia │ │ │ │ ├── Cordoba │ │ │ │ ├── Jujuy │ │ │ │ ├── La_Rioja │ │ │ │ ├── Mendoza │ │ │ │ ├── Rio_Gallegos │ │ │ │ ├── Salta │ │ │ │ ├── San_Juan │ │ │ │ ├── San_Luis │ │ │ │ ├── Tucuman │ │ │ │ └── Ushuaia │ │ │ ├── Aruba │ │ │ ├── Asuncion │ │ │ ├── Atikokan │ │ │ ├── Atka │ │ │ ├── Bahia │ │ │ ├── Bahia_Banderas │ │ │ ├── Barbados │ │ │ ├── Belem │ │ │ ├── Belize │ │ │ ├── Blanc-Sablon │ │ │ ├── Boa_Vista │ │ │ ├── Bogota │ │ │ ├── Boise │ │ │ ├── Buenos_Aires │ │ │ ├── Cambridge_Bay │ │ │ ├── Campo_Grande │ │ │ ├── Cancun │ │ │ ├── Caracas │ │ │ ├── Catamarca │ │ │ ├── Cayenne │ │ │ ├── Cayman │ │ │ ├── Chicago │ │ │ ├── Chihuahua │ │ │ ├── Coral_Harbour │ │ │ ├── Cordoba │ │ │ ├── Costa_Rica │ │ │ ├── Creston │ │ │ ├── Cuiaba │ │ │ ├── Curacao │ │ │ ├── Danmarkshavn │ │ │ ├── Dawson │ │ │ ├── Dawson_Creek │ │ │ ├── Denver │ │ │ ├── Detroit │ │ │ ├── Dominica │ │ │ ├── Edmonton │ │ │ ├── Eirunepe │ │ │ ├── El_Salvador │ │ │ ├── Ensenada │ │ │ ├── Fort_Nelson │ │ │ ├── Fort_Wayne │ │ │ ├── Fortaleza │ │ │ ├── Glace_Bay │ │ │ ├── Godthab │ │ │ ├── Goose_Bay │ │ │ ├── Grand_Turk │ │ │ ├── Grenada │ │ │ ├── Guadeloupe │ │ │ ├── Guatemala │ │ │ ├── Guayaquil │ │ │ ├── Guyana │ │ │ ├── Halifax │ │ │ ├── Havana │ │ │ ├── Hermosillo │ │ │ ├── Indiana │ │ │ │ ├── Indianapolis │ │ │ │ ├── Knox │ │ │ │ ├── Marengo │ │ │ │ ├── Petersburg │ │ │ │ ├── Tell_City │ │ │ │ ├── Vevay │ │ │ │ ├── Vincennes │ │ │ │ └── Winamac │ │ │ ├── Indianapolis │ │ │ ├── Inuvik │ │ │ ├── Iqaluit │ │ │ ├── Jamaica │ │ │ ├── Jujuy │ │ │ ├── Juneau │ │ │ ├── Kentucky │ │ │ │ ├── Louisville │ │ │ │ └── Monticello │ │ │ ├── Knox_IN │ │ │ ├── Kralendijk │ │ │ ├── La_Paz │ │ │ ├── Lima │ │ │ ├── Los_Angeles │ │ │ ├── Louisville │ │ │ ├── Lower_Princes │ │ │ ├── Maceio │ │ │ ├── Managua │ │ │ ├── Manaus │ │ │ ├── Marigot │ │ │ ├── Martinique │ │ │ ├── Matamoros │ │ │ ├── Mazatlan │ │ │ ├── Mendoza │ │ │ ├── Menominee │ │ │ ├── Merida │ │ │ ├── Metlakatla │ │ │ ├── Mexico_City │ │ │ ├── Miquelon │ │ │ ├── Moncton │ │ │ ├── Monterrey │ │ │ ├── Montevideo │ │ │ ├── Montreal │ │ │ ├── Montserrat │ │ │ ├── Nassau │ │ │ ├── New_York │ │ │ ├── Nipigon │ │ │ ├── Nome │ │ │ ├── Noronha │ │ │ ├── North_Dakota │ │ │ │ ├── Beulah │ │ │ │ ├── Center │ │ │ │ └── New_Salem │ │ │ ├── Ojinaga │ │ │ ├── Panama │ │ │ ├── Pangnirtung │ │ │ ├── Paramaribo │ │ │ ├── Phoenix │ │ │ ├── Port-au-Prince │ │ │ ├── Port_of_Spain │ │ │ ├── Porto_Acre │ │ │ ├── Porto_Velho │ │ │ ├── Puerto_Rico │ │ │ ├── Punta_Arenas │ │ │ ├── Rainy_River │ │ │ ├── Rankin_Inlet │ │ │ ├── Recife │ │ │ ├── Regina │ │ │ ├── Resolute │ │ │ ├── Rio_Branco │ │ │ ├── Rosario │ │ │ ├── Santa_Isabel │ │ │ ├── Santarem │ │ │ ├── Santiago │ │ │ ├── Santo_Domingo │ │ │ ├── Sao_Paulo │ │ │ ├── Scoresbysund │ │ │ ├── Shiprock │ │ │ ├── Sitka │ │ │ ├── St_Barthelemy │ │ │ ├── St_Johns │ │ │ ├── St_Kitts │ │ │ ├── St_Lucia │ │ │ ├── St_Thomas │ │ │ ├── St_Vincent │ │ │ ├── Swift_Current │ │ │ ├── Tegucigalpa │ │ │ ├── Thule │ │ │ ├── Thunder_Bay │ │ │ ├── Tijuana │ │ │ ├── Toronto │ │ │ ├── Tortola │ │ │ ├── Vancouver │ │ │ ├── Virgin │ │ │ ├── Whitehorse │ │ │ ├── Winnipeg │ │ │ ├── Yakutat │ │ │ └── Yellowknife │ │ ├── Antarctica │ │ │ ├── Casey │ │ │ ├── Davis │ │ │ ├── DumontDUrville │ │ │ ├── Macquarie │ │ │ ├── Mawson │ │ │ ├── McMurdo │ │ │ ├── Palmer │ │ │ ├── Rothera │ │ │ ├── South_Pole │ │ │ ├── Syowa │ │ │ ├── Troll │ │ │ └── Vostok │ │ ├── Arctic │ │ │ └── Longyearbyen │ │ ├── Asia │ │ │ ├── Aden │ │ │ ├── Almaty │ │ │ ├── Amman │ │ │ ├── Anadyr │ │ │ ├── Aqtau │ │ │ ├── Aqtobe │ │ │ ├── Ashgabat │ │ │ ├── Ashkhabad │ │ │ ├── Atyrau │ │ │ ├── Baghdad │ │ │ ├── Bahrain │ │ │ ├── Baku │ │ │ ├── Bangkok │ │ │ ├── Barnaul │ │ │ ├── Beirut │ │ │ ├── Bishkek │ │ │ ├── Brunei │ │ │ ├── Calcutta │ │ │ ├── Chita │ │ │ ├── Choibalsan │ │ │ ├── Chongqing │ │ │ ├── Chungking │ │ │ ├── Colombo │ │ │ ├── Dacca │ │ │ ├── Damascus │ │ │ ├── Dhaka │ │ │ ├── Dili │ │ │ ├── Dubai │ │ │ ├── Dushanbe │ │ │ ├── Famagusta │ │ │ ├── Gaza │ │ │ ├── Harbin │ │ │ ├── Hebron │ │ │ ├── Ho_Chi_Minh │ │ │ ├── Hong_Kong │ │ │ ├── Hovd │ │ │ ├── Irkutsk │ │ │ ├── Istanbul │ │ │ ├── Jakarta │ │ │ ├── Jayapura │ │ │ ├── Jerusalem │ │ │ ├── Kabul │ │ │ ├── Kamchatka │ │ │ ├── Karachi │ │ │ ├── Kashgar │ │ │ ├── Kathmandu │ │ │ ├── Katmandu │ │ │ ├── Khandyga │ │ │ ├── Kolkata │ │ │ ├── Krasnoyarsk │ │ │ ├── Kuala_Lumpur │ │ │ ├── Kuching │ │ │ ├── Kuwait │ │ │ ├── Macao │ │ │ ├── Macau │ │ │ ├── Magadan │ │ │ ├── Makassar │ │ │ ├── Manila │ │ │ ├── Muscat │ │ │ ├── Nicosia │ │ │ ├── Novokuznetsk │ │ │ ├── Novosibirsk │ │ │ ├── Omsk │ │ │ ├── Oral │ │ │ ├── Phnom_Penh │ │ │ ├── Pontianak │ │ │ ├── Pyongyang │ │ │ ├── Qatar │ │ │ ├── Qyzylorda │ │ │ ├── Rangoon │ │ │ ├── Riyadh │ │ │ ├── Saigon │ │ │ ├── Sakhalin │ │ │ ├── Samarkand │ │ │ ├── Seoul │ │ │ ├── Shanghai │ │ │ ├── Singapore │ │ │ ├── Srednekolymsk │ │ │ ├── Taipei │ │ │ ├── Tashkent │ │ │ ├── Tbilisi │ │ │ ├── Tehran │ │ │ ├── Tel_Aviv │ │ │ ├── Thimbu │ │ │ ├── Thimphu │ │ │ ├── Tokyo │ │ │ ├── Tomsk │ │ │ ├── Ujung_Pandang │ │ │ ├── Ulaanbaatar │ │ │ ├── Ulan_Bator │ │ │ ├── Urumqi │ │ │ ├── Ust-Nera │ │ │ ├── Vientiane │ │ │ ├── Vladivostok │ │ │ ├── Yakutsk │ │ │ ├── Yangon │ │ │ ├── Yekaterinburg │ │ │ └── Yerevan │ │ ├── Atlantic │ │ │ ├── Azores │ │ │ ├── Bermuda │ │ │ ├── Canary │ │ │ ├── Cape_Verde │ │ │ ├── Faeroe │ │ │ ├── Faroe │ │ │ ├── Jan_Mayen │ │ │ ├── Madeira │ │ │ ├── Reykjavik │ │ │ ├── South_Georgia │ │ │ ├── St_Helena │ │ │ └── Stanley │ │ ├── Australia │ │ │ ├── ACT │ │ │ ├── Adelaide │ │ │ ├── Brisbane │ │ │ ├── Broken_Hill │ │ │ ├── Canberra │ │ │ ├── Currie │ │ │ ├── Darwin │ │ │ ├── Eucla │ │ │ ├── Hobart │ │ │ ├── LHI │ │ │ ├── Lindeman │ │ │ ├── Lord_Howe │ │ │ ├── Melbourne │ │ │ ├── NSW │ │ │ ├── North │ │ │ ├── Perth │ │ │ ├── Queensland │ │ │ ├── South │ │ │ ├── Sydney │ │ │ ├── Tasmania │ │ │ ├── Victoria │ │ │ ├── West │ │ │ └── Yancowinna │ │ ├── Brazil │ │ │ ├── Acre │ │ │ ├── DeNoronha │ │ │ ├── East │ │ │ └── West │ │ ├── CET │ │ ├── CST6CDT │ │ ├── Canada │ │ │ ├── Atlantic │ │ │ ├── Central │ │ │ ├── East-Saskatchewan │ │ │ ├── Eastern │ │ │ ├── Mountain │ │ │ ├── Newfoundland │ │ │ ├── Pacific │ │ │ ├── Saskatchewan │ │ │ └── Yukon │ │ ├── Chile │ │ │ ├── Continental │ │ │ └── EasterIsland │ │ ├── Cuba │ │ ├── EET │ │ ├── EST │ │ ├── EST5EDT │ │ ├── Egypt │ │ ├── Eire │ │ ├── Etc │ │ │ ├── GMT │ │ │ ├── GMT+0 │ │ │ ├── GMT+1 │ │ │ ├── GMT+10 │ │ │ ├── GMT+11 │ │ │ ├── GMT+12 │ │ │ ├── GMT+2 │ │ │ ├── GMT+3 │ │ │ ├── GMT+4 │ │ │ ├── GMT+5 │ │ │ ├── GMT+6 │ │ │ ├── GMT+7 │ │ │ ├── GMT+8 │ │ │ ├── GMT+9 │ │ │ ├── GMT-0 │ │ │ ├── GMT-1 │ │ │ ├── GMT-10 │ │ │ ├── GMT-11 │ │ │ ├── GMT-12 │ │ │ ├── GMT-13 │ │ │ ├── GMT-14 │ │ │ ├── GMT-2 │ │ │ ├── GMT-3 │ │ │ ├── GMT-4 │ │ │ ├── GMT-5 │ │ │ ├── GMT-6 │ │ │ ├── GMT-7 │ │ │ ├── GMT-8 │ │ │ ├── GMT-9 │ │ │ ├── GMT0 │ │ │ ├── Greenwich │ │ │ ├── UCT │ │ │ ├── UTC │ │ │ ├── Universal │ │ │ └── Zulu │ │ ├── Europe │ │ │ ├── Amsterdam │ │ │ ├── Andorra │ │ │ ├── Astrakhan │ │ │ ├── Athens │ │ │ ├── Belfast │ │ │ ├── Belgrade │ │ │ ├── Berlin │ │ │ ├── Bratislava │ │ │ ├── Brussels │ │ │ ├── Bucharest │ │ │ ├── Budapest │ │ │ ├── Busingen │ │ │ ├── Chisinau │ │ │ ├── Copenhagen │ │ │ ├── Dublin │ │ │ ├── Gibraltar │ │ │ ├── Guernsey │ │ │ ├── Helsinki │ │ │ ├── Isle_of_Man │ │ │ ├── Istanbul │ │ │ ├── Jersey │ │ │ ├── Kaliningrad │ │ │ ├── Kiev │ │ │ ├── Kirov │ │ │ ├── Lisbon │ │ │ ├── Ljubljana │ │ │ ├── London │ │ │ ├── Luxembourg │ │ │ ├── Madrid │ │ │ ├── Malta │ │ │ ├── Mariehamn │ │ │ ├── Minsk │ │ │ ├── Monaco │ │ │ ├── Moscow │ │ │ ├── Nicosia │ │ │ ├── Oslo │ │ │ ├── Paris │ │ │ ├── Podgorica │ │ │ ├── Prague │ │ │ ├── Riga │ │ │ ├── Rome │ │ │ ├── Samara │ │ │ ├── San_Marino │ │ │ ├── Sarajevo │ │ │ ├── Saratov │ │ │ ├── Simferopol │ │ │ ├── Skopje │ │ │ ├── Sofia │ │ │ ├── Stockholm │ │ │ ├── Tallinn │ │ │ ├── Tirane │ │ │ ├── Tiraspol │ │ │ ├── Ulyanovsk │ │ │ ├── Uzhgorod │ │ │ ├── Vaduz │ │ │ ├── Vatican │ │ │ ├── Vienna │ │ │ ├── Vilnius │ │ │ ├── Volgograd │ │ │ ├── Warsaw │ │ │ ├── Zagreb │ │ │ ├── Zaporozhye │ │ │ └── Zurich │ │ ├── GB │ │ ├── GB-Eire │ │ ├── GMT │ │ ├── GMT+0 │ │ ├── GMT-0 │ │ ├── GMT0 │ │ ├── Greenwich │ │ ├── HST │ │ ├── Hongkong │ │ ├── Iceland │ │ ├── Indian │ │ │ ├── Antananarivo │ │ │ ├── Chagos │ │ │ ├── Christmas │ │ │ ├── Cocos │ │ │ ├── Comoro │ │ │ ├── Kerguelen │ │ │ ├── Mahe │ │ │ ├── Maldives │ │ │ ├── Mauritius │ │ │ ├── Mayotte │ │ │ └── Reunion │ │ ├── Iran │ │ ├── Israel │ │ ├── Jamaica │ │ ├── Japan │ │ ├── Kwajalein │ │ ├── Libya │ │ ├── MET │ │ ├── MST │ │ ├── MST7MDT │ │ ├── Mexico │ │ │ ├── BajaNorte │ │ │ ├── BajaSur │ │ │ └── General │ │ ├── NZ │ │ ├── NZ-CHAT │ │ ├── Navajo │ │ ├── PRC │ │ ├── PST8PDT │ │ ├── Pacific │ │ │ ├── Apia │ │ │ ├── Auckland │ │ │ ├── Bougainville │ │ │ ├── Chatham │ │ │ ├── Chuuk │ │ │ ├── Easter │ │ │ ├── Efate │ │ │ ├── Enderbury │ │ │ ├── Fakaofo │ │ │ ├── Fiji │ │ │ ├── Funafuti │ │ │ ├── Galapagos │ │ │ ├── Gambier │ │ │ ├── Guadalcanal │ │ │ ├── Guam │ │ │ ├── Honolulu │ │ │ ├── Johnston │ │ │ ├── Kiritimati │ │ │ ├── Kosrae │ │ │ ├── Kwajalein │ │ │ ├── Majuro │ │ │ ├── Marquesas │ │ │ ├── Midway │ │ │ ├── Nauru │ │ │ ├── Niue │ │ │ ├── Norfolk │ │ │ ├── Noumea │ │ │ ├── Pago_Pago │ │ │ ├── Palau │ │ │ ├── Pitcairn │ │ │ ├── Pohnpei │ │ │ ├── Ponape │ │ │ ├── Port_Moresby │ │ │ ├── Rarotonga │ │ │ ├── Saipan │ │ │ ├── Samoa │ │ │ ├── Tahiti │ │ │ ├── Tarawa │ │ │ ├── Tongatapu │ │ │ ├── Truk │ │ │ ├── Wake │ │ │ ├── Wallis │ │ │ └── Yap │ │ ├── Poland │ │ ├── Portugal │ │ ├── ROC │ │ ├── ROK │ │ ├── Singapore │ │ ├── SystemV │ │ │ ├── AST4 │ │ │ ├── AST4ADT │ │ │ ├── CST6 │ │ │ ├── CST6CDT │ │ │ ├── EST5 │ │ │ ├── EST5EDT │ │ │ ├── HST10 │ │ │ ├── MST7 │ │ │ ├── MST7MDT │ │ │ ├── PST8 │ │ │ ├── PST8PDT │ │ │ ├── YST9 │ │ │ └── YST9YDT │ │ ├── Turkey │ │ ├── UCT │ │ ├── US │ │ │ ├── Alaska │ │ │ ├── Aleutian │ │ │ ├── Arizona │ │ │ ├── Central │ │ │ ├── East-Indiana │ │ │ ├── Eastern │ │ │ ├── Hawaii │ │ │ ├── Indiana-Starke │ │ │ ├── Michigan │ │ │ ├── Mountain │ │ │ ├── Pacific │ │ │ ├── Pacific-New │ │ │ └── Samoa │ │ ├── UTC │ │ ├── Universal │ │ ├── W-SU │ │ ├── WET │ │ └── Zulu │ └── word.tcl │ └── tk8.6 │ ├── bgerror.tcl │ ├── button.tcl │ ├── choosedir.tcl │ ├── clrpick.tcl │ ├── comdlg.tcl │ ├── console.tcl │ ├── demos │ ├── README │ ├── anilabel.tcl │ ├── aniwave.tcl │ ├── arrow.tcl │ ├── bind.tcl │ ├── bitmap.tcl │ ├── browse │ ├── button.tcl │ ├── check.tcl │ ├── clrpick.tcl │ ├── colors.tcl │ ├── combo.tcl │ ├── cscroll.tcl │ ├── ctext.tcl │ ├── dialog1.tcl │ ├── dialog2.tcl │ ├── en.msg │ ├── entry1.tcl │ ├── entry2.tcl │ ├── entry3.tcl │ ├── filebox.tcl │ ├── floor.tcl │ ├── fontchoose.tcl │ ├── form.tcl │ ├── goldberg.tcl │ ├── hello │ ├── hscale.tcl │ ├── icon.tcl │ ├── image1.tcl │ ├── image2.tcl │ ├── images │ │ ├── earth.gif │ │ ├── earthmenu.png │ │ ├── earthris.gif │ │ ├── flagdown.xbm │ │ ├── flagup.xbm │ │ ├── gray25.xbm │ │ ├── letters.xbm │ │ ├── noletter.xbm │ │ ├── ouster.png │ │ ├── pattern.xbm │ │ ├── tcllogo.gif │ │ └── teapot.ppm │ ├── items.tcl │ ├── ixset │ ├── knightstour.tcl │ ├── label.tcl │ ├── labelframe.tcl │ ├── license.terms │ ├── mclist.tcl │ ├── menu.tcl │ ├── menubu.tcl │ ├── msgbox.tcl │ ├── nl.msg │ ├── paned1.tcl │ ├── paned2.tcl │ ├── pendulum.tcl │ ├── plot.tcl │ ├── puzzle.tcl │ ├── radio.tcl │ ├── rmt │ ├── rolodex │ ├── ruler.tcl │ ├── sayings.tcl │ ├── search.tcl │ ├── spin.tcl │ ├── square │ ├── states.tcl │ ├── style.tcl │ ├── tclIndex │ ├── tcolor │ ├── text.tcl │ ├── textpeer.tcl │ ├── timer │ ├── toolbar.tcl │ ├── tree.tcl │ ├── ttkbut.tcl │ ├── ttkmenu.tcl │ ├── ttknote.tcl │ ├── ttkpane.tcl │ ├── ttkprogress.tcl │ ├── ttkscale.tcl │ ├── twind.tcl │ ├── unicodeout.tcl │ ├── vscale.tcl │ └── widget │ ├── dialog.tcl │ ├── entry.tcl │ ├── focus.tcl │ ├── fontchooser.tcl │ ├── iconlist.tcl │ ├── icons.tcl │ ├── images │ ├── README │ ├── logo.eps │ ├── logo100.gif │ ├── logo64.gif │ ├── logoLarge.gif │ ├── logoMed.gif │ ├── pwrdLogo.eps │ ├── pwrdLogo100.gif │ ├── pwrdLogo150.gif │ ├── pwrdLogo175.gif │ ├── pwrdLogo200.gif │ ├── pwrdLogo75.gif │ └── tai-ku.gif │ ├── license.terms │ ├── listbox.tcl │ ├── megawidget.tcl │ ├── menu.tcl │ ├── mkpsenc.tcl │ ├── msgbox.tcl │ ├── msgs │ ├── cs.msg │ ├── da.msg │ ├── de.msg │ ├── el.msg │ ├── en.msg │ ├── en_gb.msg │ ├── eo.msg │ ├── es.msg │ ├── fr.msg │ ├── hu.msg │ ├── it.msg │ ├── nl.msg │ ├── pl.msg │ ├── pt.msg │ ├── ru.msg │ └── sv.msg │ ├── obsolete.tcl │ ├── optMenu.tcl │ ├── palette.tcl │ ├── panedwindow.tcl │ ├── pkgIndex.tcl │ ├── safetk.tcl │ ├── scale.tcl │ ├── scrlbar.tcl │ ├── spinbox.tcl │ ├── tclIndex │ ├── tearoff.tcl │ ├── text.tcl │ ├── tk.tcl │ ├── tkfbox.tcl │ ├── ttk │ ├── altTheme.tcl │ ├── aquaTheme.tcl │ ├── button.tcl │ ├── clamTheme.tcl │ ├── classicTheme.tcl │ ├── combobox.tcl │ ├── cursors.tcl │ ├── defaults.tcl │ ├── entry.tcl │ ├── fonts.tcl │ ├── menubutton.tcl │ ├── notebook.tcl │ ├── panedwindow.tcl │ ├── progress.tcl │ ├── scale.tcl │ ├── scrollbar.tcl │ ├── sizegrip.tcl │ ├── spinbox.tcl │ ├── treeview.tcl │ ├── ttk.tcl │ ├── utils.tcl │ ├── vistaTheme.tcl │ ├── winTheme.tcl │ └── xpTheme.tcl │ ├── unsupported.tcl │ └── xmfbox.tcl ├── manage.py ├── requirements.txt ├── static ├── css │ └── main.css ├── images │ ├── arrow-down.png │ ├── arrow-up.png │ ├── book.jpg │ ├── cart.png │ ├── headphones.jpg │ ├── placeholder.png │ ├── shirt.jpg │ ├── shoes.jpg │ ├── sourcecode.jpg │ └── watch.jpg └── js │ └── cart.js └── store ├── __init__.py ├── __pycache__ ├── __init__.cpython-38.pyc ├── admin.cpython-38.pyc ├── apps.cpython-38.pyc ├── models.cpython-38.pyc ├── urls.cpython-38.pyc ├── utils.cpython-38.pyc └── views.cpython-38.pyc ├── admin.py ├── apps.py ├── migrations ├── 0001_initial.py ├── 0002_product_image.py ├── __init__.py └── __pycache__ │ ├── 0001_initial.cpython-38.pyc │ ├── 0002_product_image.cpython-38.pyc │ └── __init__.cpython-38.pyc ├── models.py ├── templates └── store │ ├── cart.html │ ├── checkout.html │ ├── main.html │ └── store.html ├── tests.py ├── urls.py ├── utils.py └── views.py /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/db.sqlite3 -------------------------------------------------------------------------------- /ecommerce/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ecommerce/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/ecommerce/asgi.py -------------------------------------------------------------------------------- /ecommerce/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/ecommerce/settings.py -------------------------------------------------------------------------------- /ecommerce/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/ecommerce/urls.py -------------------------------------------------------------------------------- /ecommerce/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/ecommerce/wsgi.py -------------------------------------------------------------------------------- /env/Include/Python-ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/Python-ast.h -------------------------------------------------------------------------------- /env/Include/Python.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/Python.h -------------------------------------------------------------------------------- /env/Include/abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/abstract.h -------------------------------------------------------------------------------- /env/Include/asdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/asdl.h -------------------------------------------------------------------------------- /env/Include/ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/ast.h -------------------------------------------------------------------------------- /env/Include/bitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/bitset.h -------------------------------------------------------------------------------- /env/Include/bltinmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/bltinmodule.h -------------------------------------------------------------------------------- /env/Include/boolobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/boolobject.h -------------------------------------------------------------------------------- /env/Include/bytearrayobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/bytearrayobject.h -------------------------------------------------------------------------------- /env/Include/bytes_methods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/bytes_methods.h -------------------------------------------------------------------------------- /env/Include/bytesobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/bytesobject.h -------------------------------------------------------------------------------- /env/Include/cellobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/cellobject.h -------------------------------------------------------------------------------- /env/Include/ceval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/ceval.h -------------------------------------------------------------------------------- /env/Include/classobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/classobject.h -------------------------------------------------------------------------------- /env/Include/code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/code.h -------------------------------------------------------------------------------- /env/Include/codecs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/codecs.h -------------------------------------------------------------------------------- /env/Include/compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/compile.h -------------------------------------------------------------------------------- /env/Include/complexobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/complexobject.h -------------------------------------------------------------------------------- /env/Include/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/context.h -------------------------------------------------------------------------------- /env/Include/cpython/abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/cpython/abstract.h -------------------------------------------------------------------------------- /env/Include/cpython/dictobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/cpython/dictobject.h -------------------------------------------------------------------------------- /env/Include/cpython/fileobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/cpython/fileobject.h -------------------------------------------------------------------------------- /env/Include/cpython/initconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/cpython/initconfig.h -------------------------------------------------------------------------------- /env/Include/cpython/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/cpython/object.h -------------------------------------------------------------------------------- /env/Include/cpython/objimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/cpython/objimpl.h -------------------------------------------------------------------------------- /env/Include/cpython/pyerrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/cpython/pyerrors.h -------------------------------------------------------------------------------- /env/Include/cpython/pylifecycle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/cpython/pylifecycle.h -------------------------------------------------------------------------------- /env/Include/cpython/pymem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/cpython/pymem.h -------------------------------------------------------------------------------- /env/Include/cpython/pystate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/cpython/pystate.h -------------------------------------------------------------------------------- /env/Include/cpython/sysmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/cpython/sysmodule.h -------------------------------------------------------------------------------- /env/Include/cpython/traceback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/cpython/traceback.h -------------------------------------------------------------------------------- /env/Include/cpython/tupleobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/cpython/tupleobject.h -------------------------------------------------------------------------------- /env/Include/datetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/datetime.h -------------------------------------------------------------------------------- /env/Include/descrobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/descrobject.h -------------------------------------------------------------------------------- /env/Include/dictobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/dictobject.h -------------------------------------------------------------------------------- /env/Include/dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/dtoa.h -------------------------------------------------------------------------------- /env/Include/dynamic_annotations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/dynamic_annotations.h -------------------------------------------------------------------------------- /env/Include/enumobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/enumobject.h -------------------------------------------------------------------------------- /env/Include/errcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/errcode.h -------------------------------------------------------------------------------- /env/Include/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/eval.h -------------------------------------------------------------------------------- /env/Include/fileobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/fileobject.h -------------------------------------------------------------------------------- /env/Include/fileutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/fileutils.h -------------------------------------------------------------------------------- /env/Include/floatobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/floatobject.h -------------------------------------------------------------------------------- /env/Include/frameobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/frameobject.h -------------------------------------------------------------------------------- /env/Include/funcobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/funcobject.h -------------------------------------------------------------------------------- /env/Include/genobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/genobject.h -------------------------------------------------------------------------------- /env/Include/graminit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/graminit.h -------------------------------------------------------------------------------- /env/Include/grammar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/grammar.h -------------------------------------------------------------------------------- /env/Include/import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/import.h -------------------------------------------------------------------------------- /env/Include/internal/pycore_gil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/internal/pycore_gil.h -------------------------------------------------------------------------------- /env/Include/interpreteridobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/interpreteridobject.h -------------------------------------------------------------------------------- /env/Include/intrcheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/intrcheck.h -------------------------------------------------------------------------------- /env/Include/iterobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/iterobject.h -------------------------------------------------------------------------------- /env/Include/listobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/listobject.h -------------------------------------------------------------------------------- /env/Include/longintrepr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/longintrepr.h -------------------------------------------------------------------------------- /env/Include/longobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/longobject.h -------------------------------------------------------------------------------- /env/Include/marshal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/marshal.h -------------------------------------------------------------------------------- /env/Include/memoryobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/memoryobject.h -------------------------------------------------------------------------------- /env/Include/methodobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/methodobject.h -------------------------------------------------------------------------------- /env/Include/modsupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/modsupport.h -------------------------------------------------------------------------------- /env/Include/moduleobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/moduleobject.h -------------------------------------------------------------------------------- /env/Include/namespaceobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/namespaceobject.h -------------------------------------------------------------------------------- /env/Include/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/node.h -------------------------------------------------------------------------------- /env/Include/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/object.h -------------------------------------------------------------------------------- /env/Include/objimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/objimpl.h -------------------------------------------------------------------------------- /env/Include/odictobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/odictobject.h -------------------------------------------------------------------------------- /env/Include/opcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/opcode.h -------------------------------------------------------------------------------- /env/Include/osdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/osdefs.h -------------------------------------------------------------------------------- /env/Include/osmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/osmodule.h -------------------------------------------------------------------------------- /env/Include/parsetok.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/parsetok.h -------------------------------------------------------------------------------- /env/Include/patchlevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/patchlevel.h -------------------------------------------------------------------------------- /env/Include/picklebufobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/picklebufobject.h -------------------------------------------------------------------------------- /env/Include/py_curses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/py_curses.h -------------------------------------------------------------------------------- /env/Include/pyarena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/pyarena.h -------------------------------------------------------------------------------- /env/Include/pycapsule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/pycapsule.h -------------------------------------------------------------------------------- /env/Include/pyconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/pyconfig.h -------------------------------------------------------------------------------- /env/Include/pyctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/pyctype.h -------------------------------------------------------------------------------- /env/Include/pydebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/pydebug.h -------------------------------------------------------------------------------- /env/Include/pydtrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/pydtrace.h -------------------------------------------------------------------------------- /env/Include/pyerrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/pyerrors.h -------------------------------------------------------------------------------- /env/Include/pyexpat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/pyexpat.h -------------------------------------------------------------------------------- /env/Include/pyfpe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/pyfpe.h -------------------------------------------------------------------------------- /env/Include/pyhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/pyhash.h -------------------------------------------------------------------------------- /env/Include/pylifecycle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/pylifecycle.h -------------------------------------------------------------------------------- /env/Include/pymacconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/pymacconfig.h -------------------------------------------------------------------------------- /env/Include/pymacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/pymacro.h -------------------------------------------------------------------------------- /env/Include/pymath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/pymath.h -------------------------------------------------------------------------------- /env/Include/pymem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/pymem.h -------------------------------------------------------------------------------- /env/Include/pyport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/pyport.h -------------------------------------------------------------------------------- /env/Include/pystate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/pystate.h -------------------------------------------------------------------------------- /env/Include/pystrcmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/pystrcmp.h -------------------------------------------------------------------------------- /env/Include/pystrhex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/pystrhex.h -------------------------------------------------------------------------------- /env/Include/pystrtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/pystrtod.h -------------------------------------------------------------------------------- /env/Include/pythonrun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/pythonrun.h -------------------------------------------------------------------------------- /env/Include/pythread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/pythread.h -------------------------------------------------------------------------------- /env/Include/pytime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/pytime.h -------------------------------------------------------------------------------- /env/Include/rangeobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/rangeobject.h -------------------------------------------------------------------------------- /env/Include/setobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/setobject.h -------------------------------------------------------------------------------- /env/Include/sliceobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/sliceobject.h -------------------------------------------------------------------------------- /env/Include/structmember.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/structmember.h -------------------------------------------------------------------------------- /env/Include/structseq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/structseq.h -------------------------------------------------------------------------------- /env/Include/symtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/symtable.h -------------------------------------------------------------------------------- /env/Include/sysmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/sysmodule.h -------------------------------------------------------------------------------- /env/Include/token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/token.h -------------------------------------------------------------------------------- /env/Include/traceback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/traceback.h -------------------------------------------------------------------------------- /env/Include/tracemalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/tracemalloc.h -------------------------------------------------------------------------------- /env/Include/tupleobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/tupleobject.h -------------------------------------------------------------------------------- /env/Include/typeslots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/typeslots.h -------------------------------------------------------------------------------- /env/Include/ucnhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/ucnhash.h -------------------------------------------------------------------------------- /env/Include/unicodeobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/unicodeobject.h -------------------------------------------------------------------------------- /env/Include/warnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/warnings.h -------------------------------------------------------------------------------- /env/Include/weakrefobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Include/weakrefobject.h -------------------------------------------------------------------------------- /env/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/LICENSE.txt -------------------------------------------------------------------------------- /env/Lib/__future__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/__future__.py -------------------------------------------------------------------------------- /env/Lib/_bootlocale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/_bootlocale.py -------------------------------------------------------------------------------- /env/Lib/_collections_abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/_collections_abc.py -------------------------------------------------------------------------------- /env/Lib/_dummy_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/_dummy_thread.py -------------------------------------------------------------------------------- /env/Lib/_weakrefset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/_weakrefset.py -------------------------------------------------------------------------------- /env/Lib/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/abc.py -------------------------------------------------------------------------------- /env/Lib/base64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/base64.py -------------------------------------------------------------------------------- /env/Lib/bisect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/bisect.py -------------------------------------------------------------------------------- /env/Lib/codecs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/codecs.py -------------------------------------------------------------------------------- /env/Lib/collections/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/collections/__init__.py -------------------------------------------------------------------------------- /env/Lib/collections/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/collections/abc.py -------------------------------------------------------------------------------- /env/Lib/copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/copy.py -------------------------------------------------------------------------------- /env/Lib/copyreg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/copyreg.py -------------------------------------------------------------------------------- /env/Lib/distutils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/distutils/__init__.py -------------------------------------------------------------------------------- /env/Lib/distutils/distutils.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/distutils/distutils.cfg -------------------------------------------------------------------------------- /env/Lib/encodings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/__init__.py -------------------------------------------------------------------------------- /env/Lib/encodings/aliases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/aliases.py -------------------------------------------------------------------------------- /env/Lib/encodings/ascii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/ascii.py -------------------------------------------------------------------------------- /env/Lib/encodings/base64_codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/base64_codec.py -------------------------------------------------------------------------------- /env/Lib/encodings/big5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/big5.py -------------------------------------------------------------------------------- /env/Lib/encodings/big5hkscs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/big5hkscs.py -------------------------------------------------------------------------------- /env/Lib/encodings/bz2_codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/bz2_codec.py -------------------------------------------------------------------------------- /env/Lib/encodings/charmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/charmap.py -------------------------------------------------------------------------------- /env/Lib/encodings/cp037.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/cp037.py -------------------------------------------------------------------------------- /env/Lib/encodings/cp1006.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/cp1006.py -------------------------------------------------------------------------------- /env/Lib/encodings/cp1026.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/cp1026.py -------------------------------------------------------------------------------- /env/Lib/encodings/cp1125.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/cp1125.py -------------------------------------------------------------------------------- /env/Lib/encodings/cp1140.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/cp1140.py -------------------------------------------------------------------------------- /env/Lib/encodings/cp1250.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/cp1250.py -------------------------------------------------------------------------------- /env/Lib/encodings/cp1251.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/cp1251.py -------------------------------------------------------------------------------- /env/Lib/encodings/cp1252.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/cp1252.py -------------------------------------------------------------------------------- /env/Lib/encodings/cp1253.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/cp1253.py -------------------------------------------------------------------------------- /env/Lib/encodings/cp1254.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/cp1254.py -------------------------------------------------------------------------------- /env/Lib/encodings/cp1255.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/cp1255.py -------------------------------------------------------------------------------- /env/Lib/encodings/cp1256.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/cp1256.py -------------------------------------------------------------------------------- /env/Lib/encodings/cp1257.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/cp1257.py -------------------------------------------------------------------------------- /env/Lib/encodings/cp1258.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/cp1258.py -------------------------------------------------------------------------------- /env/Lib/encodings/cp273.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/cp273.py -------------------------------------------------------------------------------- /env/Lib/encodings/cp424.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/cp424.py -------------------------------------------------------------------------------- /env/Lib/encodings/cp437.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/cp437.py -------------------------------------------------------------------------------- /env/Lib/encodings/cp500.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/cp500.py -------------------------------------------------------------------------------- /env/Lib/encodings/cp720.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/cp720.py -------------------------------------------------------------------------------- /env/Lib/encodings/cp737.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/cp737.py -------------------------------------------------------------------------------- /env/Lib/encodings/cp775.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/cp775.py -------------------------------------------------------------------------------- /env/Lib/encodings/cp850.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/cp850.py -------------------------------------------------------------------------------- /env/Lib/encodings/cp852.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/cp852.py -------------------------------------------------------------------------------- /env/Lib/encodings/cp855.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/cp855.py -------------------------------------------------------------------------------- /env/Lib/encodings/cp856.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/cp856.py -------------------------------------------------------------------------------- /env/Lib/encodings/cp857.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/cp857.py -------------------------------------------------------------------------------- /env/Lib/encodings/cp858.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/cp858.py -------------------------------------------------------------------------------- /env/Lib/encodings/cp860.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/cp860.py -------------------------------------------------------------------------------- /env/Lib/encodings/cp861.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/cp861.py -------------------------------------------------------------------------------- /env/Lib/encodings/cp862.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/cp862.py -------------------------------------------------------------------------------- /env/Lib/encodings/cp863.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/cp863.py -------------------------------------------------------------------------------- /env/Lib/encodings/cp864.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/cp864.py -------------------------------------------------------------------------------- /env/Lib/encodings/cp865.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/cp865.py -------------------------------------------------------------------------------- /env/Lib/encodings/cp866.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/cp866.py -------------------------------------------------------------------------------- /env/Lib/encodings/cp869.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/cp869.py -------------------------------------------------------------------------------- /env/Lib/encodings/cp874.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/cp874.py -------------------------------------------------------------------------------- /env/Lib/encodings/cp875.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/cp875.py -------------------------------------------------------------------------------- /env/Lib/encodings/cp932.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/cp932.py -------------------------------------------------------------------------------- /env/Lib/encodings/cp949.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/cp949.py -------------------------------------------------------------------------------- /env/Lib/encodings/cp950.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/cp950.py -------------------------------------------------------------------------------- /env/Lib/encodings/euc_jis_2004.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/euc_jis_2004.py -------------------------------------------------------------------------------- /env/Lib/encodings/euc_jisx0213.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/euc_jisx0213.py -------------------------------------------------------------------------------- /env/Lib/encodings/euc_jp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/euc_jp.py -------------------------------------------------------------------------------- /env/Lib/encodings/euc_kr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/euc_kr.py -------------------------------------------------------------------------------- /env/Lib/encodings/gb18030.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/gb18030.py -------------------------------------------------------------------------------- /env/Lib/encodings/gb2312.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/gb2312.py -------------------------------------------------------------------------------- /env/Lib/encodings/gbk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/gbk.py -------------------------------------------------------------------------------- /env/Lib/encodings/hex_codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/hex_codec.py -------------------------------------------------------------------------------- /env/Lib/encodings/hp_roman8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/hp_roman8.py -------------------------------------------------------------------------------- /env/Lib/encodings/hz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/hz.py -------------------------------------------------------------------------------- /env/Lib/encodings/idna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/idna.py -------------------------------------------------------------------------------- /env/Lib/encodings/iso2022_jp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/iso2022_jp.py -------------------------------------------------------------------------------- /env/Lib/encodings/iso2022_jp_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/iso2022_jp_1.py -------------------------------------------------------------------------------- /env/Lib/encodings/iso2022_jp_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/iso2022_jp_2.py -------------------------------------------------------------------------------- /env/Lib/encodings/iso2022_jp_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/iso2022_jp_3.py -------------------------------------------------------------------------------- /env/Lib/encodings/iso2022_kr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/iso2022_kr.py -------------------------------------------------------------------------------- /env/Lib/encodings/iso8859_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/iso8859_1.py -------------------------------------------------------------------------------- /env/Lib/encodings/iso8859_10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/iso8859_10.py -------------------------------------------------------------------------------- /env/Lib/encodings/iso8859_11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/iso8859_11.py -------------------------------------------------------------------------------- /env/Lib/encodings/iso8859_13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/iso8859_13.py -------------------------------------------------------------------------------- /env/Lib/encodings/iso8859_14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/iso8859_14.py -------------------------------------------------------------------------------- /env/Lib/encodings/iso8859_15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/iso8859_15.py -------------------------------------------------------------------------------- /env/Lib/encodings/iso8859_16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/iso8859_16.py -------------------------------------------------------------------------------- /env/Lib/encodings/iso8859_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/iso8859_2.py -------------------------------------------------------------------------------- /env/Lib/encodings/iso8859_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/iso8859_3.py -------------------------------------------------------------------------------- /env/Lib/encodings/iso8859_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/iso8859_4.py -------------------------------------------------------------------------------- /env/Lib/encodings/iso8859_5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/iso8859_5.py -------------------------------------------------------------------------------- /env/Lib/encodings/iso8859_6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/iso8859_6.py -------------------------------------------------------------------------------- /env/Lib/encodings/iso8859_7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/iso8859_7.py -------------------------------------------------------------------------------- /env/Lib/encodings/iso8859_8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/iso8859_8.py -------------------------------------------------------------------------------- /env/Lib/encodings/iso8859_9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/iso8859_9.py -------------------------------------------------------------------------------- /env/Lib/encodings/johab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/johab.py -------------------------------------------------------------------------------- /env/Lib/encodings/koi8_r.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/koi8_r.py -------------------------------------------------------------------------------- /env/Lib/encodings/koi8_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/koi8_t.py -------------------------------------------------------------------------------- /env/Lib/encodings/koi8_u.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/koi8_u.py -------------------------------------------------------------------------------- /env/Lib/encodings/kz1048.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/kz1048.py -------------------------------------------------------------------------------- /env/Lib/encodings/latin_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/latin_1.py -------------------------------------------------------------------------------- /env/Lib/encodings/mac_arabic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/mac_arabic.py -------------------------------------------------------------------------------- /env/Lib/encodings/mac_centeuro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/mac_centeuro.py -------------------------------------------------------------------------------- /env/Lib/encodings/mac_croatian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/mac_croatian.py -------------------------------------------------------------------------------- /env/Lib/encodings/mac_cyrillic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/mac_cyrillic.py -------------------------------------------------------------------------------- /env/Lib/encodings/mac_farsi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/mac_farsi.py -------------------------------------------------------------------------------- /env/Lib/encodings/mac_greek.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/mac_greek.py -------------------------------------------------------------------------------- /env/Lib/encodings/mac_iceland.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/mac_iceland.py -------------------------------------------------------------------------------- /env/Lib/encodings/mac_latin2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/mac_latin2.py -------------------------------------------------------------------------------- /env/Lib/encodings/mac_roman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/mac_roman.py -------------------------------------------------------------------------------- /env/Lib/encodings/mac_romanian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/mac_romanian.py -------------------------------------------------------------------------------- /env/Lib/encodings/mac_turkish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/mac_turkish.py -------------------------------------------------------------------------------- /env/Lib/encodings/mbcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/mbcs.py -------------------------------------------------------------------------------- /env/Lib/encodings/oem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/oem.py -------------------------------------------------------------------------------- /env/Lib/encodings/palmos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/palmos.py -------------------------------------------------------------------------------- /env/Lib/encodings/ptcp154.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/ptcp154.py -------------------------------------------------------------------------------- /env/Lib/encodings/punycode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/punycode.py -------------------------------------------------------------------------------- /env/Lib/encodings/quopri_codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/quopri_codec.py -------------------------------------------------------------------------------- /env/Lib/encodings/rot_13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/rot_13.py -------------------------------------------------------------------------------- /env/Lib/encodings/shift_jis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/shift_jis.py -------------------------------------------------------------------------------- /env/Lib/encodings/tis_620.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/tis_620.py -------------------------------------------------------------------------------- /env/Lib/encodings/undefined.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/undefined.py -------------------------------------------------------------------------------- /env/Lib/encodings/utf_16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/utf_16.py -------------------------------------------------------------------------------- /env/Lib/encodings/utf_16_be.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/utf_16_be.py -------------------------------------------------------------------------------- /env/Lib/encodings/utf_16_le.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/utf_16_le.py -------------------------------------------------------------------------------- /env/Lib/encodings/utf_32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/utf_32.py -------------------------------------------------------------------------------- /env/Lib/encodings/utf_32_be.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/utf_32_be.py -------------------------------------------------------------------------------- /env/Lib/encodings/utf_32_le.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/utf_32_le.py -------------------------------------------------------------------------------- /env/Lib/encodings/utf_7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/utf_7.py -------------------------------------------------------------------------------- /env/Lib/encodings/utf_8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/utf_8.py -------------------------------------------------------------------------------- /env/Lib/encodings/utf_8_sig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/utf_8_sig.py -------------------------------------------------------------------------------- /env/Lib/encodings/uu_codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/uu_codec.py -------------------------------------------------------------------------------- /env/Lib/encodings/zlib_codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/encodings/zlib_codec.py -------------------------------------------------------------------------------- /env/Lib/enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/enum.py -------------------------------------------------------------------------------- /env/Lib/fnmatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/fnmatch.py -------------------------------------------------------------------------------- /env/Lib/functools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/functools.py -------------------------------------------------------------------------------- /env/Lib/genericpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/genericpath.py -------------------------------------------------------------------------------- /env/Lib/hashlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/hashlib.py -------------------------------------------------------------------------------- /env/Lib/heapq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/heapq.py -------------------------------------------------------------------------------- /env/Lib/hmac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/hmac.py -------------------------------------------------------------------------------- /env/Lib/imp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/imp.py -------------------------------------------------------------------------------- /env/Lib/importlib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/importlib/__init__.py -------------------------------------------------------------------------------- /env/Lib/importlib/_bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/importlib/_bootstrap.py -------------------------------------------------------------------------------- /env/Lib/importlib/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/importlib/abc.py -------------------------------------------------------------------------------- /env/Lib/importlib/machinery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/importlib/machinery.py -------------------------------------------------------------------------------- /env/Lib/importlib/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/importlib/metadata.py -------------------------------------------------------------------------------- /env/Lib/importlib/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/importlib/resources.py -------------------------------------------------------------------------------- /env/Lib/importlib/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/importlib/util.py -------------------------------------------------------------------------------- /env/Lib/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/io.py -------------------------------------------------------------------------------- /env/Lib/keyword.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/keyword.py -------------------------------------------------------------------------------- /env/Lib/linecache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/linecache.py -------------------------------------------------------------------------------- /env/Lib/locale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/locale.py -------------------------------------------------------------------------------- /env/Lib/no-global-site-packages.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/ntpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/ntpath.py -------------------------------------------------------------------------------- /env/Lib/operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/operator.py -------------------------------------------------------------------------------- /env/Lib/orig-prefix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/orig-prefix.txt -------------------------------------------------------------------------------- /env/Lib/os.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/os.py -------------------------------------------------------------------------------- /env/Lib/posixpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/posixpath.py -------------------------------------------------------------------------------- /env/Lib/random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/random.py -------------------------------------------------------------------------------- /env/Lib/re.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/re.py -------------------------------------------------------------------------------- /env/Lib/reprlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/reprlib.py -------------------------------------------------------------------------------- /env/Lib/rlcompleter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/rlcompleter.py -------------------------------------------------------------------------------- /env/Lib/shutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/shutil.py -------------------------------------------------------------------------------- /env/Lib/site-packages/Django-3.0.5.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/Django-3.0.5.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | django 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/Pillow-7.1.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/Pillow-7.1.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | PIL 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/Pillow-7.1.1.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/asgiref-3.2.7.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/asgiref-3.2.7.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | asgiref 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/asgiref/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "3.2.7" 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/app_template/__init__.py-tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/app_template/migrations/__init__.py-tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/ar/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/az/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/bg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/bn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/bs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/ca/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/cs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/cy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/da/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/de/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/de_CH/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/el/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/en/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/en_AU/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/en_GB/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/eo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/es/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/es_AR/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/es_CO/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/es_MX/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/es_NI/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/es_PR/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/et/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/eu/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/fa/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/fi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/fr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/fy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/ga/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/gd/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/gl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/he/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/hi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/hr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/hu/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/id/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/is/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/it/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/ja/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/ka/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/km/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/kn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/ko/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/lt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/lv/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/mk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/ml/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/mn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/nb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/nl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/nn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/pl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/pt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/pt_BR/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/ro/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/ru/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/sk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/sl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/sq/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/sr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/sr_Latn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/sv/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/ta/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/te/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/th/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/tr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/uk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/uz/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/vi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/zh_Hans/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/locale/zh_Hant/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/conf/project_template/project_name/__init__.py-tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/contrib/admin/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/contrib/admin/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/contrib/admin/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/contrib/auth/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/contrib/auth/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/contrib/contenttypes/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/contrib/flatpages/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/contrib/flatpages/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/contrib/gis/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/contrib/gis/db/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/contrib/gis/db/backends/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/contrib/gis/db/backends/mysql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/contrib/gis/db/backends/oracle/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/contrib/gis/db/backends/postgis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/contrib/gis/gdal/prototypes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/contrib/gis/gdal/raster/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/contrib/gis/serializers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/contrib/humanize/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/contrib/redirects/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/contrib/sessions/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/contrib/sessions/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/contrib/sites/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/core/cache/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/core/checks/compatibility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/core/checks/security/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/core/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/core/mail/backends/__init__.py: -------------------------------------------------------------------------------- 1 | # Mail backends shipped with Django. 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/core/servers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/db/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/db/backends/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/db/backends/dummy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/db/backends/mysql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/db/backends/oracle/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/db/backends/postgresql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/db/backends/sqlite3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/checkbox.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/date.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/datetime.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/email.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/file.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/hidden.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/number.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/password.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/text.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/time.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/forms/jinja2/django/forms/widgets/url.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/forms/templates/django/forms/widgets/checkbox.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/forms/templates/django/forms/widgets/date.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/forms/templates/django/forms/widgets/datetime.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/forms/templates/django/forms/widgets/email.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/forms/templates/django/forms/widgets/file.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/forms/templates/django/forms/widgets/hidden.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/forms/templates/django/forms/widgets/number.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/forms/templates/django/forms/widgets/password.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/forms/templates/django/forms/widgets/text.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/forms/templates/django/forms/widgets/time.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/forms/templates/django/forms/widgets/url.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/middleware/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/template/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/template/loaders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/django/views/decorators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip-20.0.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip-20.0.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip-20.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip-20.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/index/__init__.py: -------------------------------------------------------------------------------- 1 | """Index interaction code 2 | """ 3 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/network/__init__.py: -------------------------------------------------------------------------------- 1 | """Contains purely network-related utilities. 2 | """ 3 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/operations/build/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/operations/install/__init__.py: -------------------------------------------------------------------------------- 1 | """For modules related to installing packages. 2 | """ 3 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/resolution/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import contents, where 2 | 3 | __version__ = "2020.04.05.1" 4 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.9' 2 | 3 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/msgpack/_version.py: -------------------------------------------------------------------------------- 1 | version = (1, 0, 0) 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pkg_resources/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pytz-2019.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pytz-2019.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pytz 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/pytz-2019.3.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools-46.1.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools-46.1.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | easy_install 2 | pkg_resources 3 | setuptools 4 | -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools-46.1.3.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/setuptools/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site-packages/sqlparse-0.3.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/sqlparse-0.3.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | sqlparse 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/wheel-0.34.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/wheel-0.34.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | wheel 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/wheel/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.34.2' 2 | -------------------------------------------------------------------------------- /env/Lib/site-packages/wheel/cli/install.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/Lib/site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/site.py -------------------------------------------------------------------------------- /env/Lib/sre_compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/sre_compile.py -------------------------------------------------------------------------------- /env/Lib/sre_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/sre_constants.py -------------------------------------------------------------------------------- /env/Lib/sre_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/sre_parse.py -------------------------------------------------------------------------------- /env/Lib/stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/stat.py -------------------------------------------------------------------------------- /env/Lib/struct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/struct.py -------------------------------------------------------------------------------- /env/Lib/tarfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/tarfile.py -------------------------------------------------------------------------------- /env/Lib/tempfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/tempfile.py -------------------------------------------------------------------------------- /env/Lib/token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/token.py -------------------------------------------------------------------------------- /env/Lib/tokenize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/tokenize.py -------------------------------------------------------------------------------- /env/Lib/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/types.py -------------------------------------------------------------------------------- /env/Lib/warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/warnings.py -------------------------------------------------------------------------------- /env/Lib/weakref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Lib/weakref.py -------------------------------------------------------------------------------- /env/Scripts/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Scripts/activate -------------------------------------------------------------------------------- /env/Scripts/activate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Scripts/activate.bat -------------------------------------------------------------------------------- /env/Scripts/activate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Scripts/activate.ps1 -------------------------------------------------------------------------------- /env/Scripts/activate.xsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Scripts/activate.xsh -------------------------------------------------------------------------------- /env/Scripts/activate_this.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Scripts/activate_this.py -------------------------------------------------------------------------------- /env/Scripts/deactivate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Scripts/deactivate.bat -------------------------------------------------------------------------------- /env/Scripts/django-admin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Scripts/django-admin.exe -------------------------------------------------------------------------------- /env/Scripts/django-admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Scripts/django-admin.py -------------------------------------------------------------------------------- /env/Scripts/easy_install-3.8.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Scripts/easy_install-3.8.exe -------------------------------------------------------------------------------- /env/Scripts/easy_install.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Scripts/easy_install.exe -------------------------------------------------------------------------------- /env/Scripts/pip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Scripts/pip.exe -------------------------------------------------------------------------------- /env/Scripts/pip3.8.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Scripts/pip3.8.exe -------------------------------------------------------------------------------- /env/Scripts/pip3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Scripts/pip3.exe -------------------------------------------------------------------------------- /env/Scripts/python.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Scripts/python.exe -------------------------------------------------------------------------------- /env/Scripts/python3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Scripts/python3.dll -------------------------------------------------------------------------------- /env/Scripts/python38.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Scripts/python38.dll -------------------------------------------------------------------------------- /env/Scripts/pythonw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Scripts/pythonw.exe -------------------------------------------------------------------------------- /env/Scripts/sqlformat.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Scripts/sqlformat.exe -------------------------------------------------------------------------------- /env/Scripts/wheel.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/Scripts/wheel.exe -------------------------------------------------------------------------------- /env/tcl/tcl8.6/auto.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/auto.tcl -------------------------------------------------------------------------------- /env/tcl/tcl8.6/clock.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/clock.tcl -------------------------------------------------------------------------------- /env/tcl/tcl8.6/encoding/ascii.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/encoding/ascii.enc -------------------------------------------------------------------------------- /env/tcl/tcl8.6/encoding/big5.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/encoding/big5.enc -------------------------------------------------------------------------------- /env/tcl/tcl8.6/encoding/cp437.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/encoding/cp437.enc -------------------------------------------------------------------------------- /env/tcl/tcl8.6/encoding/cp737.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/encoding/cp737.enc -------------------------------------------------------------------------------- /env/tcl/tcl8.6/encoding/cp775.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/encoding/cp775.enc -------------------------------------------------------------------------------- /env/tcl/tcl8.6/encoding/cp850.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/encoding/cp850.enc -------------------------------------------------------------------------------- /env/tcl/tcl8.6/encoding/cp852.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/encoding/cp852.enc -------------------------------------------------------------------------------- /env/tcl/tcl8.6/encoding/cp855.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/encoding/cp855.enc -------------------------------------------------------------------------------- /env/tcl/tcl8.6/encoding/cp857.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/encoding/cp857.enc -------------------------------------------------------------------------------- /env/tcl/tcl8.6/encoding/cp860.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/encoding/cp860.enc -------------------------------------------------------------------------------- /env/tcl/tcl8.6/encoding/cp861.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/encoding/cp861.enc -------------------------------------------------------------------------------- /env/tcl/tcl8.6/encoding/cp862.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/encoding/cp862.enc -------------------------------------------------------------------------------- /env/tcl/tcl8.6/encoding/cp863.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/encoding/cp863.enc -------------------------------------------------------------------------------- /env/tcl/tcl8.6/encoding/cp864.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/encoding/cp864.enc -------------------------------------------------------------------------------- /env/tcl/tcl8.6/encoding/cp865.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/encoding/cp865.enc -------------------------------------------------------------------------------- /env/tcl/tcl8.6/encoding/cp866.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/encoding/cp866.enc -------------------------------------------------------------------------------- /env/tcl/tcl8.6/encoding/cp869.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/encoding/cp869.enc -------------------------------------------------------------------------------- /env/tcl/tcl8.6/encoding/cp874.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/encoding/cp874.enc -------------------------------------------------------------------------------- /env/tcl/tcl8.6/encoding/cp932.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/encoding/cp932.enc -------------------------------------------------------------------------------- /env/tcl/tcl8.6/encoding/cp936.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/encoding/cp936.enc -------------------------------------------------------------------------------- /env/tcl/tcl8.6/encoding/cp949.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/encoding/cp949.enc -------------------------------------------------------------------------------- /env/tcl/tcl8.6/encoding/cp950.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/encoding/cp950.enc -------------------------------------------------------------------------------- /env/tcl/tcl8.6/history.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/history.tcl -------------------------------------------------------------------------------- /env/tcl/tcl8.6/http1.0/http.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/http1.0/http.tcl -------------------------------------------------------------------------------- /env/tcl/tcl8.6/init.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/init.tcl -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/af.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/af.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/af_za.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/af_za.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/ar.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/ar.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/ar_in.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/ar_in.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/ar_jo.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/ar_jo.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/ar_lb.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/ar_lb.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/ar_sy.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/ar_sy.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/be.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/be.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/bg.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/bg.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/bn.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/bn.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/bn_in.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/bn_in.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/ca.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/ca.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/cs.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/cs.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/da.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/da.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/de.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/de.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/de_at.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/de_at.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/de_be.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/de_be.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/el.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/el.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/en_au.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/en_au.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/en_be.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/en_be.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/en_bw.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/en_bw.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/en_ca.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/en_ca.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/en_gb.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/en_gb.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/en_hk.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/en_hk.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/en_ie.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/en_ie.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/en_in.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/en_in.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/en_nz.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/en_nz.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/en_ph.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/en_ph.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/en_sg.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/en_sg.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/en_za.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/en_za.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/en_zw.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/en_zw.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/eo.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/eo.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/es.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/es.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/es_ar.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/es_ar.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/es_bo.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/es_bo.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/es_cl.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/es_cl.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/es_co.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/es_co.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/es_cr.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/es_cr.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/es_do.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/es_do.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/es_ec.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/es_ec.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/es_gt.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/es_gt.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/es_hn.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/es_hn.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/es_mx.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/es_mx.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/es_ni.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/es_ni.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/es_pa.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/es_pa.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/es_pe.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/es_pe.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/es_pr.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/es_pr.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/es_py.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/es_py.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/es_sv.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/es_sv.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/es_uy.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/es_uy.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/es_ve.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/es_ve.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/et.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/et.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/eu.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/eu.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/eu_es.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/eu_es.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/fa.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/fa.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/fa_in.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/fa_in.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/fa_ir.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/fa_ir.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/fi.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/fi.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/fo.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/fo.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/fo_fo.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/fo_fo.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/fr.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/fr.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/fr_be.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/fr_be.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/fr_ca.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/fr_ca.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/fr_ch.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/fr_ch.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/ga.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/ga.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/ga_ie.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/ga_ie.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/gl.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/gl.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/gl_es.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/gl_es.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/gv.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/gv.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/gv_gb.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/gv_gb.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/he.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/he.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/hi.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/hi.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/hi_in.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/hi_in.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/hr.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/hr.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/hu.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/hu.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/id.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/id.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/id_id.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/id_id.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/is.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/is.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/it.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/it.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/it_ch.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/it_ch.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/ja.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/ja.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/kl.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/kl.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/kl_gl.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/kl_gl.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/ko.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/ko.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/ko_kr.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/ko_kr.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/kok.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/kok.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/kok_in.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/kok_in.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/kw.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/kw.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/kw_gb.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/kw_gb.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/lt.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/lt.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/lv.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/lv.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/mk.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/mk.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/mr.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/mr.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/mr_in.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/mr_in.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/ms.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/ms.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/ms_my.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/ms_my.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/mt.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/mt.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/nb.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/nb.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/nl.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/nl.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/nl_be.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/nl_be.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/nn.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/nn.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/pl.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/pl.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/pt.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/pt.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/pt_br.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/pt_br.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/ro.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/ro.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/ru.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/ru.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/ru_ua.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/ru_ua.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/sh.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/sh.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/sk.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/sk.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/sl.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/sl.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/sq.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/sq.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/sr.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/sr.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/sv.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/sv.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/sw.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/sw.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/ta.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/ta.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/ta_in.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/ta_in.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/te.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/te.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/te_in.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/te_in.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/th.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/th.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/tr.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/tr.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/uk.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/uk.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/vi.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/vi.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/zh.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/zh.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/zh_cn.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/zh_cn.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/zh_hk.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/zh_hk.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/zh_sg.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/zh_sg.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/msgs/zh_tw.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/msgs/zh_tw.msg -------------------------------------------------------------------------------- /env/tcl/tcl8.6/package.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/package.tcl -------------------------------------------------------------------------------- /env/tcl/tcl8.6/parray.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/parray.tcl -------------------------------------------------------------------------------- /env/tcl/tcl8.6/safe.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/safe.tcl -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tclIndex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tclIndex -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tm.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tm.tcl -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/Africa/Juba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/Africa/Juba -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/Africa/Lome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/Africa/Lome -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/Asia/Aden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/Asia/Aden -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/Asia/Almaty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/Asia/Almaty -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/Asia/Amman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/Asia/Amman -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/Asia/Anadyr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/Asia/Anadyr -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/Asia/Aqtau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/Asia/Aqtau -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/Asia/Aqtobe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/Asia/Aqtobe -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/Asia/Atyrau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/Asia/Atyrau -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/Asia/Baku: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/Asia/Baku -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/Asia/Beirut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/Asia/Beirut -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/Asia/Brunei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/Asia/Brunei -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/Asia/Chita: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/Asia/Chita -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/Asia/Dacca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/Asia/Dacca -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/Asia/Dhaka: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/Asia/Dhaka -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/Asia/Dili: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/Asia/Dili -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/Asia/Dubai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/Asia/Dubai -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/Asia/Gaza: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/Asia/Gaza -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/Asia/Harbin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/Asia/Harbin -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/Asia/Hebron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/Asia/Hebron -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/Asia/Hovd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/Asia/Hovd -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/Asia/Kabul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/Asia/Kabul -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/Asia/Kuwait: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/Asia/Kuwait -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/Asia/Macao: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/Asia/Macao -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/Asia/Macau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/Asia/Macau -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/Asia/Manila: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/Asia/Manila -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/Asia/Muscat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/Asia/Muscat -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/Asia/Omsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/Asia/Omsk -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/Asia/Oral: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/Asia/Oral -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/Asia/Qatar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/Asia/Qatar -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/Asia/Riyadh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/Asia/Riyadh -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/Asia/Saigon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/Asia/Saigon -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/Asia/Seoul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/Asia/Seoul -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/Asia/Taipei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/Asia/Taipei -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/Asia/Tehran: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/Asia/Tehran -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/Asia/Thimbu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/Asia/Thimbu -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/Asia/Tokyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/Asia/Tokyo -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/Asia/Tomsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/Asia/Tomsk -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/CET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/CET -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/CST6CDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/CST6CDT -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/Cuba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/Cuba -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/EET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/EET -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/EST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/EST -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/EST5EDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/EST5EDT -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/Egypt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/Egypt -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/Eire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/Eire -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/Etc/GMT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/Etc/GMT -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/Etc/GMT0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/Etc/GMT0 -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/Etc/UCT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/Etc/UCT -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/Etc/UTC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/Etc/UTC -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/Etc/Zulu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/Etc/Zulu -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/GB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/GB -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/GB-Eire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/GB-Eire -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/GMT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/GMT -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/GMT+0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/GMT+0 -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/GMT-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/GMT-0 -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/GMT0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/GMT0 -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/HST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/HST -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/Hongkong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/Hongkong -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/Iceland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/Iceland -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/Iran: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/Iran -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/Israel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/Israel -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/Jamaica: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/Jamaica -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/Japan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/Japan -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/Libya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/Libya -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/MET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/MET -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/MST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/MST -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/MST7MDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/MST7MDT -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/NZ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/NZ -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/NZ-CHAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/NZ-CHAT -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/Navajo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/Navajo -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/PRC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/PRC -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/PST8PDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/PST8PDT -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/Poland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/Poland -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/Portugal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/Portugal -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/ROC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/ROC -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/ROK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/ROK -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/Turkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/Turkey -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/UCT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/UCT -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/US/Samoa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/US/Samoa -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/UTC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/UTC -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/W-SU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/W-SU -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/WET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/WET -------------------------------------------------------------------------------- /env/tcl/tcl8.6/tzdata/Zulu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/tzdata/Zulu -------------------------------------------------------------------------------- /env/tcl/tcl8.6/word.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tcl8.6/word.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/bgerror.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/bgerror.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/button.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/button.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/choosedir.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/choosedir.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/clrpick.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/clrpick.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/comdlg.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/comdlg.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/console.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/console.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/demos/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/demos/README -------------------------------------------------------------------------------- /env/tcl/tk8.6/demos/arrow.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/demos/arrow.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/demos/bind.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/demos/bind.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/demos/bitmap.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/demos/bitmap.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/demos/browse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/demos/browse -------------------------------------------------------------------------------- /env/tcl/tk8.6/demos/button.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/demos/button.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/demos/check.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/demos/check.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/demos/colors.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/demos/colors.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/demos/combo.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/demos/combo.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/demos/ctext.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/demos/ctext.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/demos/en.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/demos/en.msg -------------------------------------------------------------------------------- /env/tcl/tk8.6/demos/entry1.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/demos/entry1.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/demos/entry2.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/demos/entry2.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/demos/entry3.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/demos/entry3.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/demos/floor.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/demos/floor.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/demos/form.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/demos/form.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/demos/hello: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/demos/hello -------------------------------------------------------------------------------- /env/tcl/tk8.6/demos/hscale.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/demos/hscale.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/demos/icon.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/demos/icon.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/demos/image1.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/demos/image1.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/demos/image2.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/demos/image2.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/demos/items.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/demos/items.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/demos/ixset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/demos/ixset -------------------------------------------------------------------------------- /env/tcl/tk8.6/demos/label.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/demos/label.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/demos/mclist.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/demos/mclist.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/demos/menu.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/demos/menu.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/demos/menubu.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/demos/menubu.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/demos/msgbox.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/demos/msgbox.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/demos/nl.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/demos/nl.msg -------------------------------------------------------------------------------- /env/tcl/tk8.6/demos/paned1.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/demos/paned1.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/demos/paned2.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/demos/paned2.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/demos/plot.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/demos/plot.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/demos/puzzle.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/demos/puzzle.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/demos/radio.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/demos/radio.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/demos/rmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/demos/rmt -------------------------------------------------------------------------------- /env/tcl/tk8.6/demos/rolodex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/demos/rolodex -------------------------------------------------------------------------------- /env/tcl/tk8.6/demos/ruler.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/demos/ruler.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/demos/search.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/demos/search.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/demos/spin.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/demos/spin.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/demos/square: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/demos/square -------------------------------------------------------------------------------- /env/tcl/tk8.6/demos/states.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/demos/states.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/demos/style.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/demos/style.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/demos/tclIndex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/demos/tclIndex -------------------------------------------------------------------------------- /env/tcl/tk8.6/demos/tcolor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/demos/tcolor -------------------------------------------------------------------------------- /env/tcl/tk8.6/demos/text.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/demos/text.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/demos/timer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/demos/timer -------------------------------------------------------------------------------- /env/tcl/tk8.6/demos/tree.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/demos/tree.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/demos/ttkbut.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/demos/ttkbut.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/demos/twind.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/demos/twind.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/demos/vscale.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/demos/vscale.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/demos/widget: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/demos/widget -------------------------------------------------------------------------------- /env/tcl/tk8.6/dialog.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/dialog.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/entry.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/entry.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/focus.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/focus.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/fontchooser.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/fontchooser.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/iconlist.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/iconlist.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/icons.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/icons.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/images/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/images/README -------------------------------------------------------------------------------- /env/tcl/tk8.6/images/logo.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/images/logo.eps -------------------------------------------------------------------------------- /env/tcl/tk8.6/license.terms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/license.terms -------------------------------------------------------------------------------- /env/tcl/tk8.6/listbox.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/listbox.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/megawidget.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/megawidget.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/menu.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/menu.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/mkpsenc.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/mkpsenc.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/msgbox.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/msgbox.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/msgs/cs.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/msgs/cs.msg -------------------------------------------------------------------------------- /env/tcl/tk8.6/msgs/da.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/msgs/da.msg -------------------------------------------------------------------------------- /env/tcl/tk8.6/msgs/de.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/msgs/de.msg -------------------------------------------------------------------------------- /env/tcl/tk8.6/msgs/el.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/msgs/el.msg -------------------------------------------------------------------------------- /env/tcl/tk8.6/msgs/en.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/msgs/en.msg -------------------------------------------------------------------------------- /env/tcl/tk8.6/msgs/en_gb.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/msgs/en_gb.msg -------------------------------------------------------------------------------- /env/tcl/tk8.6/msgs/eo.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/msgs/eo.msg -------------------------------------------------------------------------------- /env/tcl/tk8.6/msgs/es.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/msgs/es.msg -------------------------------------------------------------------------------- /env/tcl/tk8.6/msgs/fr.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/msgs/fr.msg -------------------------------------------------------------------------------- /env/tcl/tk8.6/msgs/hu.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/msgs/hu.msg -------------------------------------------------------------------------------- /env/tcl/tk8.6/msgs/it.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/msgs/it.msg -------------------------------------------------------------------------------- /env/tcl/tk8.6/msgs/nl.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/msgs/nl.msg -------------------------------------------------------------------------------- /env/tcl/tk8.6/msgs/pl.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/msgs/pl.msg -------------------------------------------------------------------------------- /env/tcl/tk8.6/msgs/pt.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/msgs/pt.msg -------------------------------------------------------------------------------- /env/tcl/tk8.6/msgs/ru.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/msgs/ru.msg -------------------------------------------------------------------------------- /env/tcl/tk8.6/msgs/sv.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/msgs/sv.msg -------------------------------------------------------------------------------- /env/tcl/tk8.6/obsolete.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/obsolete.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/optMenu.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/optMenu.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/palette.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/palette.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/panedwindow.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/panedwindow.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/pkgIndex.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/pkgIndex.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/safetk.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/safetk.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/scale.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/scale.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/scrlbar.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/scrlbar.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/spinbox.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/spinbox.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/tclIndex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/tclIndex -------------------------------------------------------------------------------- /env/tcl/tk8.6/tearoff.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/tearoff.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/text.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/text.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/tk.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/tk.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/tkfbox.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/tkfbox.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/ttk/altTheme.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/ttk/altTheme.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/ttk/button.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/ttk/button.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/ttk/combobox.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/ttk/combobox.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/ttk/cursors.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/ttk/cursors.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/ttk/defaults.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/ttk/defaults.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/ttk/entry.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/ttk/entry.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/ttk/fonts.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/ttk/fonts.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/ttk/notebook.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/ttk/notebook.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/ttk/progress.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/ttk/progress.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/ttk/scale.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/ttk/scale.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/ttk/sizegrip.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/ttk/sizegrip.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/ttk/spinbox.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/ttk/spinbox.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/ttk/treeview.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/ttk/treeview.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/ttk/ttk.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/ttk/ttk.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/ttk/utils.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/ttk/utils.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/ttk/winTheme.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/ttk/winTheme.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/ttk/xpTheme.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/ttk/xpTheme.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/unsupported.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/unsupported.tcl -------------------------------------------------------------------------------- /env/tcl/tk8.6/xmfbox.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/env/tcl/tk8.6/xmfbox.tcl -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/static/css/main.css -------------------------------------------------------------------------------- /static/images/arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/static/images/arrow-down.png -------------------------------------------------------------------------------- /static/images/arrow-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/static/images/arrow-up.png -------------------------------------------------------------------------------- /static/images/book.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/static/images/book.jpg -------------------------------------------------------------------------------- /static/images/cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/static/images/cart.png -------------------------------------------------------------------------------- /static/images/headphones.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/static/images/headphones.jpg -------------------------------------------------------------------------------- /static/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/static/images/placeholder.png -------------------------------------------------------------------------------- /static/images/shirt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/static/images/shirt.jpg -------------------------------------------------------------------------------- /static/images/shoes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/static/images/shoes.jpg -------------------------------------------------------------------------------- /static/images/sourcecode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/static/images/sourcecode.jpg -------------------------------------------------------------------------------- /static/images/watch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/static/images/watch.jpg -------------------------------------------------------------------------------- /static/js/cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/static/js/cart.js -------------------------------------------------------------------------------- /store/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /store/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/store/admin.py -------------------------------------------------------------------------------- /store/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/store/apps.py -------------------------------------------------------------------------------- /store/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /store/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/store/models.py -------------------------------------------------------------------------------- /store/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/store/tests.py -------------------------------------------------------------------------------- /store/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/store/urls.py -------------------------------------------------------------------------------- /store/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/store/utils.py -------------------------------------------------------------------------------- /store/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divanov11/ecommerce_django_mod4/HEAD/store/views.py --------------------------------------------------------------------------------