├── .DS_Store ├── ._.DS_Store ├── C++ ├── DigiUSB Windows Driver │ ├── 7ZDP_LZMA.sfx │ ├── 7zDP_LZMA.cfg │ ├── DigiUSB.inf │ ├── InstallDriver.exe │ ├── Instructions.txt │ ├── _DriverFiles.7z │ ├── amd64 │ │ ├── libusb0.dll │ │ ├── libusb0.sys │ │ └── libusbK.dll │ ├── dpinst.xml │ ├── dpinst32.exe │ ├── dpinst64.exe │ ├── dpscat.exe │ ├── re-pack-files.cmd │ └── x86 │ │ ├── libusb0.sys │ │ ├── libusb0_x86.dll │ │ └── libusbK_x86.dll ├── monitor │ ├── Makefile │ └── digiusb.cpp ├── receive │ ├── Makefile │ └── receive.cpp └── send │ ├── Makefile │ └── send.cpp ├── Python ├── DigiBlink │ ├── DigiRGB Readme.txt │ ├── DigiRGBMail Readme.txt │ ├── source │ │ ├── DigiRGB.py │ │ ├── DigiRGBMail.py │ │ └── arduino │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── libusb-1.0.dll │ │ │ ├── usbdevice.py │ │ │ └── usbdevice.pyc │ └── windows │ │ ├── DigiRGB.exe │ │ ├── DigiRGB.exe.manifest │ │ ├── DigiRGBMail.exe │ │ ├── DigiRGBMail.exe.manifest │ │ ├── Microsoft.VC90.CRT.manifest │ │ ├── _ctypes.pyd │ │ ├── _hashlib.pyd │ │ ├── _socket.pyd │ │ ├── _ssl.pyd │ │ ├── arduino │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── libusb-1.0.dll │ │ ├── usbdevice.py │ │ └── usbdevice.pyc │ │ ├── bz2.pyd │ │ ├── libusb0.dll │ │ ├── msvcm90.dll │ │ ├── msvcp90.dll │ │ ├── msvcr90.dll │ │ ├── python27.dll │ │ ├── select.pyd │ │ └── unicodedata.pyd ├── DigiUSB │ ├── .DS_Store │ ├── ._.DS_Store │ ├── linux │ │ ├── DigiUSB Monitor │ │ └── readme.txt │ ├── mac │ │ ├── monitor.app │ │ │ └── Contents │ │ │ │ ├── Frameworks │ │ │ │ └── libwx_macud-2.8.0.8.0.dylib │ │ │ │ ├── Info.plist │ │ │ │ ├── MacOS │ │ │ │ ├── monitor │ │ │ │ └── python │ │ │ │ ├── PkgInfo │ │ │ │ └── Resources │ │ │ │ ├── PythonApplet.icns │ │ │ │ ├── __boot__.py │ │ │ │ ├── __error__.sh │ │ │ │ ├── include │ │ │ │ ├── lib │ │ │ │ └── python2.7 │ │ │ │ │ ├── config │ │ │ │ │ ├── lib-dynload │ │ │ │ │ └── wx │ │ │ │ │ │ ├── _controls_.so │ │ │ │ │ │ ├── _core_.so │ │ │ │ │ │ ├── _gdi_.so │ │ │ │ │ │ ├── _misc_.so │ │ │ │ │ │ └── _windows_.so │ │ │ │ │ ├── site-packages.zip │ │ │ │ │ └── site.pyc │ │ │ │ ├── monitor.py │ │ │ │ └── site.pyc │ │ └── readme.txt │ ├── readme.txt │ ├── source │ │ ├── arduino │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── libusb-1.0.dll │ │ │ ├── usbdevice.py │ │ │ └── usbdevice.pyc │ │ ├── digiscope.py │ │ ├── monitor.py │ │ ├── read.py │ │ ├── receive.py │ │ ├── send.py │ │ └── write.py │ └── windows │ │ ├── Microsoft.VC90.CRT.manifest │ │ ├── _MEI │ │ ├── tcl │ │ │ ├── auto.tcl │ │ │ ├── clock.tcl │ │ │ ├── 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 │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── San_Juan │ │ │ │ │ │ ├── San_Luis │ │ │ │ │ │ ├── Tucuman │ │ │ │ │ │ └── Ushuaia │ │ │ │ │ ├── Aruba │ │ │ │ │ ├── Asuncion │ │ │ │ │ ├── Atikokan │ │ │ │ │ ├── Atka │ │ │ │ │ ├── Bahia │ │ │ │ │ ├── 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 │ │ │ │ │ ├── Cuiaba │ │ │ │ │ ├── Curacao │ │ │ │ │ ├── Danmarkshavn │ │ │ │ │ ├── Dawson │ │ │ │ │ ├── Dawson_Creek │ │ │ │ │ ├── Denver │ │ │ │ │ ├── Detroit │ │ │ │ │ ├── Dominica │ │ │ │ │ ├── Edmonton │ │ │ │ │ ├── Eirunepe │ │ │ │ │ ├── El_Salvador │ │ │ │ │ ├── Ensenada │ │ │ │ │ ├── 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 │ │ │ │ │ ├── La_Paz │ │ │ │ │ ├── Lima │ │ │ │ │ ├── Los_Angeles │ │ │ │ │ ├── Louisville │ │ │ │ │ ├── Maceio │ │ │ │ │ ├── Managua │ │ │ │ │ ├── Manaus │ │ │ │ │ ├── Marigot │ │ │ │ │ ├── Martinique │ │ │ │ │ ├── Mazatlan │ │ │ │ │ ├── Mendoza │ │ │ │ │ ├── Menominee │ │ │ │ │ ├── Merida │ │ │ │ │ ├── Mexico_City │ │ │ │ │ ├── Miquelon │ │ │ │ │ ├── Moncton │ │ │ │ │ ├── Monterrey │ │ │ │ │ ├── Montevideo │ │ │ │ │ ├── Montreal │ │ │ │ │ ├── Montserrat │ │ │ │ │ ├── Nassau │ │ │ │ │ ├── New_York │ │ │ │ │ ├── Nipigon │ │ │ │ │ ├── Nome │ │ │ │ │ ├── Noronha │ │ │ │ │ ├── North_Dakota │ │ │ │ │ │ ├── Center │ │ │ │ │ │ └── New_Salem │ │ │ │ │ ├── Panama │ │ │ │ │ ├── Pangnirtung │ │ │ │ │ ├── Paramaribo │ │ │ │ │ ├── Phoenix │ │ │ │ │ ├── Port-au-Prince │ │ │ │ │ ├── Port_of_Spain │ │ │ │ │ ├── Porto_Acre │ │ │ │ │ ├── Porto_Velho │ │ │ │ │ ├── Puerto_Rico │ │ │ │ │ ├── Rainy_River │ │ │ │ │ ├── Rankin_Inlet │ │ │ │ │ ├── Recife │ │ │ │ │ ├── Regina │ │ │ │ │ ├── Resolute │ │ │ │ │ ├── Rio_Branco │ │ │ │ │ ├── Rosario │ │ │ │ │ ├── Santiago │ │ │ │ │ ├── Santo_Domingo │ │ │ │ │ ├── Sao_Paulo │ │ │ │ │ ├── Scoresbysund │ │ │ │ │ ├── Shiprock │ │ │ │ │ ├── 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 │ │ │ │ │ ├── Mawson │ │ │ │ │ ├── McMurdo │ │ │ │ │ ├── Palmer │ │ │ │ │ ├── Rothera │ │ │ │ │ ├── South_Pole │ │ │ │ │ ├── Syowa │ │ │ │ │ └── Vostok │ │ │ │ ├── Arctic │ │ │ │ │ └── Longyearbyen │ │ │ │ ├── Asia │ │ │ │ │ ├── Aden │ │ │ │ │ ├── Almaty │ │ │ │ │ ├── Amman │ │ │ │ │ ├── Anadyr │ │ │ │ │ ├── Aqtau │ │ │ │ │ ├── Aqtobe │ │ │ │ │ ├── Ashgabat │ │ │ │ │ ├── Ashkhabad │ │ │ │ │ ├── Baghdad │ │ │ │ │ ├── Bahrain │ │ │ │ │ ├── Baku │ │ │ │ │ ├── Bangkok │ │ │ │ │ ├── Beirut │ │ │ │ │ ├── Bishkek │ │ │ │ │ ├── Brunei │ │ │ │ │ ├── Calcutta │ │ │ │ │ ├── Choibalsan │ │ │ │ │ ├── Chongqing │ │ │ │ │ ├── Chungking │ │ │ │ │ ├── Colombo │ │ │ │ │ ├── Dacca │ │ │ │ │ ├── Damascus │ │ │ │ │ ├── Dhaka │ │ │ │ │ ├── Dili │ │ │ │ │ ├── Dubai │ │ │ │ │ ├── Dushanbe │ │ │ │ │ ├── Gaza │ │ │ │ │ ├── Harbin │ │ │ │ │ ├── Ho_Chi_Minh │ │ │ │ │ ├── Hong_Kong │ │ │ │ │ ├── Hovd │ │ │ │ │ ├── Irkutsk │ │ │ │ │ ├── Istanbul │ │ │ │ │ ├── Jakarta │ │ │ │ │ ├── Jayapura │ │ │ │ │ ├── Jerusalem │ │ │ │ │ ├── Kabul │ │ │ │ │ ├── Kamchatka │ │ │ │ │ ├── Karachi │ │ │ │ │ ├── Kashgar │ │ │ │ │ ├── Katmandu │ │ │ │ │ ├── Kolkata │ │ │ │ │ ├── Krasnoyarsk │ │ │ │ │ ├── Kuala_Lumpur │ │ │ │ │ ├── Kuching │ │ │ │ │ ├── Kuwait │ │ │ │ │ ├── Macao │ │ │ │ │ ├── Macau │ │ │ │ │ ├── Magadan │ │ │ │ │ ├── Makassar │ │ │ │ │ ├── Manila │ │ │ │ │ ├── Muscat │ │ │ │ │ ├── Nicosia │ │ │ │ │ ├── Novosibirsk │ │ │ │ │ ├── Omsk │ │ │ │ │ ├── Oral │ │ │ │ │ ├── Phnom_Penh │ │ │ │ │ ├── Pontianak │ │ │ │ │ ├── Pyongyang │ │ │ │ │ ├── Qatar │ │ │ │ │ ├── Qyzylorda │ │ │ │ │ ├── Rangoon │ │ │ │ │ ├── Riyadh │ │ │ │ │ ├── Saigon │ │ │ │ │ ├── Sakhalin │ │ │ │ │ ├── Samarkand │ │ │ │ │ ├── Seoul │ │ │ │ │ ├── Shanghai │ │ │ │ │ ├── Singapore │ │ │ │ │ ├── Taipei │ │ │ │ │ ├── Tashkent │ │ │ │ │ ├── Tbilisi │ │ │ │ │ ├── Tehran │ │ │ │ │ ├── Tel_Aviv │ │ │ │ │ ├── Thimbu │ │ │ │ │ ├── Thimphu │ │ │ │ │ ├── Tokyo │ │ │ │ │ ├── Ujung_Pandang │ │ │ │ │ ├── Ulaanbaatar │ │ │ │ │ ├── Ulan_Bator │ │ │ │ │ ├── Urumqi │ │ │ │ │ ├── Vientiane │ │ │ │ │ ├── Vladivostok │ │ │ │ │ ├── Yakutsk │ │ │ │ │ ├── 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 │ │ │ │ │ ├── Athens │ │ │ │ │ ├── Belfast │ │ │ │ │ ├── Belgrade │ │ │ │ │ ├── Berlin │ │ │ │ │ ├── Bratislava │ │ │ │ │ ├── Brussels │ │ │ │ │ ├── Bucharest │ │ │ │ │ ├── Budapest │ │ │ │ │ ├── Chisinau │ │ │ │ │ ├── Copenhagen │ │ │ │ │ ├── Dublin │ │ │ │ │ ├── Gibraltar │ │ │ │ │ ├── Guernsey │ │ │ │ │ ├── Helsinki │ │ │ │ │ ├── Isle_of_Man │ │ │ │ │ ├── Istanbul │ │ │ │ │ ├── Jersey │ │ │ │ │ ├── Kaliningrad │ │ │ │ │ ├── Kiev │ │ │ │ │ ├── Lisbon │ │ │ │ │ ├── Ljubljana │ │ │ │ │ ├── London │ │ │ │ │ ├── Luxembourg │ │ │ │ │ ├── Madrid │ │ │ │ │ ├── Malta │ │ │ │ │ ├── Mariehamn │ │ │ │ │ ├── Minsk │ │ │ │ │ ├── Monaco │ │ │ │ │ ├── Moscow │ │ │ │ │ ├── Nicosia │ │ │ │ │ ├── Oslo │ │ │ │ │ ├── Paris │ │ │ │ │ ├── Podgorica │ │ │ │ │ ├── Prague │ │ │ │ │ ├── Riga │ │ │ │ │ ├── Rome │ │ │ │ │ ├── Samara │ │ │ │ │ ├── San_Marino │ │ │ │ │ ├── Sarajevo │ │ │ │ │ ├── Simferopol │ │ │ │ │ ├── Skopje │ │ │ │ │ ├── Sofia │ │ │ │ │ ├── Stockholm │ │ │ │ │ ├── Tallinn │ │ │ │ │ ├── Tirane │ │ │ │ │ ├── Tiraspol │ │ │ │ │ ├── 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 │ │ │ │ │ ├── Chatham │ │ │ │ │ ├── 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 │ │ │ │ │ ├── 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 │ │ └── tk │ │ │ ├── bgerror.tcl │ │ │ ├── button.tcl │ │ │ ├── choosedir.tcl │ │ │ ├── clrpick.tcl │ │ │ ├── comdlg.tcl │ │ │ ├── console.tcl │ │ │ ├── dialog.tcl │ │ │ ├── entry.tcl │ │ │ ├── focus.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 │ │ │ ├── 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 │ │ │ ├── treeview.tcl │ │ │ ├── ttk.tcl │ │ │ ├── utils.tcl │ │ │ ├── winTheme.tcl │ │ │ └── xpTheme.tcl │ │ │ ├── unsupported.tcl │ │ │ └── xmfbox.tcl │ │ ├── _ctypes.pyd │ │ ├── _hashlib.pyd │ │ ├── _socket.pyd │ │ ├── _ssl.pyd │ │ ├── _tkinter.pyd │ │ ├── arduino │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── libusb-1.0.dll │ │ ├── usbdevice.py │ │ └── usbdevice.pyc │ │ ├── bz2.pyd │ │ ├── digiscope.exe │ │ ├── digiscope.exe.manifest │ │ ├── gdiplus.dll │ │ ├── include │ │ └── pyconfig.h │ │ ├── libusb0.dll │ │ ├── matplotlib._cntr.pyd │ │ ├── matplotlib._delaunay.pyd │ │ ├── matplotlib._image.pyd │ │ ├── matplotlib._path.pyd │ │ ├── matplotlib._png.pyd │ │ ├── matplotlib._tri.pyd │ │ ├── matplotlib._windowing.pyd │ │ ├── matplotlib.backends._backend_agg.pyd │ │ ├── matplotlib.backends._tkagg.pyd │ │ ├── matplotlib.ft2font.pyd │ │ ├── matplotlib.ttconv.pyd │ │ ├── monitor.exe │ │ ├── monitor.exe.manifest │ │ ├── mpl-data │ │ ├── fonts │ │ │ ├── afm │ │ │ │ ├── cmex10.afm │ │ │ │ ├── cmmi10.afm │ │ │ │ ├── cmr10.afm │ │ │ │ ├── cmsy10.afm │ │ │ │ ├── cmtt10.afm │ │ │ │ ├── pagd8a.afm │ │ │ │ ├── pagdo8a.afm │ │ │ │ ├── pagk8a.afm │ │ │ │ ├── pagko8a.afm │ │ │ │ ├── pbkd8a.afm │ │ │ │ ├── pbkdi8a.afm │ │ │ │ ├── pbkl8a.afm │ │ │ │ ├── pbkli8a.afm │ │ │ │ ├── pcrb8a.afm │ │ │ │ ├── pcrbo8a.afm │ │ │ │ ├── pcrr8a.afm │ │ │ │ ├── pcrro8a.afm │ │ │ │ ├── phvb8a.afm │ │ │ │ ├── phvb8an.afm │ │ │ │ ├── phvbo8a.afm │ │ │ │ ├── phvbo8an.afm │ │ │ │ ├── phvl8a.afm │ │ │ │ ├── phvlo8a.afm │ │ │ │ ├── phvr8a.afm │ │ │ │ ├── phvr8an.afm │ │ │ │ ├── phvro8a.afm │ │ │ │ ├── phvro8an.afm │ │ │ │ ├── pncb8a.afm │ │ │ │ ├── pncbi8a.afm │ │ │ │ ├── pncr8a.afm │ │ │ │ ├── pncri8a.afm │ │ │ │ ├── pplb8a.afm │ │ │ │ ├── pplbi8a.afm │ │ │ │ ├── pplr8a.afm │ │ │ │ ├── pplri8a.afm │ │ │ │ ├── psyr.afm │ │ │ │ ├── ptmb8a.afm │ │ │ │ ├── ptmbi8a.afm │ │ │ │ ├── ptmr8a.afm │ │ │ │ ├── ptmri8a.afm │ │ │ │ ├── putb8a.afm │ │ │ │ ├── putbi8a.afm │ │ │ │ ├── putr8a.afm │ │ │ │ ├── putri8a.afm │ │ │ │ ├── pzcmi8a.afm │ │ │ │ └── pzdr.afm │ │ │ ├── pdfcorefonts │ │ │ │ ├── Courier-Bold.afm │ │ │ │ ├── Courier-BoldOblique.afm │ │ │ │ ├── Courier-Oblique.afm │ │ │ │ ├── Courier.afm │ │ │ │ ├── Helvetica-Bold.afm │ │ │ │ ├── Helvetica-BoldOblique.afm │ │ │ │ ├── Helvetica-Oblique.afm │ │ │ │ ├── Helvetica.afm │ │ │ │ ├── Symbol.afm │ │ │ │ ├── Times-Bold.afm │ │ │ │ ├── Times-BoldItalic.afm │ │ │ │ ├── Times-Italic.afm │ │ │ │ ├── Times-Roman.afm │ │ │ │ ├── ZapfDingbats.afm │ │ │ │ └── readme.txt │ │ │ └── ttf │ │ │ │ ├── COPYRIGHT.TXT │ │ │ │ ├── LICENSE_STIX │ │ │ │ ├── README.TXT │ │ │ │ ├── RELEASENOTES.TXT │ │ │ │ ├── STIXGeneral.ttf │ │ │ │ ├── STIXGeneralBol.ttf │ │ │ │ ├── STIXGeneralBolIta.ttf │ │ │ │ ├── STIXGeneralItalic.ttf │ │ │ │ ├── STIXNonUni.ttf │ │ │ │ ├── STIXNonUniBol.ttf │ │ │ │ ├── STIXNonUniBolIta.ttf │ │ │ │ ├── STIXNonUniIta.ttf │ │ │ │ ├── STIXSizFiveSymReg.ttf │ │ │ │ ├── STIXSizFourSymBol.ttf │ │ │ │ ├── STIXSizFourSymReg.ttf │ │ │ │ ├── STIXSizOneSymBol.ttf │ │ │ │ ├── STIXSizOneSymReg.ttf │ │ │ │ ├── STIXSizThreeSymBol.ttf │ │ │ │ ├── STIXSizThreeSymReg.ttf │ │ │ │ ├── STIXSizTwoSymBol.ttf │ │ │ │ ├── STIXSizTwoSymReg.ttf │ │ │ │ ├── Vera.ttf │ │ │ │ ├── VeraBI.ttf │ │ │ │ ├── VeraBd.ttf │ │ │ │ ├── VeraIt.ttf │ │ │ │ ├── VeraMoBI.ttf │ │ │ │ ├── VeraMoBd.ttf │ │ │ │ ├── VeraMoIt.ttf │ │ │ │ ├── VeraMono.ttf │ │ │ │ ├── VeraSe.ttf │ │ │ │ ├── VeraSeBd.ttf │ │ │ │ ├── cmb10.ttf │ │ │ │ ├── cmex10.ttf │ │ │ │ ├── cmmi10.ttf │ │ │ │ ├── cmr10.ttf │ │ │ │ ├── cmss10.ttf │ │ │ │ ├── cmsy10.ttf │ │ │ │ └── cmtt10.ttf │ │ ├── images │ │ │ ├── back.png │ │ │ ├── back.ppm │ │ │ ├── back.svg │ │ │ ├── back.xpm │ │ │ ├── filesave.png │ │ │ ├── filesave.ppm │ │ │ ├── filesave.svg │ │ │ ├── filesave.xpm │ │ │ ├── forward.png │ │ │ ├── forward.ppm │ │ │ ├── forward.svg │ │ │ ├── forward.xpm │ │ │ ├── hand.png │ │ │ ├── hand.ppm │ │ │ ├── hand.svg │ │ │ ├── hand.xpm │ │ │ ├── home.png │ │ │ ├── home.ppm │ │ │ ├── home.svg │ │ │ ├── home.xpm │ │ │ ├── matplotlib.gif │ │ │ ├── matplotlib.png │ │ │ ├── matplotlib.svg │ │ │ ├── move.png │ │ │ ├── move.ppm │ │ │ ├── move.svg │ │ │ ├── move.xpm │ │ │ ├── qt4_editor_options.png │ │ │ ├── qt4_editor_options.svg │ │ │ ├── stock_close.ppm │ │ │ ├── stock_close.xpm │ │ │ ├── stock_down.ppm │ │ │ ├── stock_down.xpm │ │ │ ├── stock_left.ppm │ │ │ ├── stock_left.xpm │ │ │ ├── stock_refresh.ppm │ │ │ ├── stock_refresh.xpm │ │ │ ├── stock_right.ppm │ │ │ ├── stock_right.xpm │ │ │ ├── stock_save_as.ppm │ │ │ ├── stock_save_as.xpm │ │ │ ├── stock_up.ppm │ │ │ ├── stock_up.xpm │ │ │ ├── stock_zoom-in.ppm │ │ │ ├── stock_zoom-in.xpm │ │ │ ├── stock_zoom-out.ppm │ │ │ ├── stock_zoom-out.xpm │ │ │ ├── subplots.png │ │ │ ├── subplots.ppm │ │ │ ├── subplots.xpm │ │ │ ├── zoom_to_rect.png │ │ │ ├── zoom_to_rect.ppm │ │ │ ├── zoom_to_rect.svg │ │ │ └── zoom_to_rect.xpm │ │ ├── lineprops.glade │ │ ├── matplotlibrc │ │ └── sample_data │ │ │ ├── AAPL.dat.gz │ │ │ ├── INTC.dat.gz │ │ │ ├── Minduka_Present_Blue_Pack.png │ │ │ ├── README.txt │ │ │ ├── aapl.csv │ │ │ ├── aapl.npy.gz │ │ │ ├── axes_grid │ │ │ └── bivariate_normal.npy │ │ │ ├── ct.raw.gz │ │ │ ├── data_x_x2_x3.csv │ │ │ ├── demodata.csv │ │ │ ├── eeg.dat │ │ │ ├── embedding_in_wx3.xrc │ │ │ ├── goog.npy │ │ │ ├── lena.jpg │ │ │ ├── lena.png │ │ │ ├── logo2.png │ │ │ ├── membrane.dat │ │ │ ├── msft.csv │ │ │ └── s1045.ima.gz │ │ ├── msvcm90.dll │ │ ├── msvcp90.dll │ │ ├── msvcr90.dll │ │ ├── numpy.core._dotblas.pyd │ │ ├── numpy.core._sort.pyd │ │ ├── numpy.core.multiarray.pyd │ │ ├── numpy.core.scalarmath.pyd │ │ ├── numpy.core.umath.pyd │ │ ├── numpy.fft.fftpack_lite.pyd │ │ ├── numpy.lib._compiled_base.pyd │ │ ├── numpy.linalg.lapack_lite.pyd │ │ ├── numpy.random.mtrand.pyd │ │ ├── pyexpat.pyd │ │ ├── python27.dll │ │ ├── pywintypes27.dll │ │ ├── read.exe │ │ ├── read.exe.manifest │ │ ├── receive.exe │ │ ├── receive.exe.manifest │ │ ├── select.pyd │ │ ├── send.exe │ │ ├── send.exe.manifest │ │ ├── tcl85.dll │ │ ├── tk85.dll │ │ ├── unicodedata.pyd │ │ ├── win32api.pyd │ │ ├── win32pdh.pyd │ │ ├── win32pipe.pyd │ │ ├── write.exe │ │ ├── write.exe.manifest │ │ ├── wx._controls_.pyd │ │ ├── wx._core_.pyd │ │ ├── wx._gdi_.pyd │ │ ├── wx._misc_.pyd │ │ ├── wx._windows_.pyd │ │ ├── wxbase28uh_net_vc.dll │ │ ├── wxbase28uh_vc.dll │ │ ├── wxmsw28uh_adv_vc.dll │ │ ├── wxmsw28uh_core_vc.dll │ │ └── wxmsw28uh_html_vc.dll └── Digispark-Cheerlights │ ├── readme.txt │ ├── source │ ├── DigiBlink-CheerLights.py │ ├── arduino │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── libusb-1.0.dll │ │ ├── usbdevice.py │ │ └── usbdevice.pyc │ ├── colors.cfg │ └── icons │ │ ├── blue.png │ │ ├── cyan.png │ │ ├── green.png │ │ ├── icon.ico │ │ ├── magenta.png │ │ ├── orange.png │ │ ├── purple.png │ │ ├── red.png │ │ ├── warmwhite.png │ │ ├── white.png │ │ └── yellow.png │ └── windows │ ├── DigiBlink-CheerLights.exe │ ├── DigiBlink-CheerLights.exe.manifest │ ├── Microsoft.VC90.CRT.manifest │ ├── _ctypes.pyd │ ├── _hashlib.pyd │ ├── _socket.pyd │ ├── _ssl.pyd │ ├── arduino │ ├── __init__.py │ ├── __init__.pyc │ ├── libusb-1.0.dll │ ├── usbdevice.py │ └── usbdevice.pyc │ ├── colors.cfg │ ├── gdiplus.dll │ ├── icons │ ├── blue.png │ ├── cyan.png │ ├── green.png │ ├── icon.ico │ ├── icons │ │ ├── blue.png │ │ ├── cyan.png │ │ ├── green.png │ │ ├── icon.ico │ │ ├── magenta.png │ │ ├── orange.png │ │ ├── purple.png │ │ ├── red.png │ │ ├── warmwhite.png │ │ ├── white.png │ │ └── yellow.png │ ├── magenta.png │ ├── orange.png │ ├── purple.png │ ├── red.png │ ├── warmwhite.png │ ├── white.png │ └── yellow.png │ ├── libusb0.dll │ ├── msvcm90.dll │ ├── msvcp90.dll │ ├── msvcr90.dll │ ├── python27.dll │ ├── select.pyd │ ├── unicodedata.pyd │ ├── wx._controls_.pyd │ ├── wx._core_.pyd │ ├── wx._gdi_.pyd │ ├── wx._misc_.pyd │ ├── wx._windows_.pyd │ ├── wxbase28uh_net_vc.dll │ ├── wxbase28uh_vc.dll │ ├── wxmsw28uh_adv_vc.dll │ ├── wxmsw28uh_core_vc.dll │ └── wxmsw28uh_html_vc.dll └── README.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/.DS_Store -------------------------------------------------------------------------------- /._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/._.DS_Store -------------------------------------------------------------------------------- /C++/DigiUSB Windows Driver/7ZDP_LZMA.sfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/C++/DigiUSB Windows Driver/7ZDP_LZMA.sfx -------------------------------------------------------------------------------- /C++/DigiUSB Windows Driver/7zDP_LZMA.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/C++/DigiUSB Windows Driver/7zDP_LZMA.cfg -------------------------------------------------------------------------------- /C++/DigiUSB Windows Driver/DigiUSB.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/C++/DigiUSB Windows Driver/DigiUSB.inf -------------------------------------------------------------------------------- /C++/DigiUSB Windows Driver/InstallDriver.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/C++/DigiUSB Windows Driver/InstallDriver.exe -------------------------------------------------------------------------------- /C++/DigiUSB Windows Driver/Instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/C++/DigiUSB Windows Driver/Instructions.txt -------------------------------------------------------------------------------- /C++/DigiUSB Windows Driver/_DriverFiles.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/C++/DigiUSB Windows Driver/_DriverFiles.7z -------------------------------------------------------------------------------- /C++/DigiUSB Windows Driver/amd64/libusb0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/C++/DigiUSB Windows Driver/amd64/libusb0.dll -------------------------------------------------------------------------------- /C++/DigiUSB Windows Driver/amd64/libusb0.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/C++/DigiUSB Windows Driver/amd64/libusb0.sys -------------------------------------------------------------------------------- /C++/DigiUSB Windows Driver/amd64/libusbK.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/C++/DigiUSB Windows Driver/amd64/libusbK.dll -------------------------------------------------------------------------------- /C++/DigiUSB Windows Driver/dpinst.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/C++/DigiUSB Windows Driver/dpinst.xml -------------------------------------------------------------------------------- /C++/DigiUSB Windows Driver/dpinst32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/C++/DigiUSB Windows Driver/dpinst32.exe -------------------------------------------------------------------------------- /C++/DigiUSB Windows Driver/dpinst64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/C++/DigiUSB Windows Driver/dpinst64.exe -------------------------------------------------------------------------------- /C++/DigiUSB Windows Driver/dpscat.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/C++/DigiUSB Windows Driver/dpscat.exe -------------------------------------------------------------------------------- /C++/DigiUSB Windows Driver/re-pack-files.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/C++/DigiUSB Windows Driver/re-pack-files.cmd -------------------------------------------------------------------------------- /C++/DigiUSB Windows Driver/x86/libusb0.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/C++/DigiUSB Windows Driver/x86/libusb0.sys -------------------------------------------------------------------------------- /C++/DigiUSB Windows Driver/x86/libusb0_x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/C++/DigiUSB Windows Driver/x86/libusb0_x86.dll -------------------------------------------------------------------------------- /C++/DigiUSB Windows Driver/x86/libusbK_x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/C++/DigiUSB Windows Driver/x86/libusbK_x86.dll -------------------------------------------------------------------------------- /C++/monitor/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/C++/monitor/Makefile -------------------------------------------------------------------------------- /C++/monitor/digiusb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/C++/monitor/digiusb.cpp -------------------------------------------------------------------------------- /C++/receive/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/C++/receive/Makefile -------------------------------------------------------------------------------- /C++/receive/receive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/C++/receive/receive.cpp -------------------------------------------------------------------------------- /C++/send/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/C++/send/Makefile -------------------------------------------------------------------------------- /C++/send/send.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/C++/send/send.cpp -------------------------------------------------------------------------------- /Python/DigiBlink/DigiRGB Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiBlink/DigiRGB Readme.txt -------------------------------------------------------------------------------- /Python/DigiBlink/DigiRGBMail Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiBlink/DigiRGBMail Readme.txt -------------------------------------------------------------------------------- /Python/DigiBlink/source/DigiRGB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiBlink/source/DigiRGB.py -------------------------------------------------------------------------------- /Python/DigiBlink/source/DigiRGBMail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiBlink/source/DigiRGBMail.py -------------------------------------------------------------------------------- /Python/DigiBlink/source/arduino/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/DigiBlink/source/arduino/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiBlink/source/arduino/__init__.pyc -------------------------------------------------------------------------------- /Python/DigiBlink/source/arduino/libusb-1.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiBlink/source/arduino/libusb-1.0.dll -------------------------------------------------------------------------------- /Python/DigiBlink/source/arduino/usbdevice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiBlink/source/arduino/usbdevice.py -------------------------------------------------------------------------------- /Python/DigiBlink/source/arduino/usbdevice.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiBlink/source/arduino/usbdevice.pyc -------------------------------------------------------------------------------- /Python/DigiBlink/windows/DigiRGB.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiBlink/windows/DigiRGB.exe -------------------------------------------------------------------------------- /Python/DigiBlink/windows/DigiRGB.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiBlink/windows/DigiRGB.exe.manifest -------------------------------------------------------------------------------- /Python/DigiBlink/windows/DigiRGBMail.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiBlink/windows/DigiRGBMail.exe -------------------------------------------------------------------------------- /Python/DigiBlink/windows/DigiRGBMail.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiBlink/windows/DigiRGBMail.exe.manifest -------------------------------------------------------------------------------- /Python/DigiBlink/windows/Microsoft.VC90.CRT.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiBlink/windows/Microsoft.VC90.CRT.manifest -------------------------------------------------------------------------------- /Python/DigiBlink/windows/_ctypes.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiBlink/windows/_ctypes.pyd -------------------------------------------------------------------------------- /Python/DigiBlink/windows/_hashlib.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiBlink/windows/_hashlib.pyd -------------------------------------------------------------------------------- /Python/DigiBlink/windows/_socket.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiBlink/windows/_socket.pyd -------------------------------------------------------------------------------- /Python/DigiBlink/windows/_ssl.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiBlink/windows/_ssl.pyd -------------------------------------------------------------------------------- /Python/DigiBlink/windows/arduino/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/DigiBlink/windows/arduino/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiBlink/windows/arduino/__init__.pyc -------------------------------------------------------------------------------- /Python/DigiBlink/windows/arduino/libusb-1.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiBlink/windows/arduino/libusb-1.0.dll -------------------------------------------------------------------------------- /Python/DigiBlink/windows/arduino/usbdevice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiBlink/windows/arduino/usbdevice.py -------------------------------------------------------------------------------- /Python/DigiBlink/windows/arduino/usbdevice.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiBlink/windows/arduino/usbdevice.pyc -------------------------------------------------------------------------------- /Python/DigiBlink/windows/bz2.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiBlink/windows/bz2.pyd -------------------------------------------------------------------------------- /Python/DigiBlink/windows/libusb0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiBlink/windows/libusb0.dll -------------------------------------------------------------------------------- /Python/DigiBlink/windows/msvcm90.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiBlink/windows/msvcm90.dll -------------------------------------------------------------------------------- /Python/DigiBlink/windows/msvcp90.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiBlink/windows/msvcp90.dll -------------------------------------------------------------------------------- /Python/DigiBlink/windows/msvcr90.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiBlink/windows/msvcr90.dll -------------------------------------------------------------------------------- /Python/DigiBlink/windows/python27.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiBlink/windows/python27.dll -------------------------------------------------------------------------------- /Python/DigiBlink/windows/select.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiBlink/windows/select.pyd -------------------------------------------------------------------------------- /Python/DigiBlink/windows/unicodedata.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiBlink/windows/unicodedata.pyd -------------------------------------------------------------------------------- /Python/DigiUSB/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/.DS_Store -------------------------------------------------------------------------------- /Python/DigiUSB/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/._.DS_Store -------------------------------------------------------------------------------- /Python/DigiUSB/linux/DigiUSB Monitor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/linux/DigiUSB Monitor -------------------------------------------------------------------------------- /Python/DigiUSB/linux/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/linux/readme.txt -------------------------------------------------------------------------------- /Python/DigiUSB/mac/monitor.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/mac/monitor.app/Contents/Info.plist -------------------------------------------------------------------------------- /Python/DigiUSB/mac/monitor.app/Contents/MacOS/monitor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/mac/monitor.app/Contents/MacOS/monitor -------------------------------------------------------------------------------- /Python/DigiUSB/mac/monitor.app/Contents/MacOS/python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/mac/monitor.app/Contents/MacOS/python -------------------------------------------------------------------------------- /Python/DigiUSB/mac/monitor.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /Python/DigiUSB/mac/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/mac/readme.txt -------------------------------------------------------------------------------- /Python/DigiUSB/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/readme.txt -------------------------------------------------------------------------------- /Python/DigiUSB/source/arduino/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/DigiUSB/source/arduino/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/source/arduino/__init__.pyc -------------------------------------------------------------------------------- /Python/DigiUSB/source/arduino/libusb-1.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/source/arduino/libusb-1.0.dll -------------------------------------------------------------------------------- /Python/DigiUSB/source/arduino/usbdevice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/source/arduino/usbdevice.py -------------------------------------------------------------------------------- /Python/DigiUSB/source/arduino/usbdevice.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/source/arduino/usbdevice.pyc -------------------------------------------------------------------------------- /Python/DigiUSB/source/digiscope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/source/digiscope.py -------------------------------------------------------------------------------- /Python/DigiUSB/source/monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/source/monitor.py -------------------------------------------------------------------------------- /Python/DigiUSB/source/read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/source/read.py -------------------------------------------------------------------------------- /Python/DigiUSB/source/receive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/source/receive.py -------------------------------------------------------------------------------- /Python/DigiUSB/source/send.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/source/send.py -------------------------------------------------------------------------------- /Python/DigiUSB/source/write.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/source/write.py -------------------------------------------------------------------------------- /Python/DigiUSB/windows/Microsoft.VC90.CRT.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/Microsoft.VC90.CRT.manifest -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/auto.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/auto.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/clock.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/clock.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/history.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/history.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/http1.0/http.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/http1.0/http.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/http1.0/pkgIndex.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/http1.0/pkgIndex.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/init.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/init.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/af.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/af.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/af_za.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/af_za.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/ar.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/ar.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/ar_in.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/ar_in.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/ar_jo.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/ar_jo.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/ar_lb.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/ar_lb.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/ar_sy.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/ar_sy.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/be.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/be.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/bg.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/bg.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/bn.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/bn.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/bn_in.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/bn_in.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/ca.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/ca.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/cs.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/cs.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/da.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/da.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/de.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/de.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/de_at.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/de_at.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/de_be.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/de_be.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/el.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/el.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/en_au.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/en_au.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/en_be.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/en_be.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/en_bw.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/en_bw.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/en_ca.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/en_ca.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/en_gb.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/en_gb.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/en_hk.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/en_hk.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/en_ie.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/en_ie.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/en_in.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/en_in.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/en_nz.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/en_nz.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/en_ph.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/en_ph.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/en_sg.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/en_sg.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/en_za.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/en_za.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/en_zw.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/en_zw.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/eo.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/eo.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/es.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/es.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/es_ar.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/es_ar.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/es_bo.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/es_bo.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/es_cl.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/es_cl.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/es_co.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/es_co.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/es_cr.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/es_cr.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/es_do.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/es_do.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/es_ec.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/es_ec.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/es_gt.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/es_gt.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/es_hn.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/es_hn.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/es_mx.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/es_mx.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/es_ni.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/es_ni.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/es_pa.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/es_pa.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/es_pe.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/es_pe.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/es_pr.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/es_pr.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/es_py.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/es_py.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/es_sv.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/es_sv.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/es_uy.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/es_uy.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/es_ve.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/es_ve.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/et.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/et.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/eu.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/eu.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/eu_es.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/eu_es.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/fa.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/fa.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/fa_in.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/fa_in.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/fa_ir.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/fa_ir.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/fi.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/fi.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/fo.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/fo.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/fo_fo.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/fo_fo.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/fr.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/fr.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/fr_be.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/fr_be.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/fr_ca.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/fr_ca.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/fr_ch.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/fr_ch.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/ga.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/ga.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/ga_ie.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/ga_ie.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/gl.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/gl.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/gl_es.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/gl_es.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/gv.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/gv.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/gv_gb.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/gv_gb.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/he.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/he.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/hi.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/hi.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/hi_in.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/hi_in.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/hr.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/hr.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/hu.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/hu.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/id.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/id.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/id_id.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/id_id.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/is.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/is.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/it.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/it.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/it_ch.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/it_ch.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/ja.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/ja.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/kl.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/kl.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/kl_gl.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/kl_gl.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/ko.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/ko.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/ko_kr.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/ko_kr.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/kok.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/kok.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/kok_in.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/kok_in.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/kw.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/kw.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/kw_gb.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/kw_gb.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/lt.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/lt.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/lv.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/lv.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/mk.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/mk.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/mr.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/mr.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/mr_in.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/mr_in.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/ms.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/ms.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/ms_my.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/ms_my.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/mt.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/mt.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/nb.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/nb.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/nl.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/nl.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/nl_be.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/nl_be.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/nn.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/nn.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/pl.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/pl.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/pt.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/pt.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/pt_br.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/pt_br.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/ro.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/ro.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/ru.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/ru.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/ru_ua.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/ru_ua.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/sh.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/sh.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/sk.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/sk.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/sl.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/sl.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/sq.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/sq.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/sr.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/sr.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/sv.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/sv.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/sw.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/sw.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/ta.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/ta.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/ta_in.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/ta_in.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/te.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/te.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/te_in.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/te_in.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/th.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/th.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/tr.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/tr.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/uk.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/uk.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/vi.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/vi.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/zh.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/zh.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/zh_cn.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/zh_cn.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/zh_hk.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/zh_hk.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/zh_sg.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/zh_sg.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/msgs/zh_tw.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/msgs/zh_tw.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/opt0.4/optparse.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/opt0.4/optparse.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/opt0.4/pkgIndex.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/opt0.4/pkgIndex.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/package.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/package.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/parray.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/parray.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/safe.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/safe.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tclIndex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tclIndex -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tm.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tm.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Abidjan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Abidjan -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Accra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Accra -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Algiers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Algiers -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Asmara: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Asmara -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Asmera: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Asmera -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Bamako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Bamako -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Bangui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Bangui -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Banjul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Banjul -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Bissau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Bissau -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Blantyre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Blantyre -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Cairo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Cairo -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Ceuta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Ceuta -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Conakry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Conakry -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Dakar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Dakar -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Djibouti: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Djibouti -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Douala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Douala -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/El_Aaiun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/El_Aaiun -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Freetown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Freetown -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Gaborone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Gaborone -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Harare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Harare -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Kampala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Kampala -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Khartoum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Khartoum -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Kigali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Kigali -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Kinshasa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Kinshasa -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Lagos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Lagos -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Lome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Lome -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Luanda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Luanda -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Lusaka: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Lusaka -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Malabo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Malabo -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Maputo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Maputo -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Maseru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Maseru -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Mbabane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Mbabane -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Monrovia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Monrovia -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Nairobi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Nairobi -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Ndjamena: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Ndjamena -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Niamey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Niamey -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Sao_Tome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Sao_Tome -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Timbuktu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Timbuktu -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Tripoli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Tripoli -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Tunis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Tunis -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Windhoek: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Africa/Windhoek -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Adak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Adak -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Antigua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Antigua -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Aruba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Aruba -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Atka: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Atka -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Bahia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Bahia -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Belem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Belem -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Belize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Belize -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Bogota: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Bogota -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Boise: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Boise -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Cancun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Cancun -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Caracas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Caracas -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Cayenne: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Cayenne -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Cayman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Cayman -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Chicago: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Chicago -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Cordoba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Cordoba -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Cuiaba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Cuiaba -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Curacao: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Curacao -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Dawson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Dawson -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Denver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Denver -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Detroit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Detroit -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Godthab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Godthab -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Grenada: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Grenada -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Guyana: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Guyana -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Halifax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Halifax -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Havana: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Havana -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Inuvik: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Inuvik -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Iqaluit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Iqaluit -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Jamaica: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Jamaica -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Jujuy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Jujuy -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Juneau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Juneau -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Knox_IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Knox_IN -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/America/La_Paz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/America/La_Paz -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Lima: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Lima -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Maceio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Maceio -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Managua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Managua -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Manaus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Manaus -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Marigot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Marigot -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Mendoza: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Mendoza -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Merida: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Merida -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Moncton: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Moncton -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Nassau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Nassau -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Nipigon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Nipigon -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Nome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Nome -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Noronha: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Noronha -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Panama: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Panama -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Phoenix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Phoenix -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Recife: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Recife -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Regina: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Regina -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Rosario: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Rosario -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Thule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Thule -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Tijuana: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Tijuana -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Toronto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Toronto -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Tortola: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Tortola -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Virgin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Virgin -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Yakutat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/America/Yakutat -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Aden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Aden -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Almaty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Almaty -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Amman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Amman -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Anadyr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Anadyr -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Aqtau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Aqtau -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Aqtobe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Aqtobe -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Ashgabat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Ashgabat -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Ashkhabad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Ashkhabad -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Baghdad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Baghdad -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Bahrain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Bahrain -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Baku: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Baku -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Bangkok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Bangkok -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Beirut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Beirut -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Bishkek: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Bishkek -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Brunei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Brunei -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Calcutta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Calcutta -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Choibalsan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Choibalsan -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Chongqing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Chongqing -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Chungking: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Chungking -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Colombo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Colombo -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Dacca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Dacca -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Damascus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Damascus -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Dhaka: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Dhaka -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Dili: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Dili -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Dubai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Dubai -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Dushanbe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Dushanbe -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Gaza: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Gaza -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Harbin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Harbin -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Hong_Kong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Hong_Kong -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Hovd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Hovd -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Irkutsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Irkutsk -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Istanbul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Istanbul -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Jakarta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Jakarta -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Jayapura: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Jayapura -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Jerusalem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Jerusalem -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Kabul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Kabul -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Kamchatka: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Kamchatka -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Karachi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Karachi -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Kashgar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Kashgar -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Katmandu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Katmandu -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Kolkata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Kolkata -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Kuching: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Kuching -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Kuwait: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Kuwait -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Macao: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Macao -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Macau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Macau -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Magadan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Magadan -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Makassar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Makassar -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Manila: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Manila -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Muscat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Muscat -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Nicosia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Nicosia -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Omsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Omsk -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Oral: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Oral -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Phnom_Penh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Phnom_Penh -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Pontianak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Pontianak -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Pyongyang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Pyongyang -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Qatar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Qatar -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Qyzylorda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Qyzylorda -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Rangoon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Rangoon -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Riyadh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Riyadh -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Saigon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Saigon -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Sakhalin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Sakhalin -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Samarkand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Samarkand -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Seoul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Seoul -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Shanghai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Shanghai -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Singapore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Singapore -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Taipei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Taipei -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Tashkent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Tashkent -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Tbilisi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Tbilisi -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Tehran: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Tehran -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Tel_Aviv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Tel_Aviv -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Thimbu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Thimbu -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Thimphu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Thimphu -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Tokyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Tokyo -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Ulan_Bator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Ulan_Bator -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Urumqi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Urumqi -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Vientiane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Vientiane -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Yakutsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Yakutsk -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Yerevan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Asia/Yerevan -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Atlantic/Azores: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Atlantic/Azores -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Atlantic/Canary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Atlantic/Canary -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Atlantic/Faeroe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Atlantic/Faeroe -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Atlantic/Faroe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Atlantic/Faroe -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Australia/ACT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Australia/ACT -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Australia/Eucla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Australia/Eucla -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Australia/LHI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Australia/LHI -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Australia/NSW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Australia/NSW -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Australia/North: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Australia/North -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Australia/Perth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Australia/Perth -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Australia/South: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Australia/South -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Australia/West: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Australia/West -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Brazil/Acre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Brazil/Acre -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Brazil/East: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Brazil/East -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Brazil/West: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Brazil/West -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/CET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/CET -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/CST6CDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/CST6CDT -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Canada/Atlantic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Canada/Atlantic -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Canada/Central: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Canada/Central -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Canada/Eastern: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Canada/Eastern -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Canada/Mountain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Canada/Mountain -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Canada/Pacific: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Canada/Pacific -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Canada/Yukon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Canada/Yukon -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Cuba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Cuba -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/EET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/EET -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/EST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/EST -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/EST5EDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/EST5EDT -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Egypt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Egypt -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Eire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Eire -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT+0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT+0 -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT+1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT+1 -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT+10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT+10 -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT+11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT+11 -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT+12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT+12 -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT+2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT+2 -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT+3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT+3 -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT+4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT+4 -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT+5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT+5 -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT+6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT+6 -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT+7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT+7 -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT+8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT+8 -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT+9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT+9 -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT-0 -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT-1 -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT-10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT-10 -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT-11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT-11 -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT-12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT-12 -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT-13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT-13 -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT-14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT-14 -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT-2 -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT-3 -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT-4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT-4 -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT-5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT-5 -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT-6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT-6 -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT-7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT-7 -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT-8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT-8 -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT-9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT-9 -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/GMT0 -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/Greenwich: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/Greenwich -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/UCT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/UCT -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/UTC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/UTC -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/Universal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/Universal -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/Zulu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Etc/Zulu -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Europe/Andorra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Europe/Andorra -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Europe/Athens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Europe/Athens -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Europe/Belfast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Europe/Belfast -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Europe/Belgrade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Europe/Belgrade -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Europe/Berlin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Europe/Berlin -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Europe/Brussels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Europe/Brussels -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Europe/Budapest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Europe/Budapest -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Europe/Chisinau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Europe/Chisinau -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Europe/Kiev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Europe/Kiev -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Europe/Malta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Europe/Malta -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Europe/Minsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Europe/Minsk -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Europe/Oslo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Europe/Oslo -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Europe/Paris: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Europe/Paris -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Europe/Riga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Europe/Riga -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Europe/Rome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Europe/Rome -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Europe/Sofia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Europe/Sofia -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Europe/Vaduz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Europe/Vaduz -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/GB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/GB -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/GB-Eire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/GB-Eire -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/GMT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/GMT -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/GMT+0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/GMT+0 -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/GMT-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/GMT-0 -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/GMT0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/GMT0 -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Greenwich: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Greenwich -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/HST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/HST -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Hongkong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Hongkong -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Iceland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Iceland -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Indian/Cocos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Indian/Cocos -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Indian/Mahe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Indian/Mahe -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Iran: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Iran -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Israel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Israel -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Jamaica: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Jamaica -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Japan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Japan -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Kwajalein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Kwajalein -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Libya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Libya -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/MET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/MET -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/MST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/MST -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/MST7MDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/MST7MDT -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/NZ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/NZ -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/NZ-CHAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/NZ-CHAT -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Navajo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Navajo -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/PRC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/PRC -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/PST8PDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/PST8PDT -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Pacific/Apia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Pacific/Apia -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Pacific/Fiji: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Pacific/Fiji -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Pacific/Guam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Pacific/Guam -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Pacific/Niue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Pacific/Niue -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Pacific/Truk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Pacific/Truk -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Pacific/Wake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Pacific/Wake -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Pacific/Yap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Pacific/Yap -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Poland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Poland -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Portugal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Portugal -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/ROC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/ROC -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/ROK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/ROK -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Singapore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Singapore -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/SystemV/AST4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/SystemV/AST4 -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/SystemV/CST6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/SystemV/CST6 -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/SystemV/EST5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/SystemV/EST5 -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/SystemV/MST7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/SystemV/MST7 -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/SystemV/PST8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/SystemV/PST8 -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/SystemV/YST9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/SystemV/YST9 -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Turkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Turkey -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/UCT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/UCT -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/US/Alaska: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/US/Alaska -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/US/Aleutian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/US/Aleutian -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/US/Arizona: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/US/Arizona -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/US/Central: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/US/Central -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/US/Eastern: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/US/Eastern -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/US/Hawaii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/US/Hawaii -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/US/Michigan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/US/Michigan -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/US/Mountain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/US/Mountain -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/US/Pacific: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/US/Pacific -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/US/Samoa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/US/Samoa -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/UTC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/UTC -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Universal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Universal -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/W-SU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/W-SU -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/WET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/WET -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/tzdata/Zulu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/tzdata/Zulu -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tcl/word.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tcl/word.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/bgerror.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/bgerror.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/button.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/button.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/choosedir.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/choosedir.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/clrpick.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/clrpick.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/comdlg.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/comdlg.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/console.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/console.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/dialog.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/dialog.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/entry.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/entry.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/focus.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/focus.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/images/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/images/README -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/images/logo.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/images/logo.eps -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/images/logo100.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/images/logo100.gif -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/images/logo64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/images/logo64.gif -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/images/logoLarge.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/images/logoLarge.gif -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/images/logoMed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/images/logoMed.gif -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/images/pwrdLogo.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/images/pwrdLogo.eps -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/images/tai-ku.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/images/tai-ku.gif -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/license.terms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/license.terms -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/listbox.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/listbox.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/menu.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/menu.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/mkpsenc.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/mkpsenc.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/msgbox.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/msgbox.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/msgs/cs.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/msgs/cs.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/msgs/da.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/msgs/da.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/msgs/de.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/msgs/de.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/msgs/el.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/msgs/el.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/msgs/en.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/msgs/en.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/msgs/en_gb.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/msgs/en_gb.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/msgs/eo.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/msgs/eo.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/msgs/es.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/msgs/es.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/msgs/fr.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/msgs/fr.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/msgs/hu.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/msgs/hu.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/msgs/it.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/msgs/it.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/msgs/nl.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/msgs/nl.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/msgs/pl.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/msgs/pl.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/msgs/pt.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/msgs/pt.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/msgs/ru.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/msgs/ru.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/msgs/sv.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/msgs/sv.msg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/obsolete.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/obsolete.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/optMenu.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/optMenu.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/palette.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/palette.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/panedwindow.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/panedwindow.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/pkgIndex.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/pkgIndex.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/safetk.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/safetk.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/scale.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/scale.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/scrlbar.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/scrlbar.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/spinbox.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/spinbox.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/tclIndex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/tclIndex -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/tearoff.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/tearoff.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/text.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/text.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/tk.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/tk.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/tkfbox.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/tkfbox.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/ttk/altTheme.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/ttk/altTheme.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/ttk/aquaTheme.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/ttk/aquaTheme.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/ttk/button.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/ttk/button.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/ttk/clamTheme.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/ttk/clamTheme.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/ttk/classicTheme.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/ttk/classicTheme.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/ttk/combobox.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/ttk/combobox.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/ttk/cursors.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/ttk/cursors.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/ttk/defaults.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/ttk/defaults.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/ttk/entry.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/ttk/entry.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/ttk/fonts.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/ttk/fonts.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/ttk/menubutton.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/ttk/menubutton.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/ttk/notebook.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/ttk/notebook.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/ttk/panedwindow.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/ttk/panedwindow.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/ttk/progress.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/ttk/progress.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/ttk/scale.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/ttk/scale.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/ttk/scrollbar.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/ttk/scrollbar.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/ttk/sizegrip.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/ttk/sizegrip.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/ttk/treeview.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/ttk/treeview.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/ttk/ttk.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/ttk/ttk.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/ttk/utils.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/ttk/utils.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/ttk/winTheme.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/ttk/winTheme.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/ttk/xpTheme.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/ttk/xpTheme.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/unsupported.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/unsupported.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_MEI/tk/xmfbox.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_MEI/tk/xmfbox.tcl -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_ctypes.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_ctypes.pyd -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_hashlib.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_hashlib.pyd -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_socket.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_socket.pyd -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_ssl.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_ssl.pyd -------------------------------------------------------------------------------- /Python/DigiUSB/windows/_tkinter.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/_tkinter.pyd -------------------------------------------------------------------------------- /Python/DigiUSB/windows/arduino/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/DigiUSB/windows/arduino/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/arduino/__init__.pyc -------------------------------------------------------------------------------- /Python/DigiUSB/windows/arduino/libusb-1.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/arduino/libusb-1.0.dll -------------------------------------------------------------------------------- /Python/DigiUSB/windows/arduino/usbdevice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/arduino/usbdevice.py -------------------------------------------------------------------------------- /Python/DigiUSB/windows/arduino/usbdevice.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/arduino/usbdevice.pyc -------------------------------------------------------------------------------- /Python/DigiUSB/windows/bz2.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/bz2.pyd -------------------------------------------------------------------------------- /Python/DigiUSB/windows/digiscope.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/digiscope.exe -------------------------------------------------------------------------------- /Python/DigiUSB/windows/digiscope.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/digiscope.exe.manifest -------------------------------------------------------------------------------- /Python/DigiUSB/windows/gdiplus.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/gdiplus.dll -------------------------------------------------------------------------------- /Python/DigiUSB/windows/include/pyconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/include/pyconfig.h -------------------------------------------------------------------------------- /Python/DigiUSB/windows/libusb0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/libusb0.dll -------------------------------------------------------------------------------- /Python/DigiUSB/windows/matplotlib._cntr.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/matplotlib._cntr.pyd -------------------------------------------------------------------------------- /Python/DigiUSB/windows/matplotlib._delaunay.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/matplotlib._delaunay.pyd -------------------------------------------------------------------------------- /Python/DigiUSB/windows/matplotlib._image.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/matplotlib._image.pyd -------------------------------------------------------------------------------- /Python/DigiUSB/windows/matplotlib._path.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/matplotlib._path.pyd -------------------------------------------------------------------------------- /Python/DigiUSB/windows/matplotlib._png.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/matplotlib._png.pyd -------------------------------------------------------------------------------- /Python/DigiUSB/windows/matplotlib._tri.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/matplotlib._tri.pyd -------------------------------------------------------------------------------- /Python/DigiUSB/windows/matplotlib._windowing.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/matplotlib._windowing.pyd -------------------------------------------------------------------------------- /Python/DigiUSB/windows/matplotlib.ft2font.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/matplotlib.ft2font.pyd -------------------------------------------------------------------------------- /Python/DigiUSB/windows/matplotlib.ttconv.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/matplotlib.ttconv.pyd -------------------------------------------------------------------------------- /Python/DigiUSB/windows/monitor.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/monitor.exe -------------------------------------------------------------------------------- /Python/DigiUSB/windows/monitor.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/monitor.exe.manifest -------------------------------------------------------------------------------- /Python/DigiUSB/windows/mpl-data/fonts/afm/cmr10.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/mpl-data/fonts/afm/cmr10.afm -------------------------------------------------------------------------------- /Python/DigiUSB/windows/mpl-data/fonts/afm/psyr.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/mpl-data/fonts/afm/psyr.afm -------------------------------------------------------------------------------- /Python/DigiUSB/windows/mpl-data/fonts/afm/pzdr.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/mpl-data/fonts/afm/pzdr.afm -------------------------------------------------------------------------------- /Python/DigiUSB/windows/mpl-data/fonts/ttf/Vera.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/mpl-data/fonts/ttf/Vera.ttf -------------------------------------------------------------------------------- /Python/DigiUSB/windows/mpl-data/fonts/ttf/cmb10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/mpl-data/fonts/ttf/cmb10.ttf -------------------------------------------------------------------------------- /Python/DigiUSB/windows/mpl-data/fonts/ttf/cmr10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/mpl-data/fonts/ttf/cmr10.ttf -------------------------------------------------------------------------------- /Python/DigiUSB/windows/mpl-data/images/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/mpl-data/images/back.png -------------------------------------------------------------------------------- /Python/DigiUSB/windows/mpl-data/images/back.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/mpl-data/images/back.ppm -------------------------------------------------------------------------------- /Python/DigiUSB/windows/mpl-data/images/back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/mpl-data/images/back.svg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/mpl-data/images/back.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/mpl-data/images/back.xpm -------------------------------------------------------------------------------- /Python/DigiUSB/windows/mpl-data/images/filesave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/mpl-data/images/filesave.png -------------------------------------------------------------------------------- /Python/DigiUSB/windows/mpl-data/images/filesave.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/mpl-data/images/filesave.ppm -------------------------------------------------------------------------------- /Python/DigiUSB/windows/mpl-data/images/filesave.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/mpl-data/images/filesave.svg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/mpl-data/images/filesave.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/mpl-data/images/filesave.xpm -------------------------------------------------------------------------------- /Python/DigiUSB/windows/mpl-data/images/forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/mpl-data/images/forward.png -------------------------------------------------------------------------------- /Python/DigiUSB/windows/mpl-data/images/forward.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/mpl-data/images/forward.ppm -------------------------------------------------------------------------------- /Python/DigiUSB/windows/mpl-data/images/forward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/mpl-data/images/forward.svg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/mpl-data/images/forward.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/mpl-data/images/forward.xpm -------------------------------------------------------------------------------- /Python/DigiUSB/windows/mpl-data/images/hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/mpl-data/images/hand.png -------------------------------------------------------------------------------- /Python/DigiUSB/windows/mpl-data/images/hand.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/mpl-data/images/hand.ppm -------------------------------------------------------------------------------- /Python/DigiUSB/windows/mpl-data/images/hand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/mpl-data/images/hand.svg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/mpl-data/images/hand.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/mpl-data/images/hand.xpm -------------------------------------------------------------------------------- /Python/DigiUSB/windows/mpl-data/images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/mpl-data/images/home.png -------------------------------------------------------------------------------- /Python/DigiUSB/windows/mpl-data/images/home.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/mpl-data/images/home.ppm -------------------------------------------------------------------------------- /Python/DigiUSB/windows/mpl-data/images/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/mpl-data/images/home.svg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/mpl-data/images/home.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/mpl-data/images/home.xpm -------------------------------------------------------------------------------- /Python/DigiUSB/windows/mpl-data/images/move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/mpl-data/images/move.png -------------------------------------------------------------------------------- /Python/DigiUSB/windows/mpl-data/images/move.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/mpl-data/images/move.ppm -------------------------------------------------------------------------------- /Python/DigiUSB/windows/mpl-data/images/move.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/mpl-data/images/move.svg -------------------------------------------------------------------------------- /Python/DigiUSB/windows/mpl-data/images/move.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/mpl-data/images/move.xpm -------------------------------------------------------------------------------- /Python/DigiUSB/windows/mpl-data/images/stock_up.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/mpl-data/images/stock_up.ppm -------------------------------------------------------------------------------- /Python/DigiUSB/windows/mpl-data/images/stock_up.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/mpl-data/images/stock_up.xpm -------------------------------------------------------------------------------- /Python/DigiUSB/windows/mpl-data/images/subplots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/mpl-data/images/subplots.png -------------------------------------------------------------------------------- /Python/DigiUSB/windows/mpl-data/images/subplots.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/mpl-data/images/subplots.ppm -------------------------------------------------------------------------------- /Python/DigiUSB/windows/mpl-data/images/subplots.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/mpl-data/images/subplots.xpm -------------------------------------------------------------------------------- /Python/DigiUSB/windows/mpl-data/lineprops.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/mpl-data/lineprops.glade -------------------------------------------------------------------------------- /Python/DigiUSB/windows/mpl-data/matplotlibrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/mpl-data/matplotlibrc -------------------------------------------------------------------------------- /Python/DigiUSB/windows/mpl-data/sample_data/eeg.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/mpl-data/sample_data/eeg.dat -------------------------------------------------------------------------------- /Python/DigiUSB/windows/msvcm90.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/msvcm90.dll -------------------------------------------------------------------------------- /Python/DigiUSB/windows/msvcp90.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/msvcp90.dll -------------------------------------------------------------------------------- /Python/DigiUSB/windows/msvcr90.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/msvcr90.dll -------------------------------------------------------------------------------- /Python/DigiUSB/windows/numpy.core._dotblas.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/numpy.core._dotblas.pyd -------------------------------------------------------------------------------- /Python/DigiUSB/windows/numpy.core._sort.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/numpy.core._sort.pyd -------------------------------------------------------------------------------- /Python/DigiUSB/windows/numpy.core.multiarray.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/numpy.core.multiarray.pyd -------------------------------------------------------------------------------- /Python/DigiUSB/windows/numpy.core.scalarmath.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/numpy.core.scalarmath.pyd -------------------------------------------------------------------------------- /Python/DigiUSB/windows/numpy.core.umath.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/numpy.core.umath.pyd -------------------------------------------------------------------------------- /Python/DigiUSB/windows/numpy.fft.fftpack_lite.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/numpy.fft.fftpack_lite.pyd -------------------------------------------------------------------------------- /Python/DigiUSB/windows/numpy.lib._compiled_base.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/numpy.lib._compiled_base.pyd -------------------------------------------------------------------------------- /Python/DigiUSB/windows/numpy.linalg.lapack_lite.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/numpy.linalg.lapack_lite.pyd -------------------------------------------------------------------------------- /Python/DigiUSB/windows/numpy.random.mtrand.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/numpy.random.mtrand.pyd -------------------------------------------------------------------------------- /Python/DigiUSB/windows/pyexpat.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/pyexpat.pyd -------------------------------------------------------------------------------- /Python/DigiUSB/windows/python27.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/python27.dll -------------------------------------------------------------------------------- /Python/DigiUSB/windows/pywintypes27.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/pywintypes27.dll -------------------------------------------------------------------------------- /Python/DigiUSB/windows/read.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/read.exe -------------------------------------------------------------------------------- /Python/DigiUSB/windows/read.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/read.exe.manifest -------------------------------------------------------------------------------- /Python/DigiUSB/windows/receive.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/receive.exe -------------------------------------------------------------------------------- /Python/DigiUSB/windows/receive.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/receive.exe.manifest -------------------------------------------------------------------------------- /Python/DigiUSB/windows/select.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/select.pyd -------------------------------------------------------------------------------- /Python/DigiUSB/windows/send.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/send.exe -------------------------------------------------------------------------------- /Python/DigiUSB/windows/send.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/send.exe.manifest -------------------------------------------------------------------------------- /Python/DigiUSB/windows/tcl85.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/tcl85.dll -------------------------------------------------------------------------------- /Python/DigiUSB/windows/tk85.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/tk85.dll -------------------------------------------------------------------------------- /Python/DigiUSB/windows/unicodedata.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/unicodedata.pyd -------------------------------------------------------------------------------- /Python/DigiUSB/windows/win32api.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/win32api.pyd -------------------------------------------------------------------------------- /Python/DigiUSB/windows/win32pdh.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/win32pdh.pyd -------------------------------------------------------------------------------- /Python/DigiUSB/windows/win32pipe.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/win32pipe.pyd -------------------------------------------------------------------------------- /Python/DigiUSB/windows/write.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/write.exe -------------------------------------------------------------------------------- /Python/DigiUSB/windows/write.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/write.exe.manifest -------------------------------------------------------------------------------- /Python/DigiUSB/windows/wx._controls_.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/wx._controls_.pyd -------------------------------------------------------------------------------- /Python/DigiUSB/windows/wx._core_.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/wx._core_.pyd -------------------------------------------------------------------------------- /Python/DigiUSB/windows/wx._gdi_.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/wx._gdi_.pyd -------------------------------------------------------------------------------- /Python/DigiUSB/windows/wx._misc_.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/wx._misc_.pyd -------------------------------------------------------------------------------- /Python/DigiUSB/windows/wx._windows_.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/wx._windows_.pyd -------------------------------------------------------------------------------- /Python/DigiUSB/windows/wxbase28uh_net_vc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/wxbase28uh_net_vc.dll -------------------------------------------------------------------------------- /Python/DigiUSB/windows/wxbase28uh_vc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/wxbase28uh_vc.dll -------------------------------------------------------------------------------- /Python/DigiUSB/windows/wxmsw28uh_adv_vc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/wxmsw28uh_adv_vc.dll -------------------------------------------------------------------------------- /Python/DigiUSB/windows/wxmsw28uh_core_vc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/wxmsw28uh_core_vc.dll -------------------------------------------------------------------------------- /Python/DigiUSB/windows/wxmsw28uh_html_vc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/DigiUSB/windows/wxmsw28uh_html_vc.dll -------------------------------------------------------------------------------- /Python/Digispark-Cheerlights/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/Digispark-Cheerlights/readme.txt -------------------------------------------------------------------------------- /Python/Digispark-Cheerlights/source/arduino/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Digispark-Cheerlights/source/colors.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/Digispark-Cheerlights/source/colors.cfg -------------------------------------------------------------------------------- /Python/Digispark-Cheerlights/source/icons/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/Digispark-Cheerlights/source/icons/blue.png -------------------------------------------------------------------------------- /Python/Digispark-Cheerlights/source/icons/cyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/Digispark-Cheerlights/source/icons/cyan.png -------------------------------------------------------------------------------- /Python/Digispark-Cheerlights/source/icons/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/Digispark-Cheerlights/source/icons/green.png -------------------------------------------------------------------------------- /Python/Digispark-Cheerlights/source/icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/Digispark-Cheerlights/source/icons/icon.ico -------------------------------------------------------------------------------- /Python/Digispark-Cheerlights/source/icons/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/Digispark-Cheerlights/source/icons/red.png -------------------------------------------------------------------------------- /Python/Digispark-Cheerlights/source/icons/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/Digispark-Cheerlights/source/icons/white.png -------------------------------------------------------------------------------- /Python/Digispark-Cheerlights/windows/_ctypes.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/Digispark-Cheerlights/windows/_ctypes.pyd -------------------------------------------------------------------------------- /Python/Digispark-Cheerlights/windows/_hashlib.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/Digispark-Cheerlights/windows/_hashlib.pyd -------------------------------------------------------------------------------- /Python/Digispark-Cheerlights/windows/_socket.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/Digispark-Cheerlights/windows/_socket.pyd -------------------------------------------------------------------------------- /Python/Digispark-Cheerlights/windows/_ssl.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/Digispark-Cheerlights/windows/_ssl.pyd -------------------------------------------------------------------------------- /Python/Digispark-Cheerlights/windows/arduino/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Digispark-Cheerlights/windows/colors.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/Digispark-Cheerlights/windows/colors.cfg -------------------------------------------------------------------------------- /Python/Digispark-Cheerlights/windows/gdiplus.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/Digispark-Cheerlights/windows/gdiplus.dll -------------------------------------------------------------------------------- /Python/Digispark-Cheerlights/windows/icons/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/Digispark-Cheerlights/windows/icons/blue.png -------------------------------------------------------------------------------- /Python/Digispark-Cheerlights/windows/icons/cyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/Digispark-Cheerlights/windows/icons/cyan.png -------------------------------------------------------------------------------- /Python/Digispark-Cheerlights/windows/icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/Digispark-Cheerlights/windows/icons/icon.ico -------------------------------------------------------------------------------- /Python/Digispark-Cheerlights/windows/icons/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/Digispark-Cheerlights/windows/icons/red.png -------------------------------------------------------------------------------- /Python/Digispark-Cheerlights/windows/libusb0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/Digispark-Cheerlights/windows/libusb0.dll -------------------------------------------------------------------------------- /Python/Digispark-Cheerlights/windows/msvcm90.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/Digispark-Cheerlights/windows/msvcm90.dll -------------------------------------------------------------------------------- /Python/Digispark-Cheerlights/windows/msvcp90.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/Digispark-Cheerlights/windows/msvcp90.dll -------------------------------------------------------------------------------- /Python/Digispark-Cheerlights/windows/msvcr90.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/Digispark-Cheerlights/windows/msvcr90.dll -------------------------------------------------------------------------------- /Python/Digispark-Cheerlights/windows/python27.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/Digispark-Cheerlights/windows/python27.dll -------------------------------------------------------------------------------- /Python/Digispark-Cheerlights/windows/select.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/Digispark-Cheerlights/windows/select.pyd -------------------------------------------------------------------------------- /Python/Digispark-Cheerlights/windows/wx._core_.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/Digispark-Cheerlights/windows/wx._core_.pyd -------------------------------------------------------------------------------- /Python/Digispark-Cheerlights/windows/wx._gdi_.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/Digispark-Cheerlights/windows/wx._gdi_.pyd -------------------------------------------------------------------------------- /Python/Digispark-Cheerlights/windows/wx._misc_.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/Python/Digispark-Cheerlights/windows/wx._misc_.pyd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digistump/DigisparkExamplePrograms/HEAD/README.md --------------------------------------------------------------------------------