├── .doxyConfig ├── .githooks └── pre-commit ├── .gitignore ├── DoxygenLayout.xml ├── README.md ├── doxygen.sty ├── header.tex ├── mission_patch.png ├── project.yml └── radsat-sk ├── .cproject ├── .gitignore ├── .project ├── Jlink-samg20-GDB.launch ├── framework ├── fileio │ ├── RFram.c │ └── RFram.h └── serial │ ├── RI2c.c │ ├── RI2c.h │ ├── RUart.c │ └── RUart.h ├── operation ├── collection │ └── RLogging.h ├── message │ ├── RMessage.c │ ├── RMessage.h │ ├── crypt │ │ ├── RKey.c │ │ ├── RKey.h │ │ ├── RXorCipher.c │ │ └── RXorCipher.h │ └── protobuf │ │ ├── RProtobuf.c │ │ ├── RProtobuf.h │ │ ├── generate-proto.sh │ │ ├── nanopb │ │ ├── generator-bin │ │ │ ├── Include │ │ │ │ └── pyconfig.h │ │ │ ├── VCRUNTIME140.dll │ │ │ ├── _asyncio.pyd │ │ │ ├── _bz2.pyd │ │ │ ├── _ctypes.pyd │ │ │ ├── _decimal.pyd │ │ │ ├── _elementtree.pyd │ │ │ ├── _hashlib.pyd │ │ │ ├── _lzma.pyd │ │ │ ├── _multiprocessing.pyd │ │ │ ├── _overlapped.pyd │ │ │ ├── _queue.pyd │ │ │ ├── _socket.pyd │ │ │ ├── _ssl.pyd │ │ │ ├── _testcapi.pyd │ │ │ ├── _tkinter.pyd │ │ │ ├── base_library.zip │ │ │ ├── grpc_tools │ │ │ │ ├── _proto │ │ │ │ │ └── google │ │ │ │ │ │ └── protobuf │ │ │ │ │ │ ├── any.proto │ │ │ │ │ │ ├── api.proto │ │ │ │ │ │ ├── compiler │ │ │ │ │ │ └── plugin.proto │ │ │ │ │ │ ├── descriptor.proto │ │ │ │ │ │ ├── duration.proto │ │ │ │ │ │ ├── empty.proto │ │ │ │ │ │ ├── field_mask.proto │ │ │ │ │ │ ├── source_context.proto │ │ │ │ │ │ ├── struct.proto │ │ │ │ │ │ ├── timestamp.proto │ │ │ │ │ │ ├── type.proto │ │ │ │ │ │ └── wrappers.proto │ │ │ │ └── _protoc_compiler.cp38-win32.pyd │ │ │ ├── lib2to3 │ │ │ │ ├── Grammar.txt │ │ │ │ ├── Grammar3.8.3.final.0.pickle │ │ │ │ ├── PatternGrammar.txt │ │ │ │ ├── PatternGrammar3.8.3.final.0.pickle │ │ │ │ └── tests │ │ │ │ │ └── data │ │ │ │ │ └── README │ │ │ ├── libcrypto-1_1.dll │ │ │ ├── libffi-7.dll │ │ │ ├── libssl-1_1.dll │ │ │ ├── nanopb_generator.exe │ │ │ ├── nanopb_generator.exe.manifest │ │ │ ├── proto │ │ │ │ ├── Makefile │ │ │ │ ├── __init__.py │ │ │ │ ├── _utils.py │ │ │ │ ├── google │ │ │ │ │ └── protobuf │ │ │ │ │ │ └── descriptor.proto │ │ │ │ ├── nanopb.proto │ │ │ │ └── nanopb_pb2.py │ │ │ ├── protoc-gen-nanopb.exe │ │ │ ├── protoc.exe │ │ │ ├── pyexpat.pyd │ │ │ ├── python38.dll │ │ │ ├── select.pyd │ │ │ ├── tcl │ │ │ │ ├── auto.tcl │ │ │ │ ├── clock.tcl │ │ │ │ ├── encoding │ │ │ │ │ ├── ascii.enc │ │ │ │ │ ├── big5.enc │ │ │ │ │ ├── cp1250.enc │ │ │ │ │ ├── cp1251.enc │ │ │ │ │ ├── cp1252.enc │ │ │ │ │ ├── cp1253.enc │ │ │ │ │ ├── cp1254.enc │ │ │ │ │ ├── cp1255.enc │ │ │ │ │ ├── cp1256.enc │ │ │ │ │ ├── cp1257.enc │ │ │ │ │ ├── cp1258.enc │ │ │ │ │ ├── cp437.enc │ │ │ │ │ ├── cp737.enc │ │ │ │ │ ├── cp775.enc │ │ │ │ │ ├── cp850.enc │ │ │ │ │ ├── cp852.enc │ │ │ │ │ ├── cp855.enc │ │ │ │ │ ├── cp857.enc │ │ │ │ │ ├── cp860.enc │ │ │ │ │ ├── cp861.enc │ │ │ │ │ ├── cp862.enc │ │ │ │ │ ├── cp863.enc │ │ │ │ │ ├── cp864.enc │ │ │ │ │ ├── cp865.enc │ │ │ │ │ ├── cp866.enc │ │ │ │ │ ├── cp869.enc │ │ │ │ │ ├── cp874.enc │ │ │ │ │ ├── cp932.enc │ │ │ │ │ ├── cp936.enc │ │ │ │ │ ├── cp949.enc │ │ │ │ │ ├── cp950.enc │ │ │ │ │ ├── dingbats.enc │ │ │ │ │ ├── ebcdic.enc │ │ │ │ │ ├── euc-cn.enc │ │ │ │ │ ├── euc-jp.enc │ │ │ │ │ ├── euc-kr.enc │ │ │ │ │ ├── gb12345.enc │ │ │ │ │ ├── gb1988.enc │ │ │ │ │ ├── gb2312-raw.enc │ │ │ │ │ ├── gb2312.enc │ │ │ │ │ ├── iso2022-jp.enc │ │ │ │ │ ├── iso2022-kr.enc │ │ │ │ │ ├── iso2022.enc │ │ │ │ │ ├── iso8859-1.enc │ │ │ │ │ ├── iso8859-10.enc │ │ │ │ │ ├── iso8859-13.enc │ │ │ │ │ ├── iso8859-14.enc │ │ │ │ │ ├── iso8859-15.enc │ │ │ │ │ ├── iso8859-16.enc │ │ │ │ │ ├── iso8859-2.enc │ │ │ │ │ ├── iso8859-3.enc │ │ │ │ │ ├── iso8859-4.enc │ │ │ │ │ ├── iso8859-5.enc │ │ │ │ │ ├── iso8859-6.enc │ │ │ │ │ ├── iso8859-7.enc │ │ │ │ │ ├── iso8859-8.enc │ │ │ │ │ ├── iso8859-9.enc │ │ │ │ │ ├── jis0201.enc │ │ │ │ │ ├── jis0208.enc │ │ │ │ │ ├── jis0212.enc │ │ │ │ │ ├── koi8-r.enc │ │ │ │ │ ├── koi8-u.enc │ │ │ │ │ ├── ksc5601.enc │ │ │ │ │ ├── macCentEuro.enc │ │ │ │ │ ├── macCroatian.enc │ │ │ │ │ ├── macCyrillic.enc │ │ │ │ │ ├── macDingbats.enc │ │ │ │ │ ├── macGreek.enc │ │ │ │ │ ├── macIceland.enc │ │ │ │ │ ├── macJapan.enc │ │ │ │ │ ├── macRoman.enc │ │ │ │ │ ├── macRomania.enc │ │ │ │ │ ├── macThai.enc │ │ │ │ │ ├── macTurkish.enc │ │ │ │ │ ├── macUkraine.enc │ │ │ │ │ ├── shiftjis.enc │ │ │ │ │ ├── symbol.enc │ │ │ │ │ └── tis-620.enc │ │ │ │ ├── history.tcl │ │ │ │ ├── http1.0 │ │ │ │ │ ├── http.tcl │ │ │ │ │ └── pkgIndex.tcl │ │ │ │ ├── init.tcl │ │ │ │ ├── msgs │ │ │ │ │ ├── af.msg │ │ │ │ │ ├── af_za.msg │ │ │ │ │ ├── ar.msg │ │ │ │ │ ├── ar_in.msg │ │ │ │ │ ├── ar_jo.msg │ │ │ │ │ ├── ar_lb.msg │ │ │ │ │ ├── ar_sy.msg │ │ │ │ │ ├── be.msg │ │ │ │ │ ├── bg.msg │ │ │ │ │ ├── bn.msg │ │ │ │ │ ├── bn_in.msg │ │ │ │ │ ├── ca.msg │ │ │ │ │ ├── cs.msg │ │ │ │ │ ├── da.msg │ │ │ │ │ ├── de.msg │ │ │ │ │ ├── de_at.msg │ │ │ │ │ ├── de_be.msg │ │ │ │ │ ├── el.msg │ │ │ │ │ ├── en_au.msg │ │ │ │ │ ├── en_be.msg │ │ │ │ │ ├── en_bw.msg │ │ │ │ │ ├── en_ca.msg │ │ │ │ │ ├── en_gb.msg │ │ │ │ │ ├── en_hk.msg │ │ │ │ │ ├── en_ie.msg │ │ │ │ │ ├── en_in.msg │ │ │ │ │ ├── en_nz.msg │ │ │ │ │ ├── en_ph.msg │ │ │ │ │ ├── en_sg.msg │ │ │ │ │ ├── en_za.msg │ │ │ │ │ ├── en_zw.msg │ │ │ │ │ ├── eo.msg │ │ │ │ │ ├── es.msg │ │ │ │ │ ├── es_ar.msg │ │ │ │ │ ├── es_bo.msg │ │ │ │ │ ├── es_cl.msg │ │ │ │ │ ├── es_co.msg │ │ │ │ │ ├── es_cr.msg │ │ │ │ │ ├── es_do.msg │ │ │ │ │ ├── es_ec.msg │ │ │ │ │ ├── es_gt.msg │ │ │ │ │ ├── es_hn.msg │ │ │ │ │ ├── es_mx.msg │ │ │ │ │ ├── es_ni.msg │ │ │ │ │ ├── es_pa.msg │ │ │ │ │ ├── es_pe.msg │ │ │ │ │ ├── es_pr.msg │ │ │ │ │ ├── es_py.msg │ │ │ │ │ ├── es_sv.msg │ │ │ │ │ ├── es_uy.msg │ │ │ │ │ ├── es_ve.msg │ │ │ │ │ ├── et.msg │ │ │ │ │ ├── eu.msg │ │ │ │ │ ├── eu_es.msg │ │ │ │ │ ├── fa.msg │ │ │ │ │ ├── fa_in.msg │ │ │ │ │ ├── fa_ir.msg │ │ │ │ │ ├── fi.msg │ │ │ │ │ ├── fo.msg │ │ │ │ │ ├── fo_fo.msg │ │ │ │ │ ├── fr.msg │ │ │ │ │ ├── fr_be.msg │ │ │ │ │ ├── fr_ca.msg │ │ │ │ │ ├── fr_ch.msg │ │ │ │ │ ├── ga.msg │ │ │ │ │ ├── ga_ie.msg │ │ │ │ │ ├── gl.msg │ │ │ │ │ ├── gl_es.msg │ │ │ │ │ ├── gv.msg │ │ │ │ │ ├── gv_gb.msg │ │ │ │ │ ├── he.msg │ │ │ │ │ ├── hi.msg │ │ │ │ │ ├── hi_in.msg │ │ │ │ │ ├── hr.msg │ │ │ │ │ ├── hu.msg │ │ │ │ │ ├── id.msg │ │ │ │ │ ├── id_id.msg │ │ │ │ │ ├── is.msg │ │ │ │ │ ├── it.msg │ │ │ │ │ ├── it_ch.msg │ │ │ │ │ ├── ja.msg │ │ │ │ │ ├── kl.msg │ │ │ │ │ ├── kl_gl.msg │ │ │ │ │ ├── ko.msg │ │ │ │ │ ├── ko_kr.msg │ │ │ │ │ ├── kok.msg │ │ │ │ │ ├── kok_in.msg │ │ │ │ │ ├── kw.msg │ │ │ │ │ ├── kw_gb.msg │ │ │ │ │ ├── lt.msg │ │ │ │ │ ├── lv.msg │ │ │ │ │ ├── mk.msg │ │ │ │ │ ├── mr.msg │ │ │ │ │ ├── mr_in.msg │ │ │ │ │ ├── ms.msg │ │ │ │ │ ├── ms_my.msg │ │ │ │ │ ├── mt.msg │ │ │ │ │ ├── nb.msg │ │ │ │ │ ├── nl.msg │ │ │ │ │ ├── nl_be.msg │ │ │ │ │ ├── nn.msg │ │ │ │ │ ├── pl.msg │ │ │ │ │ ├── pt.msg │ │ │ │ │ ├── pt_br.msg │ │ │ │ │ ├── ro.msg │ │ │ │ │ ├── ru.msg │ │ │ │ │ ├── ru_ua.msg │ │ │ │ │ ├── sh.msg │ │ │ │ │ ├── sk.msg │ │ │ │ │ ├── sl.msg │ │ │ │ │ ├── sq.msg │ │ │ │ │ ├── sr.msg │ │ │ │ │ ├── sv.msg │ │ │ │ │ ├── sw.msg │ │ │ │ │ ├── ta.msg │ │ │ │ │ ├── ta_in.msg │ │ │ │ │ ├── te.msg │ │ │ │ │ ├── te_in.msg │ │ │ │ │ ├── th.msg │ │ │ │ │ ├── tr.msg │ │ │ │ │ ├── uk.msg │ │ │ │ │ ├── vi.msg │ │ │ │ │ ├── zh.msg │ │ │ │ │ ├── zh_cn.msg │ │ │ │ │ ├── zh_hk.msg │ │ │ │ │ ├── zh_sg.msg │ │ │ │ │ └── zh_tw.msg │ │ │ │ ├── opt0.4 │ │ │ │ │ ├── optparse.tcl │ │ │ │ │ └── pkgIndex.tcl │ │ │ │ ├── package.tcl │ │ │ │ ├── parray.tcl │ │ │ │ ├── safe.tcl │ │ │ │ ├── tclIndex │ │ │ │ ├── tm.tcl │ │ │ │ ├── tzdata │ │ │ │ │ ├── Africa │ │ │ │ │ │ ├── Abidjan │ │ │ │ │ │ ├── Accra │ │ │ │ │ │ ├── Addis_Ababa │ │ │ │ │ │ ├── Algiers │ │ │ │ │ │ ├── Asmara │ │ │ │ │ │ ├── Asmera │ │ │ │ │ │ ├── Bamako │ │ │ │ │ │ ├── Bangui │ │ │ │ │ │ ├── Banjul │ │ │ │ │ │ ├── Bissau │ │ │ │ │ │ ├── Blantyre │ │ │ │ │ │ ├── Brazzaville │ │ │ │ │ │ ├── Bujumbura │ │ │ │ │ │ ├── Cairo │ │ │ │ │ │ ├── Casablanca │ │ │ │ │ │ ├── Ceuta │ │ │ │ │ │ ├── Conakry │ │ │ │ │ │ ├── Dakar │ │ │ │ │ │ ├── Dar_es_Salaam │ │ │ │ │ │ ├── Djibouti │ │ │ │ │ │ ├── Douala │ │ │ │ │ │ ├── El_Aaiun │ │ │ │ │ │ ├── Freetown │ │ │ │ │ │ ├── Gaborone │ │ │ │ │ │ ├── Harare │ │ │ │ │ │ ├── Johannesburg │ │ │ │ │ │ ├── Juba │ │ │ │ │ │ ├── Kampala │ │ │ │ │ │ ├── Khartoum │ │ │ │ │ │ ├── Kigali │ │ │ │ │ │ ├── Kinshasa │ │ │ │ │ │ ├── Lagos │ │ │ │ │ │ ├── Libreville │ │ │ │ │ │ ├── Lome │ │ │ │ │ │ ├── Luanda │ │ │ │ │ │ ├── Lubumbashi │ │ │ │ │ │ ├── Lusaka │ │ │ │ │ │ ├── Malabo │ │ │ │ │ │ ├── Maputo │ │ │ │ │ │ ├── Maseru │ │ │ │ │ │ ├── Mbabane │ │ │ │ │ │ ├── Mogadishu │ │ │ │ │ │ ├── Monrovia │ │ │ │ │ │ ├── Nairobi │ │ │ │ │ │ ├── Ndjamena │ │ │ │ │ │ ├── Niamey │ │ │ │ │ │ ├── Nouakchott │ │ │ │ │ │ ├── Ouagadougou │ │ │ │ │ │ ├── Porto-Novo │ │ │ │ │ │ ├── Sao_Tome │ │ │ │ │ │ ├── Timbuktu │ │ │ │ │ │ ├── Tripoli │ │ │ │ │ │ ├── Tunis │ │ │ │ │ │ └── Windhoek │ │ │ │ │ ├── America │ │ │ │ │ │ ├── Adak │ │ │ │ │ │ ├── Anchorage │ │ │ │ │ │ ├── Anguilla │ │ │ │ │ │ ├── Antigua │ │ │ │ │ │ ├── Araguaina │ │ │ │ │ │ ├── Argentina │ │ │ │ │ │ │ ├── Buenos_Aires │ │ │ │ │ │ │ ├── Catamarca │ │ │ │ │ │ │ ├── ComodRivadavia │ │ │ │ │ │ │ ├── Cordoba │ │ │ │ │ │ │ ├── Jujuy │ │ │ │ │ │ │ ├── La_Rioja │ │ │ │ │ │ │ ├── Mendoza │ │ │ │ │ │ │ ├── Rio_Gallegos │ │ │ │ │ │ │ ├── Salta │ │ │ │ │ │ │ ├── San_Juan │ │ │ │ │ │ │ ├── San_Luis │ │ │ │ │ │ │ ├── Tucuman │ │ │ │ │ │ │ └── Ushuaia │ │ │ │ │ │ ├── Aruba │ │ │ │ │ │ ├── Asuncion │ │ │ │ │ │ ├── Atikokan │ │ │ │ │ │ ├── Atka │ │ │ │ │ │ ├── Bahia │ │ │ │ │ │ ├── Bahia_Banderas │ │ │ │ │ │ ├── Barbados │ │ │ │ │ │ ├── Belem │ │ │ │ │ │ ├── Belize │ │ │ │ │ │ ├── Blanc-Sablon │ │ │ │ │ │ ├── Boa_Vista │ │ │ │ │ │ ├── Bogota │ │ │ │ │ │ ├── Boise │ │ │ │ │ │ ├── Buenos_Aires │ │ │ │ │ │ ├── Cambridge_Bay │ │ │ │ │ │ ├── Campo_Grande │ │ │ │ │ │ ├── Cancun │ │ │ │ │ │ ├── Caracas │ │ │ │ │ │ ├── Catamarca │ │ │ │ │ │ ├── Cayenne │ │ │ │ │ │ ├── Cayman │ │ │ │ │ │ ├── Chicago │ │ │ │ │ │ ├── Chihuahua │ │ │ │ │ │ ├── Coral_Harbour │ │ │ │ │ │ ├── Cordoba │ │ │ │ │ │ ├── Costa_Rica │ │ │ │ │ │ ├── Creston │ │ │ │ │ │ ├── Cuiaba │ │ │ │ │ │ ├── Curacao │ │ │ │ │ │ ├── Danmarkshavn │ │ │ │ │ │ ├── Dawson │ │ │ │ │ │ ├── Dawson_Creek │ │ │ │ │ │ ├── Denver │ │ │ │ │ │ ├── Detroit │ │ │ │ │ │ ├── Dominica │ │ │ │ │ │ ├── Edmonton │ │ │ │ │ │ ├── Eirunepe │ │ │ │ │ │ ├── El_Salvador │ │ │ │ │ │ ├── Ensenada │ │ │ │ │ │ ├── Fort_Nelson │ │ │ │ │ │ ├── Fort_Wayne │ │ │ │ │ │ ├── Fortaleza │ │ │ │ │ │ ├── Glace_Bay │ │ │ │ │ │ ├── Godthab │ │ │ │ │ │ ├── Goose_Bay │ │ │ │ │ │ ├── Grand_Turk │ │ │ │ │ │ ├── Grenada │ │ │ │ │ │ ├── Guadeloupe │ │ │ │ │ │ ├── Guatemala │ │ │ │ │ │ ├── Guayaquil │ │ │ │ │ │ ├── Guyana │ │ │ │ │ │ ├── Halifax │ │ │ │ │ │ ├── Havana │ │ │ │ │ │ ├── Hermosillo │ │ │ │ │ │ ├── Indiana │ │ │ │ │ │ │ ├── Indianapolis │ │ │ │ │ │ │ ├── Knox │ │ │ │ │ │ │ ├── Marengo │ │ │ │ │ │ │ ├── Petersburg │ │ │ │ │ │ │ ├── Tell_City │ │ │ │ │ │ │ ├── Vevay │ │ │ │ │ │ │ ├── Vincennes │ │ │ │ │ │ │ └── Winamac │ │ │ │ │ │ ├── Indianapolis │ │ │ │ │ │ ├── Inuvik │ │ │ │ │ │ ├── Iqaluit │ │ │ │ │ │ ├── Jamaica │ │ │ │ │ │ ├── Jujuy │ │ │ │ │ │ ├── Juneau │ │ │ │ │ │ ├── Kentucky │ │ │ │ │ │ │ ├── Louisville │ │ │ │ │ │ │ └── Monticello │ │ │ │ │ │ ├── Knox_IN │ │ │ │ │ │ ├── Kralendijk │ │ │ │ │ │ ├── La_Paz │ │ │ │ │ │ ├── Lima │ │ │ │ │ │ ├── Los_Angeles │ │ │ │ │ │ ├── Louisville │ │ │ │ │ │ ├── Lower_Princes │ │ │ │ │ │ ├── Maceio │ │ │ │ │ │ ├── Managua │ │ │ │ │ │ ├── Manaus │ │ │ │ │ │ ├── Marigot │ │ │ │ │ │ ├── Martinique │ │ │ │ │ │ ├── Matamoros │ │ │ │ │ │ ├── Mazatlan │ │ │ │ │ │ ├── Mendoza │ │ │ │ │ │ ├── Menominee │ │ │ │ │ │ ├── Merida │ │ │ │ │ │ ├── Metlakatla │ │ │ │ │ │ ├── Mexico_City │ │ │ │ │ │ ├── Miquelon │ │ │ │ │ │ ├── Moncton │ │ │ │ │ │ ├── Monterrey │ │ │ │ │ │ ├── Montevideo │ │ │ │ │ │ ├── Montreal │ │ │ │ │ │ ├── Montserrat │ │ │ │ │ │ ├── Nassau │ │ │ │ │ │ ├── New_York │ │ │ │ │ │ ├── Nipigon │ │ │ │ │ │ ├── Nome │ │ │ │ │ │ ├── Noronha │ │ │ │ │ │ ├── North_Dakota │ │ │ │ │ │ │ ├── Beulah │ │ │ │ │ │ │ ├── Center │ │ │ │ │ │ │ └── New_Salem │ │ │ │ │ │ ├── Ojinaga │ │ │ │ │ │ ├── Panama │ │ │ │ │ │ ├── Pangnirtung │ │ │ │ │ │ ├── Paramaribo │ │ │ │ │ │ ├── Phoenix │ │ │ │ │ │ ├── Port-au-Prince │ │ │ │ │ │ ├── Port_of_Spain │ │ │ │ │ │ ├── Porto_Acre │ │ │ │ │ │ ├── Porto_Velho │ │ │ │ │ │ ├── Puerto_Rico │ │ │ │ │ │ ├── Punta_Arenas │ │ │ │ │ │ ├── Rainy_River │ │ │ │ │ │ ├── Rankin_Inlet │ │ │ │ │ │ ├── Recife │ │ │ │ │ │ ├── Regina │ │ │ │ │ │ ├── Resolute │ │ │ │ │ │ ├── Rio_Branco │ │ │ │ │ │ ├── Rosario │ │ │ │ │ │ ├── Santa_Isabel │ │ │ │ │ │ ├── Santarem │ │ │ │ │ │ ├── Santiago │ │ │ │ │ │ ├── Santo_Domingo │ │ │ │ │ │ ├── Sao_Paulo │ │ │ │ │ │ ├── Scoresbysund │ │ │ │ │ │ ├── Shiprock │ │ │ │ │ │ ├── Sitka │ │ │ │ │ │ ├── St_Barthelemy │ │ │ │ │ │ ├── St_Johns │ │ │ │ │ │ ├── St_Kitts │ │ │ │ │ │ ├── St_Lucia │ │ │ │ │ │ ├── St_Thomas │ │ │ │ │ │ ├── St_Vincent │ │ │ │ │ │ ├── Swift_Current │ │ │ │ │ │ ├── Tegucigalpa │ │ │ │ │ │ ├── Thule │ │ │ │ │ │ ├── Thunder_Bay │ │ │ │ │ │ ├── Tijuana │ │ │ │ │ │ ├── Toronto │ │ │ │ │ │ ├── Tortola │ │ │ │ │ │ ├── Vancouver │ │ │ │ │ │ ├── Virgin │ │ │ │ │ │ ├── Whitehorse │ │ │ │ │ │ ├── Winnipeg │ │ │ │ │ │ ├── Yakutat │ │ │ │ │ │ └── Yellowknife │ │ │ │ │ ├── Antarctica │ │ │ │ │ │ ├── Casey │ │ │ │ │ │ ├── Davis │ │ │ │ │ │ ├── DumontDUrville │ │ │ │ │ │ ├── Macquarie │ │ │ │ │ │ ├── Mawson │ │ │ │ │ │ ├── McMurdo │ │ │ │ │ │ ├── Palmer │ │ │ │ │ │ ├── Rothera │ │ │ │ │ │ ├── South_Pole │ │ │ │ │ │ ├── Syowa │ │ │ │ │ │ ├── Troll │ │ │ │ │ │ └── Vostok │ │ │ │ │ ├── Arctic │ │ │ │ │ │ └── Longyearbyen │ │ │ │ │ ├── Asia │ │ │ │ │ │ ├── Aden │ │ │ │ │ │ ├── Almaty │ │ │ │ │ │ ├── Amman │ │ │ │ │ │ ├── Anadyr │ │ │ │ │ │ ├── Aqtau │ │ │ │ │ │ ├── Aqtobe │ │ │ │ │ │ ├── Ashgabat │ │ │ │ │ │ ├── Ashkhabad │ │ │ │ │ │ ├── Atyrau │ │ │ │ │ │ ├── Baghdad │ │ │ │ │ │ ├── Bahrain │ │ │ │ │ │ ├── Baku │ │ │ │ │ │ ├── Bangkok │ │ │ │ │ │ ├── Barnaul │ │ │ │ │ │ ├── Beirut │ │ │ │ │ │ ├── Bishkek │ │ │ │ │ │ ├── Brunei │ │ │ │ │ │ ├── Calcutta │ │ │ │ │ │ ├── Chita │ │ │ │ │ │ ├── Choibalsan │ │ │ │ │ │ ├── Chongqing │ │ │ │ │ │ ├── Chungking │ │ │ │ │ │ ├── Colombo │ │ │ │ │ │ ├── Dacca │ │ │ │ │ │ ├── Damascus │ │ │ │ │ │ ├── Dhaka │ │ │ │ │ │ ├── Dili │ │ │ │ │ │ ├── Dubai │ │ │ │ │ │ ├── Dushanbe │ │ │ │ │ │ ├── Famagusta │ │ │ │ │ │ ├── Gaza │ │ │ │ │ │ ├── Harbin │ │ │ │ │ │ ├── Hebron │ │ │ │ │ │ ├── Ho_Chi_Minh │ │ │ │ │ │ ├── Hong_Kong │ │ │ │ │ │ ├── Hovd │ │ │ │ │ │ ├── Irkutsk │ │ │ │ │ │ ├── Istanbul │ │ │ │ │ │ ├── Jakarta │ │ │ │ │ │ ├── Jayapura │ │ │ │ │ │ ├── Jerusalem │ │ │ │ │ │ ├── Kabul │ │ │ │ │ │ ├── Kamchatka │ │ │ │ │ │ ├── Karachi │ │ │ │ │ │ ├── Kashgar │ │ │ │ │ │ ├── Kathmandu │ │ │ │ │ │ ├── Katmandu │ │ │ │ │ │ ├── Khandyga │ │ │ │ │ │ ├── Kolkata │ │ │ │ │ │ ├── Krasnoyarsk │ │ │ │ │ │ ├── Kuala_Lumpur │ │ │ │ │ │ ├── Kuching │ │ │ │ │ │ ├── Kuwait │ │ │ │ │ │ ├── Macao │ │ │ │ │ │ ├── Macau │ │ │ │ │ │ ├── Magadan │ │ │ │ │ │ ├── Makassar │ │ │ │ │ │ ├── Manila │ │ │ │ │ │ ├── Muscat │ │ │ │ │ │ ├── Nicosia │ │ │ │ │ │ ├── Novokuznetsk │ │ │ │ │ │ ├── Novosibirsk │ │ │ │ │ │ ├── Omsk │ │ │ │ │ │ ├── Oral │ │ │ │ │ │ ├── Phnom_Penh │ │ │ │ │ │ ├── Pontianak │ │ │ │ │ │ ├── Pyongyang │ │ │ │ │ │ ├── Qatar │ │ │ │ │ │ ├── Qyzylorda │ │ │ │ │ │ ├── Rangoon │ │ │ │ │ │ ├── Riyadh │ │ │ │ │ │ ├── Saigon │ │ │ │ │ │ ├── Sakhalin │ │ │ │ │ │ ├── Samarkand │ │ │ │ │ │ ├── Seoul │ │ │ │ │ │ ├── Shanghai │ │ │ │ │ │ ├── Singapore │ │ │ │ │ │ ├── Srednekolymsk │ │ │ │ │ │ ├── Taipei │ │ │ │ │ │ ├── Tashkent │ │ │ │ │ │ ├── Tbilisi │ │ │ │ │ │ ├── Tehran │ │ │ │ │ │ ├── Tel_Aviv │ │ │ │ │ │ ├── Thimbu │ │ │ │ │ │ ├── Thimphu │ │ │ │ │ │ ├── Tokyo │ │ │ │ │ │ ├── Tomsk │ │ │ │ │ │ ├── Ujung_Pandang │ │ │ │ │ │ ├── Ulaanbaatar │ │ │ │ │ │ ├── Ulan_Bator │ │ │ │ │ │ ├── Urumqi │ │ │ │ │ │ ├── Ust-Nera │ │ │ │ │ │ ├── Vientiane │ │ │ │ │ │ ├── Vladivostok │ │ │ │ │ │ ├── Yakutsk │ │ │ │ │ │ ├── Yangon │ │ │ │ │ │ ├── Yekaterinburg │ │ │ │ │ │ └── Yerevan │ │ │ │ │ ├── Atlantic │ │ │ │ │ │ ├── Azores │ │ │ │ │ │ ├── Bermuda │ │ │ │ │ │ ├── Canary │ │ │ │ │ │ ├── Cape_Verde │ │ │ │ │ │ ├── Faeroe │ │ │ │ │ │ ├── Faroe │ │ │ │ │ │ ├── Jan_Mayen │ │ │ │ │ │ ├── Madeira │ │ │ │ │ │ ├── Reykjavik │ │ │ │ │ │ ├── South_Georgia │ │ │ │ │ │ ├── St_Helena │ │ │ │ │ │ └── Stanley │ │ │ │ │ ├── Australia │ │ │ │ │ │ ├── ACT │ │ │ │ │ │ ├── Adelaide │ │ │ │ │ │ ├── Brisbane │ │ │ │ │ │ ├── Broken_Hill │ │ │ │ │ │ ├── Canberra │ │ │ │ │ │ ├── Currie │ │ │ │ │ │ ├── Darwin │ │ │ │ │ │ ├── Eucla │ │ │ │ │ │ ├── Hobart │ │ │ │ │ │ ├── LHI │ │ │ │ │ │ ├── Lindeman │ │ │ │ │ │ ├── Lord_Howe │ │ │ │ │ │ ├── Melbourne │ │ │ │ │ │ ├── NSW │ │ │ │ │ │ ├── North │ │ │ │ │ │ ├── Perth │ │ │ │ │ │ ├── Queensland │ │ │ │ │ │ ├── South │ │ │ │ │ │ ├── Sydney │ │ │ │ │ │ ├── Tasmania │ │ │ │ │ │ ├── Victoria │ │ │ │ │ │ ├── West │ │ │ │ │ │ └── Yancowinna │ │ │ │ │ ├── Brazil │ │ │ │ │ │ ├── Acre │ │ │ │ │ │ ├── DeNoronha │ │ │ │ │ │ ├── East │ │ │ │ │ │ └── West │ │ │ │ │ ├── CET │ │ │ │ │ ├── CST6CDT │ │ │ │ │ ├── Canada │ │ │ │ │ │ ├── Atlantic │ │ │ │ │ │ ├── Central │ │ │ │ │ │ ├── East-Saskatchewan │ │ │ │ │ │ ├── Eastern │ │ │ │ │ │ ├── Mountain │ │ │ │ │ │ ├── Newfoundland │ │ │ │ │ │ ├── Pacific │ │ │ │ │ │ ├── Saskatchewan │ │ │ │ │ │ └── Yukon │ │ │ │ │ ├── Chile │ │ │ │ │ │ ├── Continental │ │ │ │ │ │ └── EasterIsland │ │ │ │ │ ├── Cuba │ │ │ │ │ ├── EET │ │ │ │ │ ├── EST │ │ │ │ │ ├── EST5EDT │ │ │ │ │ ├── Egypt │ │ │ │ │ ├── Eire │ │ │ │ │ ├── Etc │ │ │ │ │ │ ├── GMT │ │ │ │ │ │ ├── GMT+0 │ │ │ │ │ │ ├── GMT+1 │ │ │ │ │ │ ├── GMT+10 │ │ │ │ │ │ ├── GMT+11 │ │ │ │ │ │ ├── GMT+12 │ │ │ │ │ │ ├── GMT+2 │ │ │ │ │ │ ├── GMT+3 │ │ │ │ │ │ ├── GMT+4 │ │ │ │ │ │ ├── GMT+5 │ │ │ │ │ │ ├── GMT+6 │ │ │ │ │ │ ├── GMT+7 │ │ │ │ │ │ ├── GMT+8 │ │ │ │ │ │ ├── GMT+9 │ │ │ │ │ │ ├── GMT-0 │ │ │ │ │ │ ├── GMT-1 │ │ │ │ │ │ ├── GMT-10 │ │ │ │ │ │ ├── GMT-11 │ │ │ │ │ │ ├── GMT-12 │ │ │ │ │ │ ├── GMT-13 │ │ │ │ │ │ ├── GMT-14 │ │ │ │ │ │ ├── GMT-2 │ │ │ │ │ │ ├── GMT-3 │ │ │ │ │ │ ├── GMT-4 │ │ │ │ │ │ ├── GMT-5 │ │ │ │ │ │ ├── GMT-6 │ │ │ │ │ │ ├── GMT-7 │ │ │ │ │ │ ├── GMT-8 │ │ │ │ │ │ ├── GMT-9 │ │ │ │ │ │ ├── GMT0 │ │ │ │ │ │ ├── Greenwich │ │ │ │ │ │ ├── UCT │ │ │ │ │ │ ├── UTC │ │ │ │ │ │ ├── Universal │ │ │ │ │ │ └── Zulu │ │ │ │ │ ├── Europe │ │ │ │ │ │ ├── Amsterdam │ │ │ │ │ │ ├── Andorra │ │ │ │ │ │ ├── Astrakhan │ │ │ │ │ │ ├── Athens │ │ │ │ │ │ ├── Belfast │ │ │ │ │ │ ├── Belgrade │ │ │ │ │ │ ├── Berlin │ │ │ │ │ │ ├── Bratislava │ │ │ │ │ │ ├── Brussels │ │ │ │ │ │ ├── Bucharest │ │ │ │ │ │ ├── Budapest │ │ │ │ │ │ ├── Busingen │ │ │ │ │ │ ├── Chisinau │ │ │ │ │ │ ├── Copenhagen │ │ │ │ │ │ ├── Dublin │ │ │ │ │ │ ├── Gibraltar │ │ │ │ │ │ ├── Guernsey │ │ │ │ │ │ ├── Helsinki │ │ │ │ │ │ ├── Isle_of_Man │ │ │ │ │ │ ├── Istanbul │ │ │ │ │ │ ├── Jersey │ │ │ │ │ │ ├── Kaliningrad │ │ │ │ │ │ ├── Kiev │ │ │ │ │ │ ├── Kirov │ │ │ │ │ │ ├── Lisbon │ │ │ │ │ │ ├── Ljubljana │ │ │ │ │ │ ├── London │ │ │ │ │ │ ├── Luxembourg │ │ │ │ │ │ ├── Madrid │ │ │ │ │ │ ├── Malta │ │ │ │ │ │ ├── Mariehamn │ │ │ │ │ │ ├── Minsk │ │ │ │ │ │ ├── Monaco │ │ │ │ │ │ ├── Moscow │ │ │ │ │ │ ├── Nicosia │ │ │ │ │ │ ├── Oslo │ │ │ │ │ │ ├── Paris │ │ │ │ │ │ ├── Podgorica │ │ │ │ │ │ ├── Prague │ │ │ │ │ │ ├── Riga │ │ │ │ │ │ ├── Rome │ │ │ │ │ │ ├── Samara │ │ │ │ │ │ ├── San_Marino │ │ │ │ │ │ ├── Sarajevo │ │ │ │ │ │ ├── Saratov │ │ │ │ │ │ ├── Simferopol │ │ │ │ │ │ ├── Skopje │ │ │ │ │ │ ├── Sofia │ │ │ │ │ │ ├── Stockholm │ │ │ │ │ │ ├── Tallinn │ │ │ │ │ │ ├── Tirane │ │ │ │ │ │ ├── Tiraspol │ │ │ │ │ │ ├── Ulyanovsk │ │ │ │ │ │ ├── Uzhgorod │ │ │ │ │ │ ├── Vaduz │ │ │ │ │ │ ├── Vatican │ │ │ │ │ │ ├── Vienna │ │ │ │ │ │ ├── Vilnius │ │ │ │ │ │ ├── Volgograd │ │ │ │ │ │ ├── Warsaw │ │ │ │ │ │ ├── Zagreb │ │ │ │ │ │ ├── Zaporozhye │ │ │ │ │ │ └── Zurich │ │ │ │ │ ├── GB │ │ │ │ │ ├── GB-Eire │ │ │ │ │ ├── GMT │ │ │ │ │ ├── GMT+0 │ │ │ │ │ ├── GMT-0 │ │ │ │ │ ├── GMT0 │ │ │ │ │ ├── Greenwich │ │ │ │ │ ├── HST │ │ │ │ │ ├── Hongkong │ │ │ │ │ ├── Iceland │ │ │ │ │ ├── Indian │ │ │ │ │ │ ├── Antananarivo │ │ │ │ │ │ ├── Chagos │ │ │ │ │ │ ├── Christmas │ │ │ │ │ │ ├── Cocos │ │ │ │ │ │ ├── Comoro │ │ │ │ │ │ ├── Kerguelen │ │ │ │ │ │ ├── Mahe │ │ │ │ │ │ ├── Maldives │ │ │ │ │ │ ├── Mauritius │ │ │ │ │ │ ├── Mayotte │ │ │ │ │ │ └── Reunion │ │ │ │ │ ├── Iran │ │ │ │ │ ├── Israel │ │ │ │ │ ├── Jamaica │ │ │ │ │ ├── Japan │ │ │ │ │ ├── Kwajalein │ │ │ │ │ ├── Libya │ │ │ │ │ ├── MET │ │ │ │ │ ├── MST │ │ │ │ │ ├── MST7MDT │ │ │ │ │ ├── Mexico │ │ │ │ │ │ ├── BajaNorte │ │ │ │ │ │ ├── BajaSur │ │ │ │ │ │ └── General │ │ │ │ │ ├── NZ │ │ │ │ │ ├── NZ-CHAT │ │ │ │ │ ├── Navajo │ │ │ │ │ ├── PRC │ │ │ │ │ ├── PST8PDT │ │ │ │ │ ├── Pacific │ │ │ │ │ │ ├── Apia │ │ │ │ │ │ ├── Auckland │ │ │ │ │ │ ├── Bougainville │ │ │ │ │ │ ├── Chatham │ │ │ │ │ │ ├── Chuuk │ │ │ │ │ │ ├── Easter │ │ │ │ │ │ ├── Efate │ │ │ │ │ │ ├── Enderbury │ │ │ │ │ │ ├── Fakaofo │ │ │ │ │ │ ├── Fiji │ │ │ │ │ │ ├── Funafuti │ │ │ │ │ │ ├── Galapagos │ │ │ │ │ │ ├── Gambier │ │ │ │ │ │ ├── Guadalcanal │ │ │ │ │ │ ├── Guam │ │ │ │ │ │ ├── Honolulu │ │ │ │ │ │ ├── Johnston │ │ │ │ │ │ ├── Kiritimati │ │ │ │ │ │ ├── Kosrae │ │ │ │ │ │ ├── Kwajalein │ │ │ │ │ │ ├── Majuro │ │ │ │ │ │ ├── Marquesas │ │ │ │ │ │ ├── Midway │ │ │ │ │ │ ├── Nauru │ │ │ │ │ │ ├── Niue │ │ │ │ │ │ ├── Norfolk │ │ │ │ │ │ ├── Noumea │ │ │ │ │ │ ├── Pago_Pago │ │ │ │ │ │ ├── Palau │ │ │ │ │ │ ├── Pitcairn │ │ │ │ │ │ ├── Pohnpei │ │ │ │ │ │ ├── Ponape │ │ │ │ │ │ ├── Port_Moresby │ │ │ │ │ │ ├── Rarotonga │ │ │ │ │ │ ├── Saipan │ │ │ │ │ │ ├── Samoa │ │ │ │ │ │ ├── Tahiti │ │ │ │ │ │ ├── Tarawa │ │ │ │ │ │ ├── Tongatapu │ │ │ │ │ │ ├── Truk │ │ │ │ │ │ ├── Wake │ │ │ │ │ │ ├── Wallis │ │ │ │ │ │ └── Yap │ │ │ │ │ ├── Poland │ │ │ │ │ ├── Portugal │ │ │ │ │ ├── ROC │ │ │ │ │ ├── ROK │ │ │ │ │ ├── Singapore │ │ │ │ │ ├── SystemV │ │ │ │ │ │ ├── AST4 │ │ │ │ │ │ ├── AST4ADT │ │ │ │ │ │ ├── CST6 │ │ │ │ │ │ ├── CST6CDT │ │ │ │ │ │ ├── EST5 │ │ │ │ │ │ ├── EST5EDT │ │ │ │ │ │ ├── HST10 │ │ │ │ │ │ ├── MST7 │ │ │ │ │ │ ├── MST7MDT │ │ │ │ │ │ ├── PST8 │ │ │ │ │ │ ├── PST8PDT │ │ │ │ │ │ ├── YST9 │ │ │ │ │ │ └── YST9YDT │ │ │ │ │ ├── Turkey │ │ │ │ │ ├── UCT │ │ │ │ │ ├── US │ │ │ │ │ │ ├── Alaska │ │ │ │ │ │ ├── Aleutian │ │ │ │ │ │ ├── Arizona │ │ │ │ │ │ ├── Central │ │ │ │ │ │ ├── East-Indiana │ │ │ │ │ │ ├── Eastern │ │ │ │ │ │ ├── Hawaii │ │ │ │ │ │ ├── Indiana-Starke │ │ │ │ │ │ ├── Michigan │ │ │ │ │ │ ├── Mountain │ │ │ │ │ │ ├── Pacific │ │ │ │ │ │ ├── Pacific-New │ │ │ │ │ │ └── Samoa │ │ │ │ │ ├── UTC │ │ │ │ │ ├── Universal │ │ │ │ │ ├── W-SU │ │ │ │ │ ├── WET │ │ │ │ │ └── Zulu │ │ │ │ └── word.tcl │ │ │ ├── tcl86t.dll │ │ │ ├── tk │ │ │ │ ├── bgerror.tcl │ │ │ │ ├── button.tcl │ │ │ │ ├── choosedir.tcl │ │ │ │ ├── clrpick.tcl │ │ │ │ ├── comdlg.tcl │ │ │ │ ├── console.tcl │ │ │ │ ├── dialog.tcl │ │ │ │ ├── entry.tcl │ │ │ │ ├── focus.tcl │ │ │ │ ├── fontchooser.tcl │ │ │ │ ├── iconlist.tcl │ │ │ │ ├── icons.tcl │ │ │ │ ├── images │ │ │ │ │ ├── README │ │ │ │ │ ├── logo.eps │ │ │ │ │ ├── logo100.gif │ │ │ │ │ ├── logo64.gif │ │ │ │ │ ├── logoLarge.gif │ │ │ │ │ ├── logoMed.gif │ │ │ │ │ ├── pwrdLogo.eps │ │ │ │ │ ├── pwrdLogo100.gif │ │ │ │ │ ├── pwrdLogo150.gif │ │ │ │ │ ├── pwrdLogo175.gif │ │ │ │ │ ├── pwrdLogo200.gif │ │ │ │ │ ├── pwrdLogo75.gif │ │ │ │ │ └── tai-ku.gif │ │ │ │ ├── license.terms │ │ │ │ ├── listbox.tcl │ │ │ │ ├── megawidget.tcl │ │ │ │ ├── menu.tcl │ │ │ │ ├── mkpsenc.tcl │ │ │ │ ├── msgbox.tcl │ │ │ │ ├── msgs │ │ │ │ │ ├── cs.msg │ │ │ │ │ ├── da.msg │ │ │ │ │ ├── de.msg │ │ │ │ │ ├── el.msg │ │ │ │ │ ├── en.msg │ │ │ │ │ ├── en_gb.msg │ │ │ │ │ ├── eo.msg │ │ │ │ │ ├── es.msg │ │ │ │ │ ├── fr.msg │ │ │ │ │ ├── hu.msg │ │ │ │ │ ├── it.msg │ │ │ │ │ ├── nl.msg │ │ │ │ │ ├── pl.msg │ │ │ │ │ ├── pt.msg │ │ │ │ │ ├── ru.msg │ │ │ │ │ └── sv.msg │ │ │ │ ├── obsolete.tcl │ │ │ │ ├── optMenu.tcl │ │ │ │ ├── palette.tcl │ │ │ │ ├── panedwindow.tcl │ │ │ │ ├── pkgIndex.tcl │ │ │ │ ├── safetk.tcl │ │ │ │ ├── scale.tcl │ │ │ │ ├── scrlbar.tcl │ │ │ │ ├── spinbox.tcl │ │ │ │ ├── tclIndex │ │ │ │ ├── tearoff.tcl │ │ │ │ ├── text.tcl │ │ │ │ ├── tk.tcl │ │ │ │ ├── tkfbox.tcl │ │ │ │ ├── ttk │ │ │ │ │ ├── altTheme.tcl │ │ │ │ │ ├── aquaTheme.tcl │ │ │ │ │ ├── button.tcl │ │ │ │ │ ├── clamTheme.tcl │ │ │ │ │ ├── classicTheme.tcl │ │ │ │ │ ├── combobox.tcl │ │ │ │ │ ├── cursors.tcl │ │ │ │ │ ├── defaults.tcl │ │ │ │ │ ├── entry.tcl │ │ │ │ │ ├── fonts.tcl │ │ │ │ │ ├── menubutton.tcl │ │ │ │ │ ├── notebook.tcl │ │ │ │ │ ├── panedwindow.tcl │ │ │ │ │ ├── progress.tcl │ │ │ │ │ ├── scale.tcl │ │ │ │ │ ├── scrollbar.tcl │ │ │ │ │ ├── sizegrip.tcl │ │ │ │ │ ├── spinbox.tcl │ │ │ │ │ ├── treeview.tcl │ │ │ │ │ ├── ttk.tcl │ │ │ │ │ ├── utils.tcl │ │ │ │ │ ├── vistaTheme.tcl │ │ │ │ │ ├── winTheme.tcl │ │ │ │ │ └── xpTheme.tcl │ │ │ │ ├── unsupported.tcl │ │ │ │ └── xmfbox.tcl │ │ │ ├── tk86t.dll │ │ │ └── unicodedata.pyd │ │ ├── generator │ │ │ ├── nanopb_generator.py │ │ │ ├── nanopb_generator.py2 │ │ │ ├── proto │ │ │ │ ├── Makefile │ │ │ │ ├── __init__.py │ │ │ │ ├── _utils.py │ │ │ │ ├── google │ │ │ │ │ └── protobuf │ │ │ │ │ │ └── descriptor.proto │ │ │ │ ├── nanopb.proto │ │ │ │ └── nanopb_pb2.py │ │ │ ├── protoc │ │ │ ├── protoc-gen-nanopb │ │ │ ├── protoc-gen-nanopb-py2 │ │ │ ├── protoc-gen-nanopb.bat │ │ │ └── protoc.bat │ │ ├── pb.h │ │ ├── pb_common.c │ │ ├── pb_common.h │ │ ├── pb_decode.c │ │ ├── pb_decode.h │ │ ├── pb_encode.c │ │ └── pb_encode.h │ │ ├── proto │ │ ├── RFileTransfer.options │ │ ├── RFileTransfer.proto │ │ ├── RProtocol.options │ │ ├── RProtocol.proto │ │ ├── RRadsat.options │ │ ├── RRadsat.proto │ │ ├── RTelecommands.options │ │ └── RTelecommands.proto │ │ └── types │ │ ├── RFileTransfer.pb.c │ │ ├── RFileTransfer.pb.h │ │ ├── RProtocol.pb.c │ │ ├── RProtocol.pb.h │ │ ├── RRadsat.pb.c │ │ ├── RRadsat.pb.h │ │ ├── RTelecommands.pb.c │ │ └── RTelecommands.pb.h ├── services │ ├── RCameraService.c │ ├── RCameraService.h │ ├── RFileTransferService.c │ ├── RFileTransferService.h │ ├── RProtocolService.c │ ├── RProtocolService.h │ ├── RTelecommandService.c │ └── RTelecommandService.h ├── subsystems │ ├── RAntenna.c │ ├── RAntenna.h │ ├── RBattery.c │ ├── RBattery.h │ ├── RDosimeter.c │ ├── RDosimeter.h │ ├── RObc.c │ ├── RObc.h │ ├── RPdb.c │ ├── RPdb.h │ ├── RTransceiver.c │ ├── RTransceiver.h │ └── camera │ │ ├── RADCS.c │ │ ├── RADCS.h │ │ ├── RCamera.c │ │ ├── RCamera.h │ │ ├── RCameraCommon.c │ │ ├── RCameraCommon.h │ │ ├── RImage.c │ │ └── RImage.h └── utility │ ├── RCommon.h │ ├── RDebug.c │ ├── RDebug.h │ ├── RErrorManager.c │ ├── RErrorManager.h │ ├── crc.c │ └── crc.h ├── radsat-sk-debug.launch ├── radsat-sk-release.launch ├── radsat-sk-test.launch ├── src ├── main.c └── tasks │ ├── RAdcsCaptureTask.c │ ├── RAdcsCaptureTask.h │ ├── RCommunicationTasks.c │ ├── RCommunicationTasks.h │ ├── RDosimeterCollectionTask.c │ ├── RDosimeterCollectionTask.h │ ├── RImageCaptureTask.c │ ├── RImageCaptureTask.h │ ├── RSatelliteWatchdogTask.c │ ├── RSatelliteWatchdogTask.h │ ├── RTelemetryCollectionTask.c │ └── RTelemetryCollectionTask.h └── testing ├── RTestSuite.c ├── RTestSuite.h ├── RTestUtils.c ├── RTestUtils.h └── unit ├── RTestBattery.c ├── RTestBattery.h ├── RTestDosimeter.c ├── RTestDosimeter.h ├── RTestPdb.c └── RTestPdb.h /.githooks/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | branch_name=$(git symbolic-ref --short HEAD) 4 | branch_pattern="(admin|test|application|operation|framework|hotfix)/[a-z]+[a-z-]*" 5 | echo $branch_name | egrep -x "$branch_pattern" > /dev/null 6 | 7 | if [ $? == 1 ]; then 8 | echo "ERROR: $branch_name does not match the branch naming scheme" 9 | echo "To rename the current branch run \"git branch -m new_branch_name\", for further instructions see the README on the github page" 10 | exit 1 11 | fi 12 | 13 | exit 0 14 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # top level files 2 | *.yml 3 | *.png 4 | *.tex 5 | 6 | # proprietary files and software libraries 7 | hal/ 8 | satellite-subsystems/ 9 | 10 | # ignore useless output files 11 | *.pyc 12 | -------------------------------------------------------------------------------- /mission_patch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USST-RADSAT-SK/software-and-command/c11b7855b9f63cca8a73c2bcf828907ca089ef7b/mission_patch.png -------------------------------------------------------------------------------- /radsat-sk/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug 2 | /Release 3 | /docs 4 | /.settings 5 | /Test -------------------------------------------------------------------------------- /radsat-sk/Jlink-samg20-GDB.launch: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /radsat-sk/operation/collection/RLogging.h: -------------------------------------------------------------------------------- 1 | /** 2 | * @file RLogging.h 3 | * @date 4 | * @author 5 | */ 6 | 7 | #ifndef RLOGGING_H_ 8 | #define RLOGGING_H_ 9 | 10 | 11 | 12 | #endif /* RLOGGING_H_ */ 13 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/crypt/RKey.h: -------------------------------------------------------------------------------- 1 | /** 2 | * @file RKey.h 3 | * @date February 9, 2022 4 | * @author Tyrel Kostyk (tck290) 5 | */ 6 | 7 | #ifndef RKEY_H_ 8 | #define RKEY_H_ 9 | 10 | #include 11 | 12 | 13 | /*************************************************************************************************** 14 | PUBLIC API 15 | ***************************************************************************************************/ 16 | 17 | uint8_t privateKey(void); 18 | 19 | 20 | #endif /* RKEY_H_ */ 21 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/crypt/RXorCipher.h: -------------------------------------------------------------------------------- 1 | /** 2 | * @file RXorCipher.h 3 | * @date February 9, 2022 4 | * @author Tyrel Kostyk (tck290) 5 | */ 6 | 7 | 8 | #ifndef RXORCIPHER_H_ 9 | #define RXORCIPHER_H_ 10 | 11 | #include 12 | 13 | 14 | /*************************************************************************************************** 15 | PUBLIC API 16 | ***************************************************************************************************/ 17 | 18 | int xorDecrypt(uint8_t* buffer, uint8_t size); 19 | 20 | 21 | #endif /* RXORCIPHER_H_ */ 22 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/VCRUNTIME140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USST-RADSAT-SK/software-and-command/c11b7855b9f63cca8a73c2bcf828907ca089ef7b/radsat-sk/operation/message/protobuf/nanopb/generator-bin/VCRUNTIME140.dll -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/_asyncio.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USST-RADSAT-SK/software-and-command/c11b7855b9f63cca8a73c2bcf828907ca089ef7b/radsat-sk/operation/message/protobuf/nanopb/generator-bin/_asyncio.pyd -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/_bz2.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USST-RADSAT-SK/software-and-command/c11b7855b9f63cca8a73c2bcf828907ca089ef7b/radsat-sk/operation/message/protobuf/nanopb/generator-bin/_bz2.pyd -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/_ctypes.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USST-RADSAT-SK/software-and-command/c11b7855b9f63cca8a73c2bcf828907ca089ef7b/radsat-sk/operation/message/protobuf/nanopb/generator-bin/_ctypes.pyd -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/_decimal.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USST-RADSAT-SK/software-and-command/c11b7855b9f63cca8a73c2bcf828907ca089ef7b/radsat-sk/operation/message/protobuf/nanopb/generator-bin/_decimal.pyd -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/_elementtree.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USST-RADSAT-SK/software-and-command/c11b7855b9f63cca8a73c2bcf828907ca089ef7b/radsat-sk/operation/message/protobuf/nanopb/generator-bin/_elementtree.pyd -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/_hashlib.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USST-RADSAT-SK/software-and-command/c11b7855b9f63cca8a73c2bcf828907ca089ef7b/radsat-sk/operation/message/protobuf/nanopb/generator-bin/_hashlib.pyd -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/_lzma.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USST-RADSAT-SK/software-and-command/c11b7855b9f63cca8a73c2bcf828907ca089ef7b/radsat-sk/operation/message/protobuf/nanopb/generator-bin/_lzma.pyd -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/_multiprocessing.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USST-RADSAT-SK/software-and-command/c11b7855b9f63cca8a73c2bcf828907ca089ef7b/radsat-sk/operation/message/protobuf/nanopb/generator-bin/_multiprocessing.pyd -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/_overlapped.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USST-RADSAT-SK/software-and-command/c11b7855b9f63cca8a73c2bcf828907ca089ef7b/radsat-sk/operation/message/protobuf/nanopb/generator-bin/_overlapped.pyd -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/_queue.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USST-RADSAT-SK/software-and-command/c11b7855b9f63cca8a73c2bcf828907ca089ef7b/radsat-sk/operation/message/protobuf/nanopb/generator-bin/_queue.pyd -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/_socket.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USST-RADSAT-SK/software-and-command/c11b7855b9f63cca8a73c2bcf828907ca089ef7b/radsat-sk/operation/message/protobuf/nanopb/generator-bin/_socket.pyd -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/_ssl.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USST-RADSAT-SK/software-and-command/c11b7855b9f63cca8a73c2bcf828907ca089ef7b/radsat-sk/operation/message/protobuf/nanopb/generator-bin/_ssl.pyd -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/_testcapi.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USST-RADSAT-SK/software-and-command/c11b7855b9f63cca8a73c2bcf828907ca089ef7b/radsat-sk/operation/message/protobuf/nanopb/generator-bin/_testcapi.pyd -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/_tkinter.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USST-RADSAT-SK/software-and-command/c11b7855b9f63cca8a73c2bcf828907ca089ef7b/radsat-sk/operation/message/protobuf/nanopb/generator-bin/_tkinter.pyd -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/base_library.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USST-RADSAT-SK/software-and-command/c11b7855b9f63cca8a73c2bcf828907ca089ef7b/radsat-sk/operation/message/protobuf/nanopb/generator-bin/base_library.zip -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/grpc_tools/_protoc_compiler.cp38-win32.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USST-RADSAT-SK/software-and-command/c11b7855b9f63cca8a73c2bcf828907ca089ef7b/radsat-sk/operation/message/protobuf/nanopb/generator-bin/grpc_tools/_protoc_compiler.cp38-win32.pyd -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/lib2to3/Grammar3.8.3.final.0.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USST-RADSAT-SK/software-and-command/c11b7855b9f63cca8a73c2bcf828907ca089ef7b/radsat-sk/operation/message/protobuf/nanopb/generator-bin/lib2to3/Grammar3.8.3.final.0.pickle -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/lib2to3/PatternGrammar3.8.3.final.0.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USST-RADSAT-SK/software-and-command/c11b7855b9f63cca8a73c2bcf828907ca089ef7b/radsat-sk/operation/message/protobuf/nanopb/generator-bin/lib2to3/PatternGrammar3.8.3.final.0.pickle -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/lib2to3/tests/data/README: -------------------------------------------------------------------------------- 1 | In this directory: 2 | - py2_test_grammar.py -- test file that exercises most/all of Python 2.x's grammar. 3 | - py3_test_grammar.py -- test file that exercises most/all of Python 3.x's grammar. 4 | - infinite_recursion.py -- test file that causes lib2to3's faster recursive pattern matching 5 | scheme to fail, but passes when lib2to3 falls back to iterative pattern matching. 6 | - fixes/ -- for use by test_refactor.py 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/libcrypto-1_1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USST-RADSAT-SK/software-and-command/c11b7855b9f63cca8a73c2bcf828907ca089ef7b/radsat-sk/operation/message/protobuf/nanopb/generator-bin/libcrypto-1_1.dll -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/libffi-7.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USST-RADSAT-SK/software-and-command/c11b7855b9f63cca8a73c2bcf828907ca089ef7b/radsat-sk/operation/message/protobuf/nanopb/generator-bin/libffi-7.dll -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/libssl-1_1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USST-RADSAT-SK/software-and-command/c11b7855b9f63cca8a73c2bcf828907ca089ef7b/radsat-sk/operation/message/protobuf/nanopb/generator-bin/libssl-1_1.dll -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/nanopb_generator.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USST-RADSAT-SK/software-and-command/c11b7855b9f63cca8a73c2bcf828907ca089ef7b/radsat-sk/operation/message/protobuf/nanopb/generator-bin/nanopb_generator.exe -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/proto/Makefile: -------------------------------------------------------------------------------- 1 | PROTOC?=protoc 2 | 3 | all: nanopb_pb2.py 4 | 5 | %_pb2.py: %.proto 6 | $(PROTOC) --python_out=. $< 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/protoc-gen-nanopb.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USST-RADSAT-SK/software-and-command/c11b7855b9f63cca8a73c2bcf828907ca089ef7b/radsat-sk/operation/message/protobuf/nanopb/generator-bin/protoc-gen-nanopb.exe -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/protoc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USST-RADSAT-SK/software-and-command/c11b7855b9f63cca8a73c2bcf828907ca089ef7b/radsat-sk/operation/message/protobuf/nanopb/generator-bin/protoc.exe -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/pyexpat.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USST-RADSAT-SK/software-and-command/c11b7855b9f63cca8a73c2bcf828907ca089ef7b/radsat-sk/operation/message/protobuf/nanopb/generator-bin/pyexpat.pyd -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/python38.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USST-RADSAT-SK/software-and-command/c11b7855b9f63cca8a73c2bcf828907ca089ef7b/radsat-sk/operation/message/protobuf/nanopb/generator-bin/python38.dll -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/select.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USST-RADSAT-SK/software-and-command/c11b7855b9f63cca8a73c2bcf828907ca089ef7b/radsat-sk/operation/message/protobuf/nanopb/generator-bin/select.pyd -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/encoding/iso2022-jp.enc: -------------------------------------------------------------------------------- 1 | # Encoding file: iso2022-jp, escape-driven 2 | E 3 | name iso2022-jp 4 | init {} 5 | final {} 6 | ascii \x1b(B 7 | jis0201 \x1b(J 8 | jis0208 \x1b$B 9 | jis0208 \x1b$@ 10 | jis0212 \x1b$(D 11 | gb2312 \x1b$A 12 | ksc5601 \x1b$(C 13 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/encoding/iso2022-kr.enc: -------------------------------------------------------------------------------- 1 | # Encoding file: iso2022-kr, escape-driven 2 | E 3 | name iso2022-kr 4 | init \x1b$)C 5 | final {} 6 | iso8859-1 \x0f 7 | ksc5601 \x0e 8 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/encoding/iso2022.enc: -------------------------------------------------------------------------------- 1 | # Encoding file: iso2022, escape-driven 2 | E 3 | name iso2022 4 | init {} 5 | final {} 6 | iso8859-1 \x1b(B 7 | jis0201 \x1b(J 8 | gb1988 \x1b(T 9 | jis0208 \x1b$B 10 | jis0208 \x1b$@ 11 | jis0212 \x1b$(D 12 | gb2312 \x1b$A 13 | ksc5601 \x1b$(C 14 | jis0208 \x1b&@\x1b$B 15 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/af_za.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset af_ZA DATE_FORMAT "%d %B %Y" 4 | ::msgcat::mcset af_ZA TIME_FORMAT_12 "%l:%M:%S %P" 5 | ::msgcat::mcset af_ZA DATE_TIME_FORMAT "%d %B %Y %l:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/ar_in.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset ar_IN DATE_FORMAT "%A %d %B %Y" 4 | ::msgcat::mcset ar_IN TIME_FORMAT_12 "%I:%M:%S %z" 5 | ::msgcat::mcset ar_IN DATE_TIME_FORMAT "%A %d %B %Y %I:%M:%S %z %z" 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/bn_in.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset bn_IN DATE_FORMAT "%A %d %b %Y" 4 | ::msgcat::mcset bn_IN TIME_FORMAT_12 "%I:%M:%S %z" 5 | ::msgcat::mcset bn_IN DATE_TIME_FORMAT "%A %d %b %Y %I:%M:%S %z %z" 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/en_au.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset en_AU DATE_FORMAT "%e/%m/%Y" 4 | ::msgcat::mcset en_AU TIME_FORMAT "%H:%M:%S" 5 | ::msgcat::mcset en_AU TIME_FORMAT_12 "%I:%M:%S %P %z" 6 | ::msgcat::mcset en_AU DATE_TIME_FORMAT "%e/%m/%Y %H:%M:%S %z" 7 | } 8 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/en_be.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset en_BE DATE_FORMAT "%d %b %Y" 4 | ::msgcat::mcset en_BE TIME_FORMAT "%k:%M:%S" 5 | ::msgcat::mcset en_BE TIME_FORMAT_12 "%k h %M min %S s %z" 6 | ::msgcat::mcset en_BE DATE_TIME_FORMAT "%d %b %Y %k:%M:%S %z" 7 | } 8 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/en_bw.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset en_BW DATE_FORMAT "%d %B %Y" 4 | ::msgcat::mcset en_BW TIME_FORMAT_12 "%l:%M:%S %P" 5 | ::msgcat::mcset en_BW DATE_TIME_FORMAT "%d %B %Y %l:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/en_ca.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset en_CA DATE_FORMAT "%d/%m/%y" 4 | ::msgcat::mcset en_CA TIME_FORMAT "%r" 5 | ::msgcat::mcset en_CA TIME_FORMAT_12 "%I:%M:%S %p" 6 | ::msgcat::mcset en_CA DATE_TIME_FORMAT "%a %d %b %Y %r %z" 7 | } 8 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/en_gb.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset en_GB DATE_FORMAT "%d/%m/%y" 4 | ::msgcat::mcset en_GB TIME_FORMAT "%T" 5 | ::msgcat::mcset en_GB TIME_FORMAT_12 "%T" 6 | ::msgcat::mcset en_GB DATE_TIME_FORMAT "%a %d %b %Y %T %z" 7 | } 8 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/en_hk.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset en_HK AM "AM" 4 | ::msgcat::mcset en_HK PM "PM" 5 | ::msgcat::mcset en_HK DATE_FORMAT "%B %e, %Y" 6 | ::msgcat::mcset en_HK TIME_FORMAT_12 "%l:%M:%S %P" 7 | ::msgcat::mcset en_HK DATE_TIME_FORMAT "%B %e, %Y %l:%M:%S %P %z" 8 | } 9 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/en_ie.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset en_IE DATE_FORMAT "%d/%m/%y" 4 | ::msgcat::mcset en_IE TIME_FORMAT "%T" 5 | ::msgcat::mcset en_IE TIME_FORMAT_12 "%T" 6 | ::msgcat::mcset en_IE DATE_TIME_FORMAT "%a %d %b %Y %T %z" 7 | } 8 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/en_in.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset en_IN AM "AM" 4 | ::msgcat::mcset en_IN PM "PM" 5 | ::msgcat::mcset en_IN DATE_FORMAT "%d %B %Y" 6 | ::msgcat::mcset en_IN TIME_FORMAT "%H:%M:%S" 7 | ::msgcat::mcset en_IN DATE_TIME_FORMAT "%d %B %Y %H:%M:%S %z" 8 | } 9 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/en_nz.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset en_NZ DATE_FORMAT "%e/%m/%Y" 4 | ::msgcat::mcset en_NZ TIME_FORMAT "%H:%M:%S" 5 | ::msgcat::mcset en_NZ TIME_FORMAT_12 "%I:%M:%S %P %z" 6 | ::msgcat::mcset en_NZ DATE_TIME_FORMAT "%e/%m/%Y %H:%M:%S %z" 7 | } 8 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/en_ph.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset en_PH AM "AM" 4 | ::msgcat::mcset en_PH PM "PM" 5 | ::msgcat::mcset en_PH DATE_FORMAT "%B %e, %Y" 6 | ::msgcat::mcset en_PH TIME_FORMAT_12 "%l:%M:%S %P" 7 | ::msgcat::mcset en_PH DATE_TIME_FORMAT "%B %e, %Y %l:%M:%S %P %z" 8 | } 9 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/en_sg.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset en_SG DATE_FORMAT "%d %b %Y" 4 | ::msgcat::mcset en_SG TIME_FORMAT_12 "%P %I:%M:%S" 5 | ::msgcat::mcset en_SG DATE_TIME_FORMAT "%d %b %Y %P %I:%M:%S %z" 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/en_za.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset en_ZA DATE_FORMAT "%Y/%m/%d" 4 | ::msgcat::mcset en_ZA TIME_FORMAT_12 "%I:%M:%S" 5 | ::msgcat::mcset en_ZA DATE_TIME_FORMAT "%Y/%m/%d %I:%M:%S %z" 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/en_zw.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset en_ZW DATE_FORMAT "%d %B %Y" 4 | ::msgcat::mcset en_ZW TIME_FORMAT_12 "%l:%M:%S %P" 5 | ::msgcat::mcset en_ZW DATE_TIME_FORMAT "%d %B %Y %l:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/es_ar.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset es_AR DATE_FORMAT "%d/%m/%Y" 4 | ::msgcat::mcset es_AR TIME_FORMAT "%H:%M:%S" 5 | ::msgcat::mcset es_AR DATE_TIME_FORMAT "%d/%m/%Y %H:%M:%S %z" 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/es_bo.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset es_BO DATE_FORMAT "%d-%m-%Y" 4 | ::msgcat::mcset es_BO TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset es_BO DATE_TIME_FORMAT "%d-%m-%Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/es_cl.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset es_CL DATE_FORMAT "%d-%m-%Y" 4 | ::msgcat::mcset es_CL TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset es_CL DATE_TIME_FORMAT "%d-%m-%Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/es_co.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset es_CO DATE_FORMAT "%e/%m/%Y" 4 | ::msgcat::mcset es_CO TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset es_CO DATE_TIME_FORMAT "%e/%m/%Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/es_cr.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset es_CR DATE_FORMAT "%d/%m/%Y" 4 | ::msgcat::mcset es_CR TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset es_CR DATE_TIME_FORMAT "%d/%m/%Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/es_do.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset es_DO DATE_FORMAT "%m/%d/%Y" 4 | ::msgcat::mcset es_DO TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset es_DO DATE_TIME_FORMAT "%m/%d/%Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/es_ec.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset es_EC DATE_FORMAT "%d/%m/%Y" 4 | ::msgcat::mcset es_EC TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset es_EC DATE_TIME_FORMAT "%d/%m/%Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/es_gt.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset es_GT DATE_FORMAT "%e/%m/%Y" 4 | ::msgcat::mcset es_GT TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset es_GT DATE_TIME_FORMAT "%e/%m/%Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/es_hn.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset es_HN DATE_FORMAT "%m-%d-%Y" 4 | ::msgcat::mcset es_HN TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset es_HN DATE_TIME_FORMAT "%m-%d-%Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/es_mx.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset es_MX DATE_FORMAT "%e/%m/%Y" 4 | ::msgcat::mcset es_MX TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset es_MX DATE_TIME_FORMAT "%e/%m/%Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/es_ni.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset es_NI DATE_FORMAT "%m-%d-%Y" 4 | ::msgcat::mcset es_NI TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset es_NI DATE_TIME_FORMAT "%m-%d-%Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/es_pa.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset es_PA DATE_FORMAT "%m/%d/%Y" 4 | ::msgcat::mcset es_PA TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset es_PA DATE_TIME_FORMAT "%m/%d/%Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/es_pe.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset es_PE DATE_FORMAT "%d/%m/%Y" 4 | ::msgcat::mcset es_PE TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset es_PE DATE_TIME_FORMAT "%d/%m/%Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/es_pr.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset es_PR DATE_FORMAT "%m-%d-%Y" 4 | ::msgcat::mcset es_PR TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset es_PR DATE_TIME_FORMAT "%m-%d-%Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/es_py.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset es_PY DATE_FORMAT "%d/%m/%Y" 4 | ::msgcat::mcset es_PY TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset es_PY DATE_TIME_FORMAT "%d/%m/%Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/es_sv.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset es_SV DATE_FORMAT "%m-%d-%Y" 4 | ::msgcat::mcset es_SV TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset es_SV DATE_TIME_FORMAT "%m-%d-%Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/es_uy.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset es_UY DATE_FORMAT "%d/%m/%Y" 4 | ::msgcat::mcset es_UY TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset es_UY DATE_TIME_FORMAT "%d/%m/%Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/es_ve.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset es_VE DATE_FORMAT "%d/%m/%Y" 4 | ::msgcat::mcset es_VE TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset es_VE DATE_TIME_FORMAT "%d/%m/%Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/eu_es.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset eu_ES DATE_FORMAT "%a, %Yeko %bren %da" 4 | ::msgcat::mcset eu_ES TIME_FORMAT "%T" 5 | ::msgcat::mcset eu_ES TIME_FORMAT_12 "%T" 6 | ::msgcat::mcset eu_ES DATE_TIME_FORMAT "%y-%m-%d %T %z" 7 | } 8 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/fa_ir.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset fa_IR AM "\u0635\u0628\u062d" 4 | ::msgcat::mcset fa_IR PM "\u0639\u0635\u0631" 5 | ::msgcat::mcset fa_IR DATE_FORMAT "%d\u2044%m\u2044%Y" 6 | ::msgcat::mcset fa_IR TIME_FORMAT "%S:%M:%H" 7 | ::msgcat::mcset fa_IR TIME_FORMAT_12 "%S:%M:%l %P" 8 | ::msgcat::mcset fa_IR DATE_TIME_FORMAT "%d\u2044%m\u2044%Y %S:%M:%H %z" 9 | } 10 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/fo_fo.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset fo_FO DATE_FORMAT "%d/%m-%Y" 4 | ::msgcat::mcset fo_FO TIME_FORMAT "%T" 5 | ::msgcat::mcset fo_FO TIME_FORMAT_12 "%T" 6 | ::msgcat::mcset fo_FO DATE_TIME_FORMAT "%a %d %b %Y %T %z" 7 | } 8 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/fr_be.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset fr_BE DATE_FORMAT "%d/%m/%y" 4 | ::msgcat::mcset fr_BE TIME_FORMAT "%T" 5 | ::msgcat::mcset fr_BE TIME_FORMAT_12 "%T" 6 | ::msgcat::mcset fr_BE DATE_TIME_FORMAT "%a %d %b %Y %T %z" 7 | } 8 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/fr_ca.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset fr_CA DATE_FORMAT "%Y-%m-%d" 4 | ::msgcat::mcset fr_CA TIME_FORMAT "%T" 5 | ::msgcat::mcset fr_CA TIME_FORMAT_12 "%T" 6 | ::msgcat::mcset fr_CA DATE_TIME_FORMAT "%a %d %b %Y %T %z" 7 | } 8 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/fr_ch.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset fr_CH DATE_FORMAT "%d. %m. %y" 4 | ::msgcat::mcset fr_CH TIME_FORMAT "%T" 5 | ::msgcat::mcset fr_CH TIME_FORMAT_12 "%T" 6 | ::msgcat::mcset fr_CH DATE_TIME_FORMAT "%a %d %b %Y %T %z" 7 | } 8 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/ga_ie.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset ga_IE DATE_FORMAT "%d.%m.%y" 4 | ::msgcat::mcset ga_IE TIME_FORMAT "%T" 5 | ::msgcat::mcset ga_IE TIME_FORMAT_12 "%T" 6 | ::msgcat::mcset ga_IE DATE_TIME_FORMAT "%a %d %b %Y %T %z" 7 | } 8 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/gl_es.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset gl_ES DATE_FORMAT "%d %B %Y" 4 | ::msgcat::mcset gl_ES TIME_FORMAT_12 "%l:%M:%S %P" 5 | ::msgcat::mcset gl_ES DATE_TIME_FORMAT "%d %B %Y %l:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/gv_gb.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset gv_GB DATE_FORMAT "%d %B %Y" 4 | ::msgcat::mcset gv_GB TIME_FORMAT_12 "%l:%M:%S %P" 5 | ::msgcat::mcset gv_GB DATE_TIME_FORMAT "%d %B %Y %l:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/hi_in.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset hi_IN DATE_FORMAT "%d %M %Y" 4 | ::msgcat::mcset hi_IN TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset hi_IN DATE_TIME_FORMAT "%d %M %Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/id_id.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset id_ID DATE_FORMAT "%d %B %Y" 4 | ::msgcat::mcset id_ID TIME_FORMAT_12 "%l:%M:%S %P" 5 | ::msgcat::mcset id_ID DATE_TIME_FORMAT "%d %B %Y %l:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/it_ch.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset it_CH DATE_FORMAT "%e. %B %Y" 4 | ::msgcat::mcset it_CH TIME_FORMAT "%H:%M:%S" 5 | ::msgcat::mcset it_CH DATE_TIME_FORMAT "%e. %B %Y %H:%M:%S %z" 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/kl_gl.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset kl_GL DATE_FORMAT "%d %b %Y" 4 | ::msgcat::mcset kl_GL TIME_FORMAT "%T" 5 | ::msgcat::mcset kl_GL TIME_FORMAT_12 "%T" 6 | ::msgcat::mcset kl_GL DATE_TIME_FORMAT "%a %d %b %Y %T %z" 7 | } 8 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/ko_kr.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset ko_KR BCE "\uae30\uc6d0\uc804" 4 | ::msgcat::mcset ko_KR CE "\uc11c\uae30" 5 | ::msgcat::mcset ko_KR DATE_FORMAT "%Y.%m.%d" 6 | ::msgcat::mcset ko_KR TIME_FORMAT_12 "%P %l:%M:%S" 7 | ::msgcat::mcset ko_KR DATE_TIME_FORMAT "%Y.%m.%d %P %l:%M:%S %z" 8 | } 9 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/kok_in.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset kok_IN DATE_FORMAT "%d %M %Y" 4 | ::msgcat::mcset kok_IN TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset kok_IN DATE_TIME_FORMAT "%d %M %Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/kw_gb.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset kw_GB DATE_FORMAT "%d %B %Y" 4 | ::msgcat::mcset kw_GB TIME_FORMAT_12 "%l:%M:%S %P" 5 | ::msgcat::mcset kw_GB DATE_TIME_FORMAT "%d %B %Y %l:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/mr_in.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset mr_IN DATE_FORMAT "%d %M %Y" 4 | ::msgcat::mcset mr_IN TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset mr_IN DATE_TIME_FORMAT "%d %M %Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/ms_my.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset ms_MY DATE_FORMAT "%A %d %b %Y" 4 | ::msgcat::mcset ms_MY TIME_FORMAT_12 "%I:%M:%S %z" 5 | ::msgcat::mcset ms_MY DATE_TIME_FORMAT "%A %d %b %Y %I:%M:%S %z %z" 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/nl_be.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset nl_BE DATE_FORMAT "%d-%m-%y" 4 | ::msgcat::mcset nl_BE TIME_FORMAT "%T" 5 | ::msgcat::mcset nl_BE TIME_FORMAT_12 "%T" 6 | ::msgcat::mcset nl_BE DATE_TIME_FORMAT "%a %d %b %Y %T %z" 7 | } 8 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/pt_br.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset pt_BR DATE_FORMAT "%d-%m-%Y" 4 | ::msgcat::mcset pt_BR TIME_FORMAT "%T" 5 | ::msgcat::mcset pt_BR TIME_FORMAT_12 "%T" 6 | ::msgcat::mcset pt_BR DATE_TIME_FORMAT "%a %d %b %Y %T %z" 7 | } 8 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/ru_ua.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset ru_UA DATE_FORMAT "%d.%m.%Y" 4 | ::msgcat::mcset ru_UA TIME_FORMAT "%k:%M:%S" 5 | ::msgcat::mcset ru_UA DATE_TIME_FORMAT "%d.%m.%Y %k:%M:%S %z" 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/ta_in.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset ta_IN DATE_FORMAT "%d %M %Y" 4 | ::msgcat::mcset ta_IN TIME_FORMAT_12 "%I:%M:%S %P" 5 | ::msgcat::mcset ta_IN DATE_TIME_FORMAT "%d %M %Y %I:%M:%S %P %z" 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/te_in.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset te_IN AM "\u0c2a\u0c42\u0c30\u0c4d\u0c35\u0c3e\u0c39\u0c4d\u0c28" 4 | ::msgcat::mcset te_IN PM "\u0c05\u0c2a\u0c30\u0c3e\u0c39\u0c4d\u0c28" 5 | ::msgcat::mcset te_IN DATE_FORMAT "%d/%m/%Y" 6 | ::msgcat::mcset te_IN TIME_FORMAT_12 "%I:%M:%S %P" 7 | ::msgcat::mcset te_IN DATE_TIME_FORMAT "%d/%m/%Y %I:%M:%S %P %z" 8 | } 9 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/zh_cn.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset zh_CN DATE_FORMAT "%Y-%m-%e" 4 | ::msgcat::mcset zh_CN TIME_FORMAT "%k:%M:%S" 5 | ::msgcat::mcset zh_CN TIME_FORMAT_12 "%P%I\u65f6%M\u5206%S\u79d2" 6 | ::msgcat::mcset zh_CN DATE_TIME_FORMAT "%Y-%m-%e %k:%M:%S %z" 7 | } 8 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/zh_sg.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset zh_SG AM "\u4e0a\u5348" 4 | ::msgcat::mcset zh_SG PM "\u4e2d\u5348" 5 | ::msgcat::mcset zh_SG DATE_FORMAT "%d %B %Y" 6 | ::msgcat::mcset zh_SG TIME_FORMAT_12 "%P %I:%M:%S" 7 | ::msgcat::mcset zh_SG DATE_TIME_FORMAT "%d %B %Y %P %I:%M:%S %z" 8 | } 9 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/msgs/zh_tw.msg: -------------------------------------------------------------------------------- 1 | # created by tools/loadICU.tcl -- do not edit 2 | namespace eval ::tcl::clock { 3 | ::msgcat::mcset zh_TW BCE "\u6c11\u570b\u524d" 4 | ::msgcat::mcset zh_TW CE "\u6c11\u570b" 5 | ::msgcat::mcset zh_TW DATE_FORMAT "%Y/%m/%e" 6 | ::msgcat::mcset zh_TW TIME_FORMAT_12 "%P %I:%M:%S" 7 | ::msgcat::mcset zh_TW DATE_TIME_FORMAT "%Y/%m/%e %P %I:%M:%S %z" 8 | } 9 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/opt0.4/pkgIndex.tcl: -------------------------------------------------------------------------------- 1 | # Tcl package index file, version 1.1 2 | # This file is generated by the "pkg_mkIndex -direct" command 3 | # and sourced either when an application starts up or 4 | # by a "package unknown" script. It invokes the 5 | # "package ifneeded" command to set up package-related 6 | # information so that packages will be loaded automatically 7 | # in response to "package require" commands. When this 8 | # script is sourced, the variable $dir must contain the 9 | # full path name of this file's directory. 10 | 11 | if {![package vsatisfies [package provide Tcl] 8.2]} {return} 12 | package ifneeded opt 0.4.6 [list source [file join $dir optparse.tcl]] 13 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Africa/Abidjan: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Africa/Abidjan) { 4 | {-9223372036854775808 -968 0 LMT} 5 | {-1830383032 0 0 GMT} 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Africa/Addis_Ababa: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Nairobi)]} { 3 | LoadTimeZoneFile Africa/Nairobi 4 | } 5 | set TZData(:Africa/Addis_Ababa) $TZData(:Africa/Nairobi) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Africa/Asmara: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Nairobi)]} { 3 | LoadTimeZoneFile Africa/Nairobi 4 | } 5 | set TZData(:Africa/Asmara) $TZData(:Africa/Nairobi) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Africa/Asmera: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Nairobi)]} { 3 | LoadTimeZoneFile Africa/Nairobi 4 | } 5 | set TZData(:Africa/Asmera) $TZData(:Africa/Nairobi) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Africa/Bamako: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Abidjan)]} { 3 | LoadTimeZoneFile Africa/Abidjan 4 | } 5 | set TZData(:Africa/Bamako) $TZData(:Africa/Abidjan) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Africa/Bangui: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Lagos)]} { 3 | LoadTimeZoneFile Africa/Lagos 4 | } 5 | set TZData(:Africa/Bangui) $TZData(:Africa/Lagos) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Africa/Banjul: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Abidjan)]} { 3 | LoadTimeZoneFile Africa/Abidjan 4 | } 5 | set TZData(:Africa/Banjul) $TZData(:Africa/Abidjan) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Africa/Bissau: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Africa/Bissau) { 4 | {-9223372036854775808 -3740 0 LMT} 5 | {-1830380400 -3600 0 -01} 6 | {157770000 0 0 GMT} 7 | } 8 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Africa/Blantyre: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Maputo)]} { 3 | LoadTimeZoneFile Africa/Maputo 4 | } 5 | set TZData(:Africa/Blantyre) $TZData(:Africa/Maputo) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Africa/Brazzaville: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Lagos)]} { 3 | LoadTimeZoneFile Africa/Lagos 4 | } 5 | set TZData(:Africa/Brazzaville) $TZData(:Africa/Lagos) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Africa/Bujumbura: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Maputo)]} { 3 | LoadTimeZoneFile Africa/Maputo 4 | } 5 | set TZData(:Africa/Bujumbura) $TZData(:Africa/Maputo) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Africa/Conakry: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Abidjan)]} { 3 | LoadTimeZoneFile Africa/Abidjan 4 | } 5 | set TZData(:Africa/Conakry) $TZData(:Africa/Abidjan) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Africa/Dakar: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Abidjan)]} { 3 | LoadTimeZoneFile Africa/Abidjan 4 | } 5 | set TZData(:Africa/Dakar) $TZData(:Africa/Abidjan) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Africa/Dar_es_Salaam: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Nairobi)]} { 3 | LoadTimeZoneFile Africa/Nairobi 4 | } 5 | set TZData(:Africa/Dar_es_Salaam) $TZData(:Africa/Nairobi) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Africa/Djibouti: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Nairobi)]} { 3 | LoadTimeZoneFile Africa/Nairobi 4 | } 5 | set TZData(:Africa/Djibouti) $TZData(:Africa/Nairobi) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Africa/Douala: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Lagos)]} { 3 | LoadTimeZoneFile Africa/Lagos 4 | } 5 | set TZData(:Africa/Douala) $TZData(:Africa/Lagos) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Africa/Freetown: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Abidjan)]} { 3 | LoadTimeZoneFile Africa/Abidjan 4 | } 5 | set TZData(:Africa/Freetown) $TZData(:Africa/Abidjan) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Africa/Gaborone: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Maputo)]} { 3 | LoadTimeZoneFile Africa/Maputo 4 | } 5 | set TZData(:Africa/Gaborone) $TZData(:Africa/Maputo) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Africa/Harare: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Maputo)]} { 3 | LoadTimeZoneFile Africa/Maputo 4 | } 5 | set TZData(:Africa/Harare) $TZData(:Africa/Maputo) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Africa/Johannesburg: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Africa/Johannesburg) { 4 | {-9223372036854775808 6720 0 LMT} 5 | {-2458173120 5400 0 SAST} 6 | {-2109288600 7200 0 SAST} 7 | {-860976000 10800 1 SAST} 8 | {-845254800 7200 0 SAST} 9 | {-829526400 10800 1 SAST} 10 | {-813805200 7200 0 SAST} 11 | } 12 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Africa/Kampala: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Nairobi)]} { 3 | LoadTimeZoneFile Africa/Nairobi 4 | } 5 | set TZData(:Africa/Kampala) $TZData(:Africa/Nairobi) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Africa/Kigali: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Maputo)]} { 3 | LoadTimeZoneFile Africa/Maputo 4 | } 5 | set TZData(:Africa/Kigali) $TZData(:Africa/Maputo) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Africa/Kinshasa: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Lagos)]} { 3 | LoadTimeZoneFile Africa/Lagos 4 | } 5 | set TZData(:Africa/Kinshasa) $TZData(:Africa/Lagos) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Africa/Lagos: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Africa/Lagos) { 4 | {-9223372036854775808 816 0 LMT} 5 | {-1588464816 3600 0 WAT} 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Africa/Libreville: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Lagos)]} { 3 | LoadTimeZoneFile Africa/Lagos 4 | } 5 | set TZData(:Africa/Libreville) $TZData(:Africa/Lagos) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Africa/Lome: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Abidjan)]} { 3 | LoadTimeZoneFile Africa/Abidjan 4 | } 5 | set TZData(:Africa/Lome) $TZData(:Africa/Abidjan) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Africa/Luanda: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Lagos)]} { 3 | LoadTimeZoneFile Africa/Lagos 4 | } 5 | set TZData(:Africa/Luanda) $TZData(:Africa/Lagos) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Africa/Lubumbashi: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Maputo)]} { 3 | LoadTimeZoneFile Africa/Maputo 4 | } 5 | set TZData(:Africa/Lubumbashi) $TZData(:Africa/Maputo) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Africa/Lusaka: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Maputo)]} { 3 | LoadTimeZoneFile Africa/Maputo 4 | } 5 | set TZData(:Africa/Lusaka) $TZData(:Africa/Maputo) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Africa/Malabo: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Lagos)]} { 3 | LoadTimeZoneFile Africa/Lagos 4 | } 5 | set TZData(:Africa/Malabo) $TZData(:Africa/Lagos) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Africa/Maputo: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Africa/Maputo) { 4 | {-9223372036854775808 7820 0 LMT} 5 | {-2109291020 7200 0 CAT} 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Africa/Maseru: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Johannesburg)]} { 3 | LoadTimeZoneFile Africa/Johannesburg 4 | } 5 | set TZData(:Africa/Maseru) $TZData(:Africa/Johannesburg) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Africa/Mbabane: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Johannesburg)]} { 3 | LoadTimeZoneFile Africa/Johannesburg 4 | } 5 | set TZData(:Africa/Mbabane) $TZData(:Africa/Johannesburg) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Africa/Mogadishu: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Nairobi)]} { 3 | LoadTimeZoneFile Africa/Nairobi 4 | } 5 | set TZData(:Africa/Mogadishu) $TZData(:Africa/Nairobi) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Africa/Monrovia: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Africa/Monrovia) { 4 | {-9223372036854775808 -2588 0 LMT} 5 | {-2776979812 -2588 0 MMT} 6 | {-1604359012 -2670 0 MMT} 7 | {63593070 0 0 GMT} 8 | } 9 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Africa/Nairobi: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Africa/Nairobi) { 4 | {-9223372036854775808 8836 0 LMT} 5 | {-1309746436 10800 0 EAT} 6 | {-1262314800 9000 0 +0230} 7 | {-946780200 9900 0 +0245} 8 | {-315629100 10800 0 EAT} 9 | } 10 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Africa/Ndjamena: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Africa/Ndjamena) { 4 | {-9223372036854775808 3612 0 LMT} 5 | {-1830387612 3600 0 WAT} 6 | {308703600 7200 1 WAST} 7 | {321314400 3600 0 WAT} 8 | } 9 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Africa/Niamey: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Lagos)]} { 3 | LoadTimeZoneFile Africa/Lagos 4 | } 5 | set TZData(:Africa/Niamey) $TZData(:Africa/Lagos) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Africa/Nouakchott: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Abidjan)]} { 3 | LoadTimeZoneFile Africa/Abidjan 4 | } 5 | set TZData(:Africa/Nouakchott) $TZData(:Africa/Abidjan) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Africa/Ouagadougou: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Abidjan)]} { 3 | LoadTimeZoneFile Africa/Abidjan 4 | } 5 | set TZData(:Africa/Ouagadougou) $TZData(:Africa/Abidjan) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Africa/Porto-Novo: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Lagos)]} { 3 | LoadTimeZoneFile Africa/Lagos 4 | } 5 | set TZData(:Africa/Porto-Novo) $TZData(:Africa/Lagos) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Africa/Sao_Tome: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Africa/Sao_Tome) { 4 | {-9223372036854775808 1616 0 LMT} 5 | {-2713912016 -2205 0 LMT} 6 | {-1830384000 0 0 GMT} 7 | {1514768400 3600 0 WAT} 8 | } 9 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Africa/Timbuktu: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Abidjan)]} { 3 | LoadTimeZoneFile Africa/Abidjan 4 | } 5 | set TZData(:Africa/Timbuktu) $TZData(:Africa/Abidjan) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/Anguilla: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Port_of_Spain)]} { 3 | LoadTimeZoneFile America/Port_of_Spain 4 | } 5 | set TZData(:America/Anguilla) $TZData(:America/Port_of_Spain) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/Antigua: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Port_of_Spain)]} { 3 | LoadTimeZoneFile America/Port_of_Spain 4 | } 5 | set TZData(:America/Antigua) $TZData(:America/Port_of_Spain) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/Argentina/ComodRivadavia: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Argentina/Catamarca)]} { 3 | LoadTimeZoneFile America/Argentina/Catamarca 4 | } 5 | set TZData(:America/Argentina/ComodRivadavia) $TZData(:America/Argentina/Catamarca) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/Aruba: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Curacao)]} { 3 | LoadTimeZoneFile America/Curacao 4 | } 5 | set TZData(:America/Aruba) $TZData(:America/Curacao) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/Atikokan: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:America/Atikokan) { 4 | {-9223372036854775808 -21988 0 LMT} 5 | {-2366733212 -21600 0 CST} 6 | {-1632067200 -18000 1 CDT} 7 | {-1615136400 -21600 0 CST} 8 | {-923248800 -18000 1 CDT} 9 | {-880214400 -18000 0 CWT} 10 | {-769395600 -18000 1 CPT} 11 | {-765388800 -18000 0 EST} 12 | } 13 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/Atka: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Adak)]} { 3 | LoadTimeZoneFile America/Adak 4 | } 5 | set TZData(:America/Atka) $TZData(:America/Adak) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/Barbados: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:America/Barbados) { 4 | {-9223372036854775808 -14309 0 LMT} 5 | {-1451678491 -14309 0 BMT} 6 | {-1199217691 -14400 0 AST} 7 | {234943200 -10800 1 ADT} 8 | {244616400 -14400 0 AST} 9 | {261554400 -10800 1 ADT} 10 | {276066000 -14400 0 AST} 11 | {293004000 -10800 1 ADT} 12 | {307515600 -14400 0 AST} 13 | {325058400 -10800 1 ADT} 14 | {338706000 -14400 0 AST} 15 | } 16 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/Blanc-Sablon: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:America/Blanc-Sablon) { 4 | {-9223372036854775808 -13708 0 LMT} 5 | {-2713896692 -14400 0 AST} 6 | {-1632074400 -10800 1 ADT} 7 | {-1615143600 -14400 0 AST} 8 | {-880221600 -10800 1 AWT} 9 | {-769395600 -10800 1 APT} 10 | {-765399600 -14400 0 AST} 11 | {14400 -14400 0 AST} 12 | } 13 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/Bogota: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:America/Bogota) { 4 | {-9223372036854775808 -17776 0 LMT} 5 | {-2707671824 -17776 0 BMT} 6 | {-1739041424 -18000 0 -05} 7 | {704869200 -14400 1 -05} 8 | {733896000 -18000 0 -05} 9 | } 10 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/Buenos_Aires: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Argentina/Buenos_Aires)]} { 3 | LoadTimeZoneFile America/Argentina/Buenos_Aires 4 | } 5 | set TZData(:America/Buenos_Aires) $TZData(:America/Argentina/Buenos_Aires) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/Caracas: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:America/Caracas) { 4 | {-9223372036854775808 -16064 0 LMT} 5 | {-2524505536 -16060 0 CMT} 6 | {-1826739140 -16200 0 -0430} 7 | {-157750200 -14400 0 -04} 8 | {1197183600 -16200 0 -0430} 9 | {1462086000 -14400 0 -04} 10 | } 11 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/Catamarca: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Argentina/Catamarca)]} { 3 | LoadTimeZoneFile America/Argentina/Catamarca 4 | } 5 | set TZData(:America/Catamarca) $TZData(:America/Argentina/Catamarca) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/Cayenne: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:America/Cayenne) { 4 | {-9223372036854775808 -12560 0 LMT} 5 | {-1846269040 -14400 0 -04} 6 | {-71092800 -10800 0 -03} 7 | } 8 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/Cayman: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Panama)]} { 3 | LoadTimeZoneFile America/Panama 4 | } 5 | set TZData(:America/Cayman) $TZData(:America/Panama) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/Coral_Harbour: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Atikokan)]} { 3 | LoadTimeZoneFile America/Atikokan 4 | } 5 | set TZData(:America/Coral_Harbour) $TZData(:America/Atikokan) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/Cordoba: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Argentina/Cordoba)]} { 3 | LoadTimeZoneFile America/Argentina/Cordoba 4 | } 5 | set TZData(:America/Cordoba) $TZData(:America/Argentina/Cordoba) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/Costa_Rica: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:America/Costa_Rica) { 4 | {-9223372036854775808 -20173 0 LMT} 5 | {-2524501427 -20173 0 SJMT} 6 | {-1545071027 -21600 0 CST} 7 | {288770400 -18000 1 CDT} 8 | {297234000 -21600 0 CST} 9 | {320220000 -18000 1 CDT} 10 | {328683600 -21600 0 CST} 11 | {664264800 -18000 1 CDT} 12 | {678344400 -21600 0 CST} 13 | {695714400 -18000 1 CDT} 14 | {700635600 -21600 0 CST} 15 | } 16 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/Creston: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:America/Creston) { 4 | {-9223372036854775808 -27964 0 LMT} 5 | {-2713882436 -25200 0 MST} 6 | {-1680454800 -28800 0 PST} 7 | {-1627833600 -25200 0 MST} 8 | } 9 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/Curacao: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:America/Curacao) { 4 | {-9223372036854775808 -16547 0 LMT} 5 | {-1826738653 -16200 0 -0430} 6 | {-157750200 -14400 0 AST} 7 | } 8 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/Dominica: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Port_of_Spain)]} { 3 | LoadTimeZoneFile America/Port_of_Spain 4 | } 5 | set TZData(:America/Dominica) $TZData(:America/Port_of_Spain) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/El_Salvador: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:America/El_Salvador) { 4 | {-9223372036854775808 -21408 0 LMT} 5 | {-1546279392 -21600 0 CST} 6 | {547020000 -18000 1 CDT} 7 | {559717200 -21600 0 CST} 8 | {578469600 -18000 1 CDT} 9 | {591166800 -21600 0 CST} 10 | } 11 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/Ensenada: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Tijuana)]} { 3 | LoadTimeZoneFile America/Tijuana 4 | } 5 | set TZData(:America/Ensenada) $TZData(:America/Tijuana) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/Fort_Wayne: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Indiana/Indianapolis)]} { 3 | LoadTimeZoneFile America/Indiana/Indianapolis 4 | } 5 | set TZData(:America/Fort_Wayne) $TZData(:America/Indiana/Indianapolis) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/Grenada: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Port_of_Spain)]} { 3 | LoadTimeZoneFile America/Port_of_Spain 4 | } 5 | set TZData(:America/Grenada) $TZData(:America/Port_of_Spain) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/Guadeloupe: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Port_of_Spain)]} { 3 | LoadTimeZoneFile America/Port_of_Spain 4 | } 5 | set TZData(:America/Guadeloupe) $TZData(:America/Port_of_Spain) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/Guatemala: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:America/Guatemala) { 4 | {-9223372036854775808 -21724 0 LMT} 5 | {-1617040676 -21600 0 CST} 6 | {123055200 -18000 1 CDT} 7 | {130914000 -21600 0 CST} 8 | {422344800 -18000 1 CDT} 9 | {433054800 -21600 0 CST} 10 | {669708000 -18000 1 CDT} 11 | {684219600 -21600 0 CST} 12 | {1146376800 -18000 1 CDT} 13 | {1159678800 -21600 0 CST} 14 | } 15 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/Guayaquil: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:America/Guayaquil) { 4 | {-9223372036854775808 -19160 0 LMT} 5 | {-2524502440 -18840 0 QMT} 6 | {-1230749160 -18000 0 -05} 7 | {722926800 -14400 1 -05} 8 | {728884800 -18000 0 -05} 9 | } 10 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/Guyana: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:America/Guyana) { 4 | {-9223372036854775808 -13960 0 LMT} 5 | {-1730578040 -13500 0 -0345} 6 | {176010300 -10800 0 -03} 7 | {662698800 -14400 0 -04} 8 | } 9 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/Hermosillo: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:America/Hermosillo) { 4 | {-9223372036854775808 -26632 0 LMT} 5 | {-1514739600 -25200 0 MST} 6 | {-1343066400 -21600 0 CST} 7 | {-1234807200 -25200 0 MST} 8 | {-1220292000 -21600 0 CST} 9 | {-1207159200 -25200 0 MST} 10 | {-1191344400 -21600 0 CST} 11 | {-873828000 -25200 0 MST} 12 | {-661539600 -28800 0 PST} 13 | {28800 -25200 0 MST} 14 | {828867600 -21600 1 MDT} 15 | {846403200 -25200 0 MST} 16 | {860317200 -21600 1 MDT} 17 | {877852800 -25200 0 MST} 18 | {891766800 -21600 1 MDT} 19 | {909302400 -25200 0 MST} 20 | {915174000 -25200 0 MST} 21 | } 22 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/Indianapolis: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Indiana/Indianapolis)]} { 3 | LoadTimeZoneFile America/Indiana/Indianapolis 4 | } 5 | set TZData(:America/Indianapolis) $TZData(:America/Indiana/Indianapolis) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/Jujuy: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Argentina/Jujuy)]} { 3 | LoadTimeZoneFile America/Argentina/Jujuy 4 | } 5 | set TZData(:America/Jujuy) $TZData(:America/Argentina/Jujuy) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/Knox_IN: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Indiana/Knox)]} { 3 | LoadTimeZoneFile America/Indiana/Knox 4 | } 5 | set TZData(:America/Knox_IN) $TZData(:America/Indiana/Knox) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/Kralendijk: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Curacao)]} { 3 | LoadTimeZoneFile America/Curacao 4 | } 5 | set TZData(:America/Kralendijk) $TZData(:America/Curacao) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/La_Paz: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:America/La_Paz) { 4 | {-9223372036854775808 -16356 0 LMT} 5 | {-2524505244 -16356 0 CMT} 6 | {-1205954844 -12756 1 BST} 7 | {-1192307244 -14400 0 -04} 8 | } 9 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/Lima: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:America/Lima) { 4 | {-9223372036854775808 -18492 0 LMT} 5 | {-2524503108 -18516 0 LMT} 6 | {-1938538284 -14400 0 -05} 7 | {-1002052800 -18000 0 -05} 8 | {-986756400 -14400 1 -05} 9 | {-971035200 -18000 0 -05} 10 | {-955306800 -14400 1 -05} 11 | {-939585600 -18000 0 -05} 12 | {512712000 -18000 0 -05} 13 | {544248000 -18000 0 -05} 14 | {638942400 -18000 0 -05} 15 | {765172800 -18000 0 -05} 16 | } 17 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/Louisville: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Kentucky/Louisville)]} { 3 | LoadTimeZoneFile America/Kentucky/Louisville 4 | } 5 | set TZData(:America/Louisville) $TZData(:America/Kentucky/Louisville) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/Lower_Princes: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Curacao)]} { 3 | LoadTimeZoneFile America/Curacao 4 | } 5 | set TZData(:America/Lower_Princes) $TZData(:America/Curacao) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/Managua: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:America/Managua) { 4 | {-9223372036854775808 -20708 0 LMT} 5 | {-2524500892 -20712 0 MMT} 6 | {-1121105688 -21600 0 CST} 7 | {105084000 -18000 0 EST} 8 | {161758800 -21600 0 CST} 9 | {290584800 -18000 1 CDT} 10 | {299134800 -21600 0 CST} 11 | {322034400 -18000 1 CDT} 12 | {330584400 -21600 0 CST} 13 | {694260000 -18000 0 EST} 14 | {717310800 -21600 0 CST} 15 | {725868000 -18000 0 EST} 16 | {852094800 -21600 0 CST} 17 | {1113112800 -18000 1 CDT} 18 | {1128229200 -21600 0 CST} 19 | {1146384000 -18000 1 CDT} 20 | {1159682400 -21600 0 CST} 21 | } 22 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/Marigot: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Port_of_Spain)]} { 3 | LoadTimeZoneFile America/Port_of_Spain 4 | } 5 | set TZData(:America/Marigot) $TZData(:America/Port_of_Spain) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/Martinique: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:America/Martinique) { 4 | {-9223372036854775808 -14660 0 LMT} 5 | {-2524506940 -14660 0 FFMT} 6 | {-1851537340 -14400 0 AST} 7 | {323841600 -10800 1 ADT} 8 | {338958000 -14400 0 AST} 9 | } 10 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/Mendoza: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Argentina/Mendoza)]} { 3 | LoadTimeZoneFile America/Argentina/Mendoza 4 | } 5 | set TZData(:America/Mendoza) $TZData(:America/Argentina/Mendoza) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/Montreal: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Toronto)]} { 3 | LoadTimeZoneFile America/Toronto 4 | } 5 | set TZData(:America/Montreal) $TZData(:America/Toronto) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/Montserrat: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Port_of_Spain)]} { 3 | LoadTimeZoneFile America/Port_of_Spain 4 | } 5 | set TZData(:America/Montserrat) $TZData(:America/Port_of_Spain) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/Panama: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:America/Panama) { 4 | {-9223372036854775808 -19088 0 LMT} 5 | {-2524502512 -19176 0 CMT} 6 | {-1946918424 -18000 0 EST} 7 | } 8 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/Paramaribo: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:America/Paramaribo) { 4 | {-9223372036854775808 -13240 0 LMT} 5 | {-1861906760 -13252 0 PMT} 6 | {-1104524348 -13236 0 PMT} 7 | {-765317964 -12600 0 -0330} 8 | {465449400 -10800 0 -03} 9 | } 10 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/Phoenix: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:America/Phoenix) { 4 | {-9223372036854775808 -26898 0 LMT} 5 | {-2717643600 -25200 0 MST} 6 | {-1633273200 -21600 1 MDT} 7 | {-1615132800 -25200 0 MST} 8 | {-1601823600 -21600 1 MDT} 9 | {-1583683200 -25200 0 MST} 10 | {-880210800 -21600 1 MWT} 11 | {-820519140 -25200 0 MST} 12 | {-796841940 -25200 0 MST} 13 | {-94669200 -25200 0 MST} 14 | {-84380400 -21600 1 MDT} 15 | {-68659200 -25200 0 MST} 16 | {-56221200 -25200 0 MST} 17 | } 18 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/Port_of_Spain: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:America/Port_of_Spain) { 4 | {-9223372036854775808 -14764 0 LMT} 5 | {-1825098836 -14400 0 AST} 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/Porto_Acre: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Rio_Branco)]} { 3 | LoadTimeZoneFile America/Rio_Branco 4 | } 5 | set TZData(:America/Porto_Acre) $TZData(:America/Rio_Branco) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/Puerto_Rico: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:America/Puerto_Rico) { 4 | {-9223372036854775808 -15865 0 LMT} 5 | {-2233035335 -14400 0 AST} 6 | {-873057600 -10800 0 AWT} 7 | {-769395600 -10800 1 APT} 8 | {-765399600 -14400 0 AST} 9 | {-757368000 -14400 0 AST} 10 | } 11 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/Rosario: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Argentina/Cordoba)]} { 3 | LoadTimeZoneFile America/Argentina/Cordoba 4 | } 5 | set TZData(:America/Rosario) $TZData(:America/Argentina/Cordoba) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/Santa_Isabel: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Tijuana)]} { 3 | LoadTimeZoneFile America/Tijuana 4 | } 5 | set TZData(:America/Santa_Isabel) $TZData(:America/Tijuana) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/Santo_Domingo: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:America/Santo_Domingo) { 4 | {-9223372036854775808 -16776 0 LMT} 5 | {-2524504824 -16800 0 SDMT} 6 | {-1159773600 -18000 0 EST} 7 | {-100119600 -14400 1 EDT} 8 | {-89668800 -18000 0 EST} 9 | {-5770800 -16200 1 -0430} 10 | {4422600 -18000 0 EST} 11 | {25678800 -16200 1 -0430} 12 | {33193800 -18000 0 EST} 13 | {57733200 -16200 1 -0430} 14 | {64816200 -18000 0 EST} 15 | {89182800 -16200 1 -0430} 16 | {96438600 -18000 0 EST} 17 | {120632400 -16200 1 -0430} 18 | {127974600 -18000 0 EST} 19 | {152082000 -14400 0 AST} 20 | {975823200 -14400 0 AST} 21 | } 22 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/Shiprock: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Denver)]} { 3 | LoadTimeZoneFile America/Denver 4 | } 5 | set TZData(:America/Shiprock) $TZData(:America/Denver) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/St_Barthelemy: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Port_of_Spain)]} { 3 | LoadTimeZoneFile America/Port_of_Spain 4 | } 5 | set TZData(:America/St_Barthelemy) $TZData(:America/Port_of_Spain) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/St_Kitts: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Port_of_Spain)]} { 3 | LoadTimeZoneFile America/Port_of_Spain 4 | } 5 | set TZData(:America/St_Kitts) $TZData(:America/Port_of_Spain) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/St_Lucia: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Port_of_Spain)]} { 3 | LoadTimeZoneFile America/Port_of_Spain 4 | } 5 | set TZData(:America/St_Lucia) $TZData(:America/Port_of_Spain) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/St_Thomas: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Port_of_Spain)]} { 3 | LoadTimeZoneFile America/Port_of_Spain 4 | } 5 | set TZData(:America/St_Thomas) $TZData(:America/Port_of_Spain) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/St_Vincent: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Port_of_Spain)]} { 3 | LoadTimeZoneFile America/Port_of_Spain 4 | } 5 | set TZData(:America/St_Vincent) $TZData(:America/Port_of_Spain) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/Tegucigalpa: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:America/Tegucigalpa) { 4 | {-9223372036854775808 -20932 0 LMT} 5 | {-1538503868 -21600 0 CST} 6 | {547020000 -18000 1 CDT} 7 | {559717200 -21600 0 CST} 8 | {578469600 -18000 1 CDT} 9 | {591166800 -21600 0 CST} 10 | {1146981600 -18000 1 CDT} 11 | {1154926800 -21600 0 CST} 12 | } 13 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/Tortola: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Port_of_Spain)]} { 3 | LoadTimeZoneFile America/Port_of_Spain 4 | } 5 | set TZData(:America/Tortola) $TZData(:America/Port_of_Spain) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/America/Virgin: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Port_of_Spain)]} { 3 | LoadTimeZoneFile America/Port_of_Spain 4 | } 5 | set TZData(:America/Virgin) $TZData(:America/Port_of_Spain) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Antarctica/Casey: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Antarctica/Casey) { 4 | {-9223372036854775808 0 0 -00} 5 | {-31536000 28800 0 +08} 6 | {1255802400 39600 0 +11} 7 | {1267714800 28800 0 +08} 8 | {1319738400 39600 0 +11} 9 | {1329843600 28800 0 +08} 10 | {1477065600 39600 0 +11} 11 | {1520701200 28800 0 +08} 12 | } 13 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Antarctica/Davis: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Antarctica/Davis) { 4 | {-9223372036854775808 0 0 -00} 5 | {-409190400 25200 0 +07} 6 | {-163062000 0 0 -00} 7 | {-28857600 25200 0 +07} 8 | {1255806000 18000 0 +05} 9 | {1268251200 25200 0 +07} 10 | {1319742000 18000 0 +05} 11 | {1329854400 25200 0 +07} 12 | } 13 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Antarctica/DumontDUrville: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Antarctica/DumontDUrville) { 4 | {-9223372036854775808 0 0 -00} 5 | {-725846400 36000 0 +10} 6 | {-566992800 0 0 -00} 7 | {-415497600 36000 0 +10} 8 | } 9 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Antarctica/Mawson: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Antarctica/Mawson) { 4 | {-9223372036854775808 0 0 -00} 5 | {-501206400 21600 0 +06} 6 | {1255809600 18000 0 +05} 7 | } 8 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Antarctica/McMurdo: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Auckland)]} { 3 | LoadTimeZoneFile Pacific/Auckland 4 | } 5 | set TZData(:Antarctica/McMurdo) $TZData(:Pacific/Auckland) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Antarctica/Rothera: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Antarctica/Rothera) { 4 | {-9223372036854775808 0 0 -00} 5 | {218246400 -10800 0 -03} 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Antarctica/South_Pole: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Auckland)]} { 3 | LoadTimeZoneFile Pacific/Auckland 4 | } 5 | set TZData(:Antarctica/South_Pole) $TZData(:Pacific/Auckland) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Antarctica/Syowa: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Antarctica/Syowa) { 4 | {-9223372036854775808 0 0 -00} 5 | {-407808000 10800 0 +03} 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Antarctica/Vostok: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Antarctica/Vostok) { 4 | {-9223372036854775808 0 0 -00} 5 | {-380073600 21600 0 +06} 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Arctic/Longyearbyen: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Oslo)]} { 3 | LoadTimeZoneFile Europe/Oslo 4 | } 5 | set TZData(:Arctic/Longyearbyen) $TZData(:Europe/Oslo) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Asia/Aden: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Riyadh)]} { 3 | LoadTimeZoneFile Asia/Riyadh 4 | } 5 | set TZData(:Asia/Aden) $TZData(:Asia/Riyadh) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Asia/Ashkhabad: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Ashgabat)]} { 3 | LoadTimeZoneFile Asia/Ashgabat 4 | } 5 | set TZData(:Asia/Ashkhabad) $TZData(:Asia/Ashgabat) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Asia/Bahrain: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Qatar)]} { 3 | LoadTimeZoneFile Asia/Qatar 4 | } 5 | set TZData(:Asia/Bahrain) $TZData(:Asia/Qatar) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Asia/Bangkok: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Bangkok) { 4 | {-9223372036854775808 24124 0 LMT} 5 | {-2840164924 24124 0 BMT} 6 | {-1570084924 25200 0 +07} 7 | } 8 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Asia/Brunei: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Brunei) { 4 | {-9223372036854775808 27580 0 LMT} 5 | {-1383464380 27000 0 +0730} 6 | {-1167636600 28800 0 +08} 7 | } 8 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Asia/Calcutta: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Kolkata)]} { 3 | LoadTimeZoneFile Asia/Kolkata 4 | } 5 | set TZData(:Asia/Calcutta) $TZData(:Asia/Kolkata) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Asia/Chongqing: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Shanghai)]} { 3 | LoadTimeZoneFile Asia/Shanghai 4 | } 5 | set TZData(:Asia/Chongqing) $TZData(:Asia/Shanghai) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Asia/Chungking: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Shanghai)]} { 3 | LoadTimeZoneFile Asia/Shanghai 4 | } 5 | set TZData(:Asia/Chungking) $TZData(:Asia/Shanghai) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Asia/Colombo: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Colombo) { 4 | {-9223372036854775808 19164 0 LMT} 5 | {-2840159964 19172 0 MMT} 6 | {-2019705572 19800 0 +0530} 7 | {-883287000 21600 1 +06} 8 | {-862639200 23400 1 +0630} 9 | {-764051400 19800 0 +0530} 10 | {832962600 23400 0 +0630} 11 | {846266400 21600 0 +06} 12 | {1145039400 19800 0 +0530} 13 | } 14 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Asia/Dacca: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Dhaka)]} { 3 | LoadTimeZoneFile Asia/Dhaka 4 | } 5 | set TZData(:Asia/Dacca) $TZData(:Asia/Dhaka) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Asia/Dhaka: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Dhaka) { 4 | {-9223372036854775808 21700 0 LMT} 5 | {-2524543300 21200 0 HMT} 6 | {-891582800 23400 0 +0630} 7 | {-872058600 19800 0 +0530} 8 | {-862637400 23400 0 +0630} 9 | {-576138600 21600 0 +06} 10 | {1230746400 21600 0 +06} 11 | {1245430800 25200 1 +06} 12 | {1262278800 21600 0 +06} 13 | } 14 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Asia/Dili: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Dili) { 4 | {-9223372036854775808 30140 0 LMT} 5 | {-1830414140 28800 0 +08} 6 | {-879152400 32400 0 +09} 7 | {199897200 28800 0 +08} 8 | {969120000 32400 0 +09} 9 | } 10 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Asia/Dubai: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Dubai) { 4 | {-9223372036854775808 13272 0 LMT} 5 | {-1577936472 14400 0 +04} 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Asia/Harbin: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Shanghai)]} { 3 | LoadTimeZoneFile Asia/Shanghai 4 | } 5 | set TZData(:Asia/Harbin) $TZData(:Asia/Shanghai) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Asia/Ho_Chi_Minh: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Ho_Chi_Minh) { 4 | {-9223372036854775808 25600 0 LMT} 5 | {-2004073600 25590 0 PLMT} 6 | {-1851577590 25200 0 +07} 7 | {-852105600 28800 0 +08} 8 | {-782643600 32400 0 +09} 9 | {-767869200 25200 0 +07} 10 | {-718095600 28800 0 +08} 11 | {-457776000 25200 0 +07} 12 | {-315648000 28800 0 +08} 13 | {171820800 25200 0 +07} 14 | } 15 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Asia/Istanbul: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Istanbul)]} { 3 | LoadTimeZoneFile Europe/Istanbul 4 | } 5 | set TZData(:Asia/Istanbul) $TZData(:Europe/Istanbul) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Asia/Jakarta: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Jakarta) { 4 | {-9223372036854775808 25632 0 LMT} 5 | {-3231299232 25632 0 BMT} 6 | {-1451719200 26400 0 +0720} 7 | {-1172906400 27000 0 +0730} 8 | {-876641400 32400 0 +09} 9 | {-766054800 27000 0 +0730} 10 | {-683883000 28800 0 +08} 11 | {-620812800 27000 0 +0730} 12 | {-189415800 25200 0 WIB} 13 | } 14 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Asia/Jayapura: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Jayapura) { 4 | {-9223372036854775808 33768 0 LMT} 5 | {-1172913768 32400 0 +09} 6 | {-799491600 34200 0 +0930} 7 | {-189423000 32400 0 WIT} 8 | } 9 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Asia/Kabul: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Kabul) { 4 | {-9223372036854775808 16608 0 LMT} 5 | {-2524538208 14400 0 +04} 6 | {-788932800 16200 0 +0430} 7 | } 8 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Asia/Karachi: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Karachi) { 4 | {-9223372036854775808 16092 0 LMT} 5 | {-1988166492 19800 0 +0530} 6 | {-862637400 23400 1 +0630} 7 | {-764145000 19800 0 +0530} 8 | {-576135000 18000 0 +05} 9 | {38775600 18000 0 PKT} 10 | {1018119600 21600 1 PKST} 11 | {1033840800 18000 0 PKT} 12 | {1212260400 21600 1 PKST} 13 | {1225476000 18000 0 PKT} 14 | {1239735600 21600 1 PKST} 15 | {1257012000 18000 0 PKT} 16 | } 17 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Asia/Kashgar: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Urumqi)]} { 3 | LoadTimeZoneFile Asia/Urumqi 4 | } 5 | set TZData(:Asia/Kashgar) $TZData(:Asia/Urumqi) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Asia/Kathmandu: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Kathmandu) { 4 | {-9223372036854775808 20476 0 LMT} 5 | {-1577943676 19800 0 +0530} 6 | {504901800 20700 0 +0545} 7 | } 8 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Asia/Katmandu: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Kathmandu)]} { 3 | LoadTimeZoneFile Asia/Kathmandu 4 | } 5 | set TZData(:Asia/Katmandu) $TZData(:Asia/Kathmandu) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Asia/Kolkata: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Kolkata) { 4 | {-9223372036854775808 21208 0 LMT} 5 | {-3645237208 21200 0 HMT} 6 | {-3155694800 19270 0 MMT} 7 | {-2019705670 19800 0 IST} 8 | {-891581400 23400 1 +0630} 9 | {-872058600 19800 0 IST} 10 | {-862637400 23400 1 +0630} 11 | {-764145000 19800 0 IST} 12 | } 13 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Asia/Kuala_Lumpur: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Kuala_Lumpur) { 4 | {-9223372036854775808 24406 0 LMT} 5 | {-2177477206 24925 0 SMT} 6 | {-2038200925 25200 0 +07} 7 | {-1167634800 26400 1 +0720} 8 | {-1073028000 26400 0 +0720} 9 | {-894180000 27000 0 +0730} 10 | {-879665400 32400 0 +09} 11 | {-767005200 27000 0 +0730} 12 | {378664200 28800 0 +08} 13 | } 14 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Asia/Kuwait: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Riyadh)]} { 3 | LoadTimeZoneFile Asia/Riyadh 4 | } 5 | set TZData(:Asia/Kuwait) $TZData(:Asia/Riyadh) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Asia/Macao: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Macau)]} { 3 | LoadTimeZoneFile Asia/Macau 4 | } 5 | set TZData(:Asia/Macao) $TZData(:Asia/Macau) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Asia/Makassar: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Makassar) { 4 | {-9223372036854775808 28656 0 LMT} 5 | {-1577951856 28656 0 MMT} 6 | {-1172908656 28800 0 +08} 7 | {-880272000 32400 0 +09} 8 | {-766054800 28800 0 WITA} 9 | } 10 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Asia/Manila: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Manila) { 4 | {-9223372036854775808 -57360 0 LMT} 5 | {-3944621040 29040 0 LMT} 6 | {-2229321840 28800 0 PST} 7 | {-1046678400 32400 1 PDT} 8 | {-1038733200 28800 0 PST} 9 | {-873273600 32400 0 JST} 10 | {-794221200 28800 0 PST} 11 | {-496224000 32400 1 PDT} 12 | {-489315600 28800 0 PST} 13 | {259344000 32400 1 PDT} 14 | {275151600 28800 0 PST} 15 | } 16 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Asia/Muscat: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Dubai)]} { 3 | LoadTimeZoneFile Asia/Dubai 4 | } 5 | set TZData(:Asia/Muscat) $TZData(:Asia/Dubai) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Asia/Phnom_Penh: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Bangkok)]} { 3 | LoadTimeZoneFile Asia/Bangkok 4 | } 5 | set TZData(:Asia/Phnom_Penh) $TZData(:Asia/Bangkok) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Asia/Pontianak: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Pontianak) { 4 | {-9223372036854775808 26240 0 LMT} 5 | {-1946186240 26240 0 PMT} 6 | {-1172906240 27000 0 +0730} 7 | {-881220600 32400 0 +09} 8 | {-766054800 27000 0 +0730} 9 | {-683883000 28800 0 +08} 10 | {-620812800 27000 0 +0730} 11 | {-189415800 28800 0 WITA} 12 | {567964800 25200 0 WIB} 13 | } 14 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Asia/Pyongyang: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Pyongyang) { 4 | {-9223372036854775808 30180 0 LMT} 5 | {-1948782180 30600 0 KST} 6 | {-1830414600 32400 0 JST} 7 | {-768646800 32400 0 KST} 8 | {1439564400 30600 0 KST} 9 | {1525446000 32400 0 KST} 10 | } 11 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Asia/Qatar: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Qatar) { 4 | {-9223372036854775808 12368 0 LMT} 5 | {-1577935568 14400 0 +04} 6 | {76190400 10800 0 +03} 7 | } 8 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Asia/Rangoon: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Yangon)]} { 3 | LoadTimeZoneFile Asia/Yangon 4 | } 5 | set TZData(:Asia/Rangoon) $TZData(:Asia/Yangon) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Asia/Riyadh: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Riyadh) { 4 | {-9223372036854775808 11212 0 LMT} 5 | {-719636812 10800 0 +03} 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Asia/Saigon: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Ho_Chi_Minh)]} { 3 | LoadTimeZoneFile Asia/Ho_Chi_Minh 4 | } 5 | set TZData(:Asia/Saigon) $TZData(:Asia/Ho_Chi_Minh) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Asia/Singapore: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Singapore) { 4 | {-9223372036854775808 24925 0 LMT} 5 | {-2177477725 24925 0 SMT} 6 | {-2038200925 25200 0 +07} 7 | {-1167634800 26400 1 +0720} 8 | {-1073028000 26400 0 +0720} 9 | {-894180000 27000 0 +0730} 10 | {-879665400 32400 0 +09} 11 | {-767005200 27000 0 +0730} 12 | {378664200 28800 0 +08} 13 | } 14 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Asia/Tel_Aviv: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Jerusalem)]} { 3 | LoadTimeZoneFile Asia/Jerusalem 4 | } 5 | set TZData(:Asia/Tel_Aviv) $TZData(:Asia/Jerusalem) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Asia/Thimbu: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Thimphu)]} { 3 | LoadTimeZoneFile Asia/Thimphu 4 | } 5 | set TZData(:Asia/Thimbu) $TZData(:Asia/Thimphu) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Asia/Thimphu: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Thimphu) { 4 | {-9223372036854775808 21516 0 LMT} 5 | {-706341516 19800 0 +0530} 6 | {560025000 21600 0 +06} 7 | } 8 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Asia/Tokyo: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Tokyo) { 4 | {-9223372036854775808 33539 0 LMT} 5 | {-2587712400 32400 0 JST} 6 | {-683802000 36000 1 JDT} 7 | {-672310800 32400 0 JST} 8 | {-654771600 36000 1 JDT} 9 | {-640861200 32400 0 JST} 10 | {-620298000 36000 1 JDT} 11 | {-609411600 32400 0 JST} 12 | {-588848400 36000 1 JDT} 13 | {-577962000 32400 0 JST} 14 | } 15 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Asia/Ujung_Pandang: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Makassar)]} { 3 | LoadTimeZoneFile Asia/Makassar 4 | } 5 | set TZData(:Asia/Ujung_Pandang) $TZData(:Asia/Makassar) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Asia/Ulan_Bator: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Ulaanbaatar)]} { 3 | LoadTimeZoneFile Asia/Ulaanbaatar 4 | } 5 | set TZData(:Asia/Ulan_Bator) $TZData(:Asia/Ulaanbaatar) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Asia/Urumqi: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Urumqi) { 4 | {-9223372036854775808 21020 0 LMT} 5 | {-1325483420 21600 0 +06} 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Asia/Vientiane: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Bangkok)]} { 3 | LoadTimeZoneFile Asia/Bangkok 4 | } 5 | set TZData(:Asia/Vientiane) $TZData(:Asia/Bangkok) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Asia/Yangon: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Yangon) { 4 | {-9223372036854775808 23087 0 LMT} 5 | {-2840163887 23087 0 RMT} 6 | {-1577946287 23400 0 +0630} 7 | {-873268200 32400 0 +09} 8 | {-778410000 23400 0 +0630} 9 | } 10 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Atlantic/Cape_Verde: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Atlantic/Cape_Verde) { 4 | {-9223372036854775808 -5644 0 LMT} 5 | {-1830376800 -7200 0 -02} 6 | {-862610400 -3600 1 -01} 7 | {-764118000 -7200 0 -02} 8 | {186120000 -3600 0 -01} 9 | } 10 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Atlantic/Faeroe: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Atlantic/Faroe)]} { 3 | LoadTimeZoneFile Atlantic/Faroe 4 | } 5 | set TZData(:Atlantic/Faeroe) $TZData(:Atlantic/Faroe) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Atlantic/Jan_Mayen: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Oslo)]} { 3 | LoadTimeZoneFile Europe/Oslo 4 | } 5 | set TZData(:Atlantic/Jan_Mayen) $TZData(:Europe/Oslo) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Atlantic/South_Georgia: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Atlantic/South_Georgia) { 4 | {-9223372036854775808 -8768 0 LMT} 5 | {-2524512832 -7200 0 -02} 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Atlantic/St_Helena: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Abidjan)]} { 3 | LoadTimeZoneFile Africa/Abidjan 4 | } 5 | set TZData(:Atlantic/St_Helena) $TZData(:Africa/Abidjan) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Australia/ACT: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Australia/Sydney)]} { 3 | LoadTimeZoneFile Australia/Sydney 4 | } 5 | set TZData(:Australia/ACT) $TZData(:Australia/Sydney) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Australia/Canberra: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Australia/Sydney)]} { 3 | LoadTimeZoneFile Australia/Sydney 4 | } 5 | set TZData(:Australia/Canberra) $TZData(:Australia/Sydney) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Australia/Darwin: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Australia/Darwin) { 4 | {-9223372036854775808 31400 0 LMT} 5 | {-2364108200 32400 0 ACST} 6 | {-2230189200 34200 0 ACST} 7 | {-1672565340 37800 1 ACDT} 8 | {-1665390600 34200 0 ACST} 9 | {-883639800 37800 1 ACDT} 10 | {-876126600 34200 0 ACST} 11 | {-860398200 37800 1 ACDT} 12 | {-844677000 34200 0 ACST} 13 | {-828343800 37800 1 ACDT} 14 | {-813227400 34200 0 ACST} 15 | } 16 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Australia/LHI: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Australia/Lord_Howe)]} { 3 | LoadTimeZoneFile Australia/Lord_Howe 4 | } 5 | set TZData(:Australia/LHI) $TZData(:Australia/Lord_Howe) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Australia/NSW: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Australia/Sydney)]} { 3 | LoadTimeZoneFile Australia/Sydney 4 | } 5 | set TZData(:Australia/NSW) $TZData(:Australia/Sydney) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Australia/North: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Australia/Darwin)]} { 3 | LoadTimeZoneFile Australia/Darwin 4 | } 5 | set TZData(:Australia/North) $TZData(:Australia/Darwin) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Australia/Queensland: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Australia/Brisbane)]} { 3 | LoadTimeZoneFile Australia/Brisbane 4 | } 5 | set TZData(:Australia/Queensland) $TZData(:Australia/Brisbane) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Australia/South: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Australia/Adelaide)]} { 3 | LoadTimeZoneFile Australia/Adelaide 4 | } 5 | set TZData(:Australia/South) $TZData(:Australia/Adelaide) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Australia/Tasmania: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Australia/Hobart)]} { 3 | LoadTimeZoneFile Australia/Hobart 4 | } 5 | set TZData(:Australia/Tasmania) $TZData(:Australia/Hobart) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Australia/Victoria: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Australia/Melbourne)]} { 3 | LoadTimeZoneFile Australia/Melbourne 4 | } 5 | set TZData(:Australia/Victoria) $TZData(:Australia/Melbourne) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Australia/West: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Australia/Perth)]} { 3 | LoadTimeZoneFile Australia/Perth 4 | } 5 | set TZData(:Australia/West) $TZData(:Australia/Perth) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Australia/Yancowinna: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Australia/Broken_Hill)]} { 3 | LoadTimeZoneFile Australia/Broken_Hill 4 | } 5 | set TZData(:Australia/Yancowinna) $TZData(:Australia/Broken_Hill) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Brazil/Acre: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Rio_Branco)]} { 3 | LoadTimeZoneFile America/Rio_Branco 4 | } 5 | set TZData(:Brazil/Acre) $TZData(:America/Rio_Branco) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Brazil/DeNoronha: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Noronha)]} { 3 | LoadTimeZoneFile America/Noronha 4 | } 5 | set TZData(:Brazil/DeNoronha) $TZData(:America/Noronha) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Brazil/East: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Sao_Paulo)]} { 3 | LoadTimeZoneFile America/Sao_Paulo 4 | } 5 | set TZData(:Brazil/East) $TZData(:America/Sao_Paulo) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Brazil/West: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Manaus)]} { 3 | LoadTimeZoneFile America/Manaus 4 | } 5 | set TZData(:Brazil/West) $TZData(:America/Manaus) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Canada/Atlantic: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Halifax)]} { 3 | LoadTimeZoneFile America/Halifax 4 | } 5 | set TZData(:Canada/Atlantic) $TZData(:America/Halifax) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Canada/Central: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Winnipeg)]} { 3 | LoadTimeZoneFile America/Winnipeg 4 | } 5 | set TZData(:Canada/Central) $TZData(:America/Winnipeg) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Canada/East-Saskatchewan: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Regina)]} { 3 | LoadTimeZoneFile America/Regina 4 | } 5 | set TZData(:Canada/East-Saskatchewan) $TZData(:America/Regina) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Canada/Eastern: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Toronto)]} { 3 | LoadTimeZoneFile America/Toronto 4 | } 5 | set TZData(:Canada/Eastern) $TZData(:America/Toronto) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Canada/Mountain: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Edmonton)]} { 3 | LoadTimeZoneFile America/Edmonton 4 | } 5 | set TZData(:Canada/Mountain) $TZData(:America/Edmonton) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Canada/Newfoundland: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/St_Johns)]} { 3 | LoadTimeZoneFile America/St_Johns 4 | } 5 | set TZData(:Canada/Newfoundland) $TZData(:America/St_Johns) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Canada/Pacific: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Vancouver)]} { 3 | LoadTimeZoneFile America/Vancouver 4 | } 5 | set TZData(:Canada/Pacific) $TZData(:America/Vancouver) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Canada/Saskatchewan: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Regina)]} { 3 | LoadTimeZoneFile America/Regina 4 | } 5 | set TZData(:Canada/Saskatchewan) $TZData(:America/Regina) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Canada/Yukon: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Whitehorse)]} { 3 | LoadTimeZoneFile America/Whitehorse 4 | } 5 | set TZData(:Canada/Yukon) $TZData(:America/Whitehorse) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Chile/Continental: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Santiago)]} { 3 | LoadTimeZoneFile America/Santiago 4 | } 5 | set TZData(:Chile/Continental) $TZData(:America/Santiago) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Chile/EasterIsland: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Easter)]} { 3 | LoadTimeZoneFile Pacific/Easter 4 | } 5 | set TZData(:Chile/EasterIsland) $TZData(:Pacific/Easter) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Cuba: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Havana)]} { 3 | LoadTimeZoneFile America/Havana 4 | } 5 | set TZData(:Cuba) $TZData(:America/Havana) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/EST: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:EST) { 4 | {-9223372036854775808 -18000 0 EST} 5 | } 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Egypt: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Cairo)]} { 3 | LoadTimeZoneFile Africa/Cairo 4 | } 5 | set TZData(:Egypt) $TZData(:Africa/Cairo) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Eire: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Dublin)]} { 3 | LoadTimeZoneFile Europe/Dublin 4 | } 5 | set TZData(:Eire) $TZData(:Europe/Dublin) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Etc/GMT: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT) { 4 | {-9223372036854775808 0 0 GMT} 5 | } 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Etc/GMT+0: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/GMT)]} { 3 | LoadTimeZoneFile Etc/GMT 4 | } 5 | set TZData(:Etc/GMT+0) $TZData(:Etc/GMT) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Etc/GMT+1: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT+1) { 4 | {-9223372036854775808 -3600 0 -01} 5 | } 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Etc/GMT+10: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT+10) { 4 | {-9223372036854775808 -36000 0 -10} 5 | } 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Etc/GMT+11: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT+11) { 4 | {-9223372036854775808 -39600 0 -11} 5 | } 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Etc/GMT+12: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT+12) { 4 | {-9223372036854775808 -43200 0 -12} 5 | } 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Etc/GMT+2: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT+2) { 4 | {-9223372036854775808 -7200 0 -02} 5 | } 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Etc/GMT+3: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT+3) { 4 | {-9223372036854775808 -10800 0 -03} 5 | } 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Etc/GMT+4: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT+4) { 4 | {-9223372036854775808 -14400 0 -04} 5 | } 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Etc/GMT+5: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT+5) { 4 | {-9223372036854775808 -18000 0 -05} 5 | } 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Etc/GMT+6: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT+6) { 4 | {-9223372036854775808 -21600 0 -06} 5 | } 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Etc/GMT+7: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT+7) { 4 | {-9223372036854775808 -25200 0 -07} 5 | } 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Etc/GMT+8: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT+8) { 4 | {-9223372036854775808 -28800 0 -08} 5 | } 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Etc/GMT+9: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT+9) { 4 | {-9223372036854775808 -32400 0 -09} 5 | } 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Etc/GMT-0: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/GMT)]} { 3 | LoadTimeZoneFile Etc/GMT 4 | } 5 | set TZData(:Etc/GMT-0) $TZData(:Etc/GMT) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Etc/GMT-1: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT-1) { 4 | {-9223372036854775808 3600 0 +01} 5 | } 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Etc/GMT-10: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT-10) { 4 | {-9223372036854775808 36000 0 +10} 5 | } 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Etc/GMT-11: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT-11) { 4 | {-9223372036854775808 39600 0 +11} 5 | } 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Etc/GMT-12: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT-12) { 4 | {-9223372036854775808 43200 0 +12} 5 | } 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Etc/GMT-13: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT-13) { 4 | {-9223372036854775808 46800 0 +13} 5 | } 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Etc/GMT-14: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT-14) { 4 | {-9223372036854775808 50400 0 +14} 5 | } 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Etc/GMT-2: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT-2) { 4 | {-9223372036854775808 7200 0 +02} 5 | } 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Etc/GMT-3: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT-3) { 4 | {-9223372036854775808 10800 0 +03} 5 | } 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Etc/GMT-4: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT-4) { 4 | {-9223372036854775808 14400 0 +04} 5 | } 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Etc/GMT-5: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT-5) { 4 | {-9223372036854775808 18000 0 +05} 5 | } 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Etc/GMT-6: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT-6) { 4 | {-9223372036854775808 21600 0 +06} 5 | } 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Etc/GMT-7: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT-7) { 4 | {-9223372036854775808 25200 0 +07} 5 | } 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Etc/GMT-8: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT-8) { 4 | {-9223372036854775808 28800 0 +08} 5 | } 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Etc/GMT-9: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT-9) { 4 | {-9223372036854775808 32400 0 +09} 5 | } 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Etc/GMT0: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/GMT)]} { 3 | LoadTimeZoneFile Etc/GMT 4 | } 5 | set TZData(:Etc/GMT0) $TZData(:Etc/GMT) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Etc/Greenwich: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/GMT)]} { 3 | LoadTimeZoneFile Etc/GMT 4 | } 5 | set TZData(:Etc/Greenwich) $TZData(:Etc/GMT) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Etc/UCT: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/UCT) { 4 | {-9223372036854775808 0 0 UCT} 5 | } 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Etc/UTC: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/UTC) { 4 | {-9223372036854775808 0 0 UTC} 5 | } 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Etc/Universal: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/UTC)]} { 3 | LoadTimeZoneFile Etc/UTC 4 | } 5 | set TZData(:Etc/Universal) $TZData(:Etc/UTC) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Etc/Zulu: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/UTC)]} { 3 | LoadTimeZoneFile Etc/UTC 4 | } 5 | set TZData(:Etc/Zulu) $TZData(:Etc/UTC) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Europe/Belfast: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/London)]} { 3 | LoadTimeZoneFile Europe/London 4 | } 5 | set TZData(:Europe/Belfast) $TZData(:Europe/London) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Europe/Bratislava: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Prague)]} { 3 | LoadTimeZoneFile Europe/Prague 4 | } 5 | set TZData(:Europe/Bratislava) $TZData(:Europe/Prague) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Europe/Busingen: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Zurich)]} { 3 | LoadTimeZoneFile Europe/Zurich 4 | } 5 | set TZData(:Europe/Busingen) $TZData(:Europe/Zurich) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Europe/Guernsey: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/London)]} { 3 | LoadTimeZoneFile Europe/London 4 | } 5 | set TZData(:Europe/Guernsey) $TZData(:Europe/London) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Europe/Isle_of_Man: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/London)]} { 3 | LoadTimeZoneFile Europe/London 4 | } 5 | set TZData(:Europe/Isle_of_Man) $TZData(:Europe/London) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Europe/Jersey: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/London)]} { 3 | LoadTimeZoneFile Europe/London 4 | } 5 | set TZData(:Europe/Jersey) $TZData(:Europe/London) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Europe/Ljubljana: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Belgrade)]} { 3 | LoadTimeZoneFile Europe/Belgrade 4 | } 5 | set TZData(:Europe/Ljubljana) $TZData(:Europe/Belgrade) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Europe/Mariehamn: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Helsinki)]} { 3 | LoadTimeZoneFile Europe/Helsinki 4 | } 5 | set TZData(:Europe/Mariehamn) $TZData(:Europe/Helsinki) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Europe/Nicosia: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Nicosia)]} { 3 | LoadTimeZoneFile Asia/Nicosia 4 | } 5 | set TZData(:Europe/Nicosia) $TZData(:Asia/Nicosia) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Europe/Podgorica: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Belgrade)]} { 3 | LoadTimeZoneFile Europe/Belgrade 4 | } 5 | set TZData(:Europe/Podgorica) $TZData(:Europe/Belgrade) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Europe/San_Marino: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Rome)]} { 3 | LoadTimeZoneFile Europe/Rome 4 | } 5 | set TZData(:Europe/San_Marino) $TZData(:Europe/Rome) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Europe/Sarajevo: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Belgrade)]} { 3 | LoadTimeZoneFile Europe/Belgrade 4 | } 5 | set TZData(:Europe/Sarajevo) $TZData(:Europe/Belgrade) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Europe/Skopje: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Belgrade)]} { 3 | LoadTimeZoneFile Europe/Belgrade 4 | } 5 | set TZData(:Europe/Skopje) $TZData(:Europe/Belgrade) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Europe/Tiraspol: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Chisinau)]} { 3 | LoadTimeZoneFile Europe/Chisinau 4 | } 5 | set TZData(:Europe/Tiraspol) $TZData(:Europe/Chisinau) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Europe/Vaduz: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Zurich)]} { 3 | LoadTimeZoneFile Europe/Zurich 4 | } 5 | set TZData(:Europe/Vaduz) $TZData(:Europe/Zurich) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Europe/Vatican: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Rome)]} { 3 | LoadTimeZoneFile Europe/Rome 4 | } 5 | set TZData(:Europe/Vatican) $TZData(:Europe/Rome) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Europe/Zagreb: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Belgrade)]} { 3 | LoadTimeZoneFile Europe/Belgrade 4 | } 5 | set TZData(:Europe/Zagreb) $TZData(:Europe/Belgrade) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/GB: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/London)]} { 3 | LoadTimeZoneFile Europe/London 4 | } 5 | set TZData(:GB) $TZData(:Europe/London) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/GB-Eire: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/London)]} { 3 | LoadTimeZoneFile Europe/London 4 | } 5 | set TZData(:GB-Eire) $TZData(:Europe/London) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/GMT: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/GMT)]} { 3 | LoadTimeZoneFile Etc/GMT 4 | } 5 | set TZData(:GMT) $TZData(:Etc/GMT) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/GMT+0: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/GMT)]} { 3 | LoadTimeZoneFile Etc/GMT 4 | } 5 | set TZData(:GMT+0) $TZData(:Etc/GMT) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/GMT-0: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/GMT)]} { 3 | LoadTimeZoneFile Etc/GMT 4 | } 5 | set TZData(:GMT-0) $TZData(:Etc/GMT) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/GMT0: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/GMT)]} { 3 | LoadTimeZoneFile Etc/GMT 4 | } 5 | set TZData(:GMT0) $TZData(:Etc/GMT) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Greenwich: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/GMT)]} { 3 | LoadTimeZoneFile Etc/GMT 4 | } 5 | set TZData(:Greenwich) $TZData(:Etc/GMT) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/HST: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:HST) { 4 | {-9223372036854775808 -36000 0 HST} 5 | } 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Hongkong: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Hong_Kong)]} { 3 | LoadTimeZoneFile Asia/Hong_Kong 4 | } 5 | set TZData(:Hongkong) $TZData(:Asia/Hong_Kong) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Iceland: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Atlantic/Reykjavik)]} { 3 | LoadTimeZoneFile Atlantic/Reykjavik 4 | } 5 | set TZData(:Iceland) $TZData(:Atlantic/Reykjavik) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Indian/Antananarivo: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Nairobi)]} { 3 | LoadTimeZoneFile Africa/Nairobi 4 | } 5 | set TZData(:Indian/Antananarivo) $TZData(:Africa/Nairobi) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Indian/Chagos: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Indian/Chagos) { 4 | {-9223372036854775808 17380 0 LMT} 5 | {-1988167780 18000 0 +05} 6 | {820436400 21600 0 +06} 7 | } 8 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Indian/Christmas: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Indian/Christmas) { 4 | {-9223372036854775808 25372 0 LMT} 5 | {-2364102172 25200 0 +07} 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Indian/Cocos: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Indian/Cocos) { 4 | {-9223372036854775808 23260 0 LMT} 5 | {-2209012060 23400 0 +0630} 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Indian/Comoro: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Nairobi)]} { 3 | LoadTimeZoneFile Africa/Nairobi 4 | } 5 | set TZData(:Indian/Comoro) $TZData(:Africa/Nairobi) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Indian/Kerguelen: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Indian/Kerguelen) { 4 | {-9223372036854775808 0 0 -00} 5 | {-631152000 18000 0 +05} 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Indian/Mahe: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Indian/Mahe) { 4 | {-9223372036854775808 13308 0 LMT} 5 | {-2006653308 14400 0 +04} 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Indian/Maldives: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Indian/Maldives) { 4 | {-9223372036854775808 17640 0 LMT} 5 | {-2840158440 17640 0 MMT} 6 | {-315636840 18000 0 +05} 7 | } 8 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Indian/Mauritius: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Indian/Mauritius) { 4 | {-9223372036854775808 13800 0 LMT} 5 | {-1988164200 14400 0 +04} 6 | {403041600 18000 1 +04} 7 | {417034800 14400 0 +04} 8 | {1224972000 18000 1 +04} 9 | {1238274000 14400 0 +04} 10 | } 11 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Indian/Mayotte: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Nairobi)]} { 3 | LoadTimeZoneFile Africa/Nairobi 4 | } 5 | set TZData(:Indian/Mayotte) $TZData(:Africa/Nairobi) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Indian/Reunion: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Indian/Reunion) { 4 | {-9223372036854775808 13312 0 LMT} 5 | {-1848886912 14400 0 +04} 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Iran: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Tehran)]} { 3 | LoadTimeZoneFile Asia/Tehran 4 | } 5 | set TZData(:Iran) $TZData(:Asia/Tehran) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Israel: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Jerusalem)]} { 3 | LoadTimeZoneFile Asia/Jerusalem 4 | } 5 | set TZData(:Israel) $TZData(:Asia/Jerusalem) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Jamaica: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Jamaica)]} { 3 | LoadTimeZoneFile America/Jamaica 4 | } 5 | set TZData(:Jamaica) $TZData(:America/Jamaica) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Japan: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Tokyo)]} { 3 | LoadTimeZoneFile Asia/Tokyo 4 | } 5 | set TZData(:Japan) $TZData(:Asia/Tokyo) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Kwajalein: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Kwajalein)]} { 3 | LoadTimeZoneFile Pacific/Kwajalein 4 | } 5 | set TZData(:Kwajalein) $TZData(:Pacific/Kwajalein) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Libya: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Tripoli)]} { 3 | LoadTimeZoneFile Africa/Tripoli 4 | } 5 | set TZData(:Libya) $TZData(:Africa/Tripoli) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/MST: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:MST) { 4 | {-9223372036854775808 -25200 0 MST} 5 | } 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Mexico/BajaNorte: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Tijuana)]} { 3 | LoadTimeZoneFile America/Tijuana 4 | } 5 | set TZData(:Mexico/BajaNorte) $TZData(:America/Tijuana) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Mexico/BajaSur: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Mazatlan)]} { 3 | LoadTimeZoneFile America/Mazatlan 4 | } 5 | set TZData(:Mexico/BajaSur) $TZData(:America/Mazatlan) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Mexico/General: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Mexico_City)]} { 3 | LoadTimeZoneFile America/Mexico_City 4 | } 5 | set TZData(:Mexico/General) $TZData(:America/Mexico_City) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/NZ: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Auckland)]} { 3 | LoadTimeZoneFile Pacific/Auckland 4 | } 5 | set TZData(:NZ) $TZData(:Pacific/Auckland) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/NZ-CHAT: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Chatham)]} { 3 | LoadTimeZoneFile Pacific/Chatham 4 | } 5 | set TZData(:NZ-CHAT) $TZData(:Pacific/Chatham) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Navajo: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Denver)]} { 3 | LoadTimeZoneFile America/Denver 4 | } 5 | set TZData(:Navajo) $TZData(:America/Denver) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/PRC: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Shanghai)]} { 3 | LoadTimeZoneFile Asia/Shanghai 4 | } 5 | set TZData(:PRC) $TZData(:Asia/Shanghai) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Pacific/Bougainville: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Bougainville) { 4 | {-9223372036854775808 37336 0 LMT} 5 | {-2840178136 35312 0 PMMT} 6 | {-2366790512 36000 0 +10} 7 | {-868010400 32400 0 +09} 8 | {-768906000 36000 0 +10} 9 | {1419696000 39600 0 +11} 10 | } 11 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Pacific/Chuuk: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Chuuk) { 4 | {-9223372036854775808 36428 0 LMT} 5 | {-2177489228 36000 0 +10} 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Pacific/Enderbury: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Enderbury) { 4 | {-9223372036854775808 -41060 0 LMT} 5 | {-2177411740 -43200 0 -12} 6 | {307627200 -39600 0 -11} 7 | {788871600 46800 0 +13} 8 | } 9 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Pacific/Fakaofo: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Fakaofo) { 4 | {-9223372036854775808 -41096 0 LMT} 5 | {-2177411704 -39600 0 -11} 6 | {1325242800 46800 0 +13} 7 | } 8 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Pacific/Funafuti: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Funafuti) { 4 | {-9223372036854775808 43012 0 LMT} 5 | {-2177495812 43200 0 +12} 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Pacific/Galapagos: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Galapagos) { 4 | {-9223372036854775808 -21504 0 LMT} 5 | {-1230746496 -18000 0 -05} 6 | {504939600 -21600 0 -06} 7 | {722930400 -18000 1 -06} 8 | {728888400 -21600 0 -06} 9 | } 10 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Pacific/Gambier: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Gambier) { 4 | {-9223372036854775808 -32388 0 LMT} 5 | {-1806678012 -32400 0 -09} 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Pacific/Guadalcanal: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Guadalcanal) { 4 | {-9223372036854775808 38388 0 LMT} 5 | {-1806748788 39600 0 +11} 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Pacific/Guam: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Guam) { 4 | {-9223372036854775808 -51660 0 LMT} 5 | {-3944626740 34740 0 LMT} 6 | {-2177487540 36000 0 GST} 7 | {977493600 36000 0 ChST} 8 | } 9 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Pacific/Honolulu: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Honolulu) { 4 | {-9223372036854775808 -37886 0 LMT} 5 | {-2334101314 -37800 0 HST} 6 | {-1157283000 -34200 1 HDT} 7 | {-1155436200 -34200 0 HST} 8 | {-880201800 -34200 1 HWT} 9 | {-769395600 -34200 1 HPT} 10 | {-765376200 -37800 0 HST} 11 | {-712150200 -36000 0 HST} 12 | } 13 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Pacific/Johnston: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Honolulu)]} { 3 | LoadTimeZoneFile Pacific/Honolulu 4 | } 5 | set TZData(:Pacific/Johnston) $TZData(:Pacific/Honolulu) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Pacific/Kiritimati: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Kiritimati) { 4 | {-9223372036854775808 -37760 0 LMT} 5 | {-2177415040 -38400 0 -1040} 6 | {307622400 -36000 0 -10} 7 | {788868000 50400 0 +14} 8 | } 9 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Pacific/Kosrae: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Kosrae) { 4 | {-9223372036854775808 39116 0 LMT} 5 | {-2177491916 39600 0 +11} 6 | {-7988400 43200 0 +12} 7 | {915105600 39600 0 +11} 8 | } 9 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Pacific/Kwajalein: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Kwajalein) { 4 | {-9223372036854775808 40160 0 LMT} 5 | {-2177492960 39600 0 +11} 6 | {-7988400 -43200 0 -12} 7 | {745848000 43200 0 +12} 8 | } 9 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Pacific/Majuro: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Majuro) { 4 | {-9223372036854775808 41088 0 LMT} 5 | {-2177493888 39600 0 +11} 6 | {-7988400 43200 0 +12} 7 | } 8 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Pacific/Marquesas: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Marquesas) { 4 | {-9223372036854775808 -33480 0 LMT} 5 | {-1806676920 -34200 0 -0930} 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Pacific/Midway: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Pago_Pago)]} { 3 | LoadTimeZoneFile Pacific/Pago_Pago 4 | } 5 | set TZData(:Pacific/Midway) $TZData(:Pacific/Pago_Pago) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Pacific/Nauru: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Nauru) { 4 | {-9223372036854775808 40060 0 LMT} 5 | {-1545131260 41400 0 +1130} 6 | {-877347000 32400 0 +09} 7 | {-800960400 41400 0 +1130} 8 | {294323400 43200 0 +12} 9 | } 10 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Pacific/Niue: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Niue) { 4 | {-9223372036854775808 -40780 0 LMT} 5 | {-2177412020 -40800 0 -1120} 6 | {-599575200 -41400 0 -1130} 7 | {276089400 -39600 0 -11} 8 | } 9 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Pacific/Norfolk: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Norfolk) { 4 | {-9223372036854775808 40312 0 LMT} 5 | {-2177493112 40320 0 +1112} 6 | {-599656320 41400 0 +1130} 7 | {152029800 45000 1 +1230} 8 | {162912600 41400 0 +1130} 9 | {1443882600 39600 0 +11} 10 | } 11 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Pacific/Noumea: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Noumea) { 4 | {-9223372036854775808 39948 0 LMT} 5 | {-1829387148 39600 0 +11} 6 | {250002000 43200 1 +11} 7 | {257342400 39600 0 +11} 8 | {281451600 43200 1 +11} 9 | {288878400 39600 0 +11} 10 | {849366000 43200 1 +11} 11 | {857228400 39600 0 +11} 12 | } 13 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Pacific/Pago_Pago: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Pago_Pago) { 4 | {-9223372036854775808 45432 0 LMT} 5 | {-2445424632 -40968 0 LMT} 6 | {-1861879032 -39600 0 SST} 7 | } 8 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Pacific/Palau: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Palau) { 4 | {-9223372036854775808 32276 0 LMT} 5 | {-2177485076 32400 0 +09} 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Pacific/Pitcairn: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Pitcairn) { 4 | {-9223372036854775808 -31220 0 LMT} 5 | {-2177421580 -30600 0 -0830} 6 | {893665800 -28800 0 -08} 7 | } 8 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Pacific/Pohnpei: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Pohnpei) { 4 | {-9223372036854775808 37972 0 LMT} 5 | {-2177490772 39600 0 +11} 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Pacific/Ponape: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Pohnpei)]} { 3 | LoadTimeZoneFile Pacific/Pohnpei 4 | } 5 | set TZData(:Pacific/Ponape) $TZData(:Pacific/Pohnpei) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Pacific/Port_Moresby: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Port_Moresby) { 4 | {-9223372036854775808 35320 0 LMT} 5 | {-2840176120 35312 0 PMMT} 6 | {-2366790512 36000 0 +10} 7 | } 8 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Pacific/Saipan: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Guam)]} { 3 | LoadTimeZoneFile Pacific/Guam 4 | } 5 | set TZData(:Pacific/Saipan) $TZData(:Pacific/Guam) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Pacific/Samoa: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Pago_Pago)]} { 3 | LoadTimeZoneFile Pacific/Pago_Pago 4 | } 5 | set TZData(:Pacific/Samoa) $TZData(:Pacific/Pago_Pago) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Pacific/Tahiti: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Tahiti) { 4 | {-9223372036854775808 -35896 0 LMT} 5 | {-1806674504 -36000 0 -10} 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Pacific/Tarawa: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Tarawa) { 4 | {-9223372036854775808 41524 0 LMT} 5 | {-2177494324 43200 0 +12} 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Pacific/Tongatapu: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Tongatapu) { 4 | {-9223372036854775808 44360 0 LMT} 5 | {-2177497160 44400 0 +1220} 6 | {-915193200 46800 0 +13} 7 | {915102000 46800 0 +13} 8 | {939214800 50400 1 +13} 9 | {953384400 46800 0 +13} 10 | {973342800 50400 1 +13} 11 | {980596800 46800 0 +13} 12 | {1004792400 50400 1 +13} 13 | {1012046400 46800 0 +13} 14 | {1478350800 50400 1 +13} 15 | {1484398800 46800 0 +13} 16 | } 17 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Pacific/Truk: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Chuuk)]} { 3 | LoadTimeZoneFile Pacific/Chuuk 4 | } 5 | set TZData(:Pacific/Truk) $TZData(:Pacific/Chuuk) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Pacific/Wake: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Wake) { 4 | {-9223372036854775808 39988 0 LMT} 5 | {-2177492788 43200 0 +12} 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Pacific/Wallis: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Wallis) { 4 | {-9223372036854775808 44120 0 LMT} 5 | {-2177496920 43200 0 +12} 6 | } 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Pacific/Yap: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Chuuk)]} { 3 | LoadTimeZoneFile Pacific/Chuuk 4 | } 5 | set TZData(:Pacific/Yap) $TZData(:Pacific/Chuuk) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Poland: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Warsaw)]} { 3 | LoadTimeZoneFile Europe/Warsaw 4 | } 5 | set TZData(:Poland) $TZData(:Europe/Warsaw) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Portugal: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Lisbon)]} { 3 | LoadTimeZoneFile Europe/Lisbon 4 | } 5 | set TZData(:Portugal) $TZData(:Europe/Lisbon) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/ROC: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Taipei)]} { 3 | LoadTimeZoneFile Asia/Taipei 4 | } 5 | set TZData(:ROC) $TZData(:Asia/Taipei) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/ROK: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Seoul)]} { 3 | LoadTimeZoneFile Asia/Seoul 4 | } 5 | set TZData(:ROK) $TZData(:Asia/Seoul) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Singapore: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Singapore)]} { 3 | LoadTimeZoneFile Asia/Singapore 4 | } 5 | set TZData(:Singapore) $TZData(:Asia/Singapore) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/SystemV/AST4: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Puerto_Rico)]} { 3 | LoadTimeZoneFile America/Puerto_Rico 4 | } 5 | set TZData(:SystemV/AST4) $TZData(:America/Puerto_Rico) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/SystemV/AST4ADT: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Halifax)]} { 3 | LoadTimeZoneFile America/Halifax 4 | } 5 | set TZData(:SystemV/AST4ADT) $TZData(:America/Halifax) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/SystemV/CST6: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Regina)]} { 3 | LoadTimeZoneFile America/Regina 4 | } 5 | set TZData(:SystemV/CST6) $TZData(:America/Regina) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/SystemV/CST6CDT: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Chicago)]} { 3 | LoadTimeZoneFile America/Chicago 4 | } 5 | set TZData(:SystemV/CST6CDT) $TZData(:America/Chicago) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/SystemV/EST5: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Indianapolis)]} { 3 | LoadTimeZoneFile America/Indianapolis 4 | } 5 | set TZData(:SystemV/EST5) $TZData(:America/Indianapolis) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/SystemV/EST5EDT: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/New_York)]} { 3 | LoadTimeZoneFile America/New_York 4 | } 5 | set TZData(:SystemV/EST5EDT) $TZData(:America/New_York) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/SystemV/HST10: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Honolulu)]} { 3 | LoadTimeZoneFile Pacific/Honolulu 4 | } 5 | set TZData(:SystemV/HST10) $TZData(:Pacific/Honolulu) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/SystemV/MST7: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Phoenix)]} { 3 | LoadTimeZoneFile America/Phoenix 4 | } 5 | set TZData(:SystemV/MST7) $TZData(:America/Phoenix) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/SystemV/MST7MDT: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Denver)]} { 3 | LoadTimeZoneFile America/Denver 4 | } 5 | set TZData(:SystemV/MST7MDT) $TZData(:America/Denver) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/SystemV/PST8: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Pitcairn)]} { 3 | LoadTimeZoneFile Pacific/Pitcairn 4 | } 5 | set TZData(:SystemV/PST8) $TZData(:Pacific/Pitcairn) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/SystemV/PST8PDT: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Los_Angeles)]} { 3 | LoadTimeZoneFile America/Los_Angeles 4 | } 5 | set TZData(:SystemV/PST8PDT) $TZData(:America/Los_Angeles) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/SystemV/YST9: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Gambier)]} { 3 | LoadTimeZoneFile Pacific/Gambier 4 | } 5 | set TZData(:SystemV/YST9) $TZData(:Pacific/Gambier) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/SystemV/YST9YDT: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Anchorage)]} { 3 | LoadTimeZoneFile America/Anchorage 4 | } 5 | set TZData(:SystemV/YST9YDT) $TZData(:America/Anchorage) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Turkey: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Istanbul)]} { 3 | LoadTimeZoneFile Europe/Istanbul 4 | } 5 | set TZData(:Turkey) $TZData(:Europe/Istanbul) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/UCT: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/UCT)]} { 3 | LoadTimeZoneFile Etc/UCT 4 | } 5 | set TZData(:UCT) $TZData(:Etc/UCT) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/US/Alaska: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Anchorage)]} { 3 | LoadTimeZoneFile America/Anchorage 4 | } 5 | set TZData(:US/Alaska) $TZData(:America/Anchorage) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/US/Aleutian: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Adak)]} { 3 | LoadTimeZoneFile America/Adak 4 | } 5 | set TZData(:US/Aleutian) $TZData(:America/Adak) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/US/Arizona: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Phoenix)]} { 3 | LoadTimeZoneFile America/Phoenix 4 | } 5 | set TZData(:US/Arizona) $TZData(:America/Phoenix) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/US/Central: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Chicago)]} { 3 | LoadTimeZoneFile America/Chicago 4 | } 5 | set TZData(:US/Central) $TZData(:America/Chicago) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/US/East-Indiana: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Indiana/Indianapolis)]} { 3 | LoadTimeZoneFile America/Indiana/Indianapolis 4 | } 5 | set TZData(:US/East-Indiana) $TZData(:America/Indiana/Indianapolis) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/US/Eastern: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/New_York)]} { 3 | LoadTimeZoneFile America/New_York 4 | } 5 | set TZData(:US/Eastern) $TZData(:America/New_York) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/US/Hawaii: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Honolulu)]} { 3 | LoadTimeZoneFile Pacific/Honolulu 4 | } 5 | set TZData(:US/Hawaii) $TZData(:Pacific/Honolulu) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/US/Indiana-Starke: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Indiana/Knox)]} { 3 | LoadTimeZoneFile America/Indiana/Knox 4 | } 5 | set TZData(:US/Indiana-Starke) $TZData(:America/Indiana/Knox) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/US/Michigan: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Detroit)]} { 3 | LoadTimeZoneFile America/Detroit 4 | } 5 | set TZData(:US/Michigan) $TZData(:America/Detroit) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/US/Mountain: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Denver)]} { 3 | LoadTimeZoneFile America/Denver 4 | } 5 | set TZData(:US/Mountain) $TZData(:America/Denver) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/US/Pacific: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Los_Angeles)]} { 3 | LoadTimeZoneFile America/Los_Angeles 4 | } 5 | set TZData(:US/Pacific) $TZData(:America/Los_Angeles) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/US/Pacific-New: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Los_Angeles)]} { 3 | LoadTimeZoneFile America/Los_Angeles 4 | } 5 | set TZData(:US/Pacific-New) $TZData(:America/Los_Angeles) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/US/Samoa: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Pago_Pago)]} { 3 | LoadTimeZoneFile Pacific/Pago_Pago 4 | } 5 | set TZData(:US/Samoa) $TZData(:Pacific/Pago_Pago) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/UTC: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/UTC)]} { 3 | LoadTimeZoneFile Etc/UTC 4 | } 5 | set TZData(:UTC) $TZData(:Etc/UTC) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Universal: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/UTC)]} { 3 | LoadTimeZoneFile Etc/UTC 4 | } 5 | set TZData(:Universal) $TZData(:Etc/UTC) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/W-SU: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Moscow)]} { 3 | LoadTimeZoneFile Europe/Moscow 4 | } 5 | set TZData(:W-SU) $TZData(:Europe/Moscow) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl/tzdata/Zulu: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/UTC)]} { 3 | LoadTimeZoneFile Etc/UTC 4 | } 5 | set TZData(:Zulu) $TZData(:Etc/UTC) 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl86t.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USST-RADSAT-SK/software-and-command/c11b7855b9f63cca8a73c2bcf828907ca089ef7b/radsat-sk/operation/message/protobuf/nanopb/generator-bin/tcl86t.dll -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tk/images/README: -------------------------------------------------------------------------------- 1 | README - images directory 2 | 3 | This directory includes images for the Tcl Logo and the Tcl Powered 4 | Logo. Please feel free to use the Tcl Powered Logo on any of your 5 | products that employ the use of Tcl or Tk. The Tcl logo may also be 6 | used to promote Tcl in your product documentation, web site or other 7 | places you so desire. 8 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tk/images/logo100.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USST-RADSAT-SK/software-and-command/c11b7855b9f63cca8a73c2bcf828907ca089ef7b/radsat-sk/operation/message/protobuf/nanopb/generator-bin/tk/images/logo100.gif -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tk/images/logo64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USST-RADSAT-SK/software-and-command/c11b7855b9f63cca8a73c2bcf828907ca089ef7b/radsat-sk/operation/message/protobuf/nanopb/generator-bin/tk/images/logo64.gif -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tk/images/logoLarge.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USST-RADSAT-SK/software-and-command/c11b7855b9f63cca8a73c2bcf828907ca089ef7b/radsat-sk/operation/message/protobuf/nanopb/generator-bin/tk/images/logoLarge.gif -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tk/images/logoMed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USST-RADSAT-SK/software-and-command/c11b7855b9f63cca8a73c2bcf828907ca089ef7b/radsat-sk/operation/message/protobuf/nanopb/generator-bin/tk/images/logoMed.gif -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tk/images/pwrdLogo100.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USST-RADSAT-SK/software-and-command/c11b7855b9f63cca8a73c2bcf828907ca089ef7b/radsat-sk/operation/message/protobuf/nanopb/generator-bin/tk/images/pwrdLogo100.gif -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tk/images/pwrdLogo150.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USST-RADSAT-SK/software-and-command/c11b7855b9f63cca8a73c2bcf828907ca089ef7b/radsat-sk/operation/message/protobuf/nanopb/generator-bin/tk/images/pwrdLogo150.gif -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tk/images/pwrdLogo175.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USST-RADSAT-SK/software-and-command/c11b7855b9f63cca8a73c2bcf828907ca089ef7b/radsat-sk/operation/message/protobuf/nanopb/generator-bin/tk/images/pwrdLogo175.gif -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tk/images/pwrdLogo200.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USST-RADSAT-SK/software-and-command/c11b7855b9f63cca8a73c2bcf828907ca089ef7b/radsat-sk/operation/message/protobuf/nanopb/generator-bin/tk/images/pwrdLogo200.gif -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tk/images/pwrdLogo75.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USST-RADSAT-SK/software-and-command/c11b7855b9f63cca8a73c2bcf828907ca089ef7b/radsat-sk/operation/message/protobuf/nanopb/generator-bin/tk/images/pwrdLogo75.gif -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tk/images/tai-ku.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USST-RADSAT-SK/software-and-command/c11b7855b9f63cca8a73c2bcf828907ca089ef7b/radsat-sk/operation/message/protobuf/nanopb/generator-bin/tk/images/tai-ku.gif -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tk/msgs/en_gb.msg: -------------------------------------------------------------------------------- 1 | namespace eval ::tk { 2 | ::msgcat::mcset en_gb Color Colour 3 | } 4 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tk/pkgIndex.tcl: -------------------------------------------------------------------------------- 1 | if {[catch {package present Tcl 8.6.0}]} { return } 2 | if {($::tcl_platform(platform) eq "unix") && ([info exists ::env(DISPLAY)] 3 | || ([info exists ::argv] && ("-display" in $::argv)))} { 4 | package ifneeded Tk 8.6.9 [list load [file join $dir .. .. bin libtk8.6.dll] Tk] 5 | } else { 6 | package ifneeded Tk 8.6.9 [list load [file join $dir .. .. bin tk86t.dll] Tk] 7 | } 8 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/tk86t.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USST-RADSAT-SK/software-and-command/c11b7855b9f63cca8a73c2bcf828907ca089ef7b/radsat-sk/operation/message/protobuf/nanopb/generator-bin/tk86t.dll -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator-bin/unicodedata.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USST-RADSAT-SK/software-and-command/c11b7855b9f63cca8a73c2bcf828907ca089ef7b/radsat-sk/operation/message/protobuf/nanopb/generator-bin/unicodedata.pyd -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator/nanopb_generator.py2: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python2 2 | # This file is a wrapper around nanopb_generator.py in case you want to run 3 | # it with Python 2 instead of default Python 3. This only exists for backwards 4 | # compatibility, do not use for new projects. 5 | 6 | from nanopb_generator import * 7 | 8 | if __name__ == '__main__': 9 | # Check if we are running as a plugin under protoc 10 | if 'protoc-gen-' in sys.argv[0] or '--protoc-plugin' in sys.argv: 11 | main_plugin() 12 | else: 13 | main_cli() 14 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator/proto/Makefile: -------------------------------------------------------------------------------- 1 | PROTOC?=protoc 2 | 3 | all: nanopb_pb2.py 4 | 5 | %_pb2.py: %.proto 6 | $(PROTOC) --python_out=. $< 7 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator/protoc-gen-nanopb: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # This file is used to invoke nanopb_generator.py as a plugin 4 | # to protoc on Linux and other *nix-style systems. 5 | # Use it like this: 6 | # protoc --plugin=protoc-gen-nanopb=..../protoc-gen-nanopb --nanopb_out=dir foo.proto 7 | # 8 | # Note that if you use the binary package of nanopb, the protoc 9 | # path is already set up properly and there is no need to give 10 | # --plugin= on the command line. 11 | 12 | MYPATH=$(dirname "$0") 13 | exec "$MYPATH/nanopb_generator.py" --protoc-plugin 14 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator/protoc-gen-nanopb-py2: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # This file is used to invoke nanopb_generator.py2 as a plugin 4 | # to protoc on Linux and other *nix-style systems. 5 | # 6 | # The difference from protoc-gen-nanopb is that this executes with Python 2. 7 | # 8 | # Use it like this: 9 | # protoc --plugin=protoc-gen-nanopb=..../protoc-gen-nanopb-py2 --nanopb_out=dir foo.proto 10 | # 11 | # Note that if you use the binary package of nanopb, the protoc 12 | # path is already set up properly and there is no need to give 13 | # --plugin= on the command line. 14 | 15 | MYPATH=$(dirname "$0") 16 | exec "$MYPATH/nanopb_generator.py2" --protoc-plugin 17 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator/protoc-gen-nanopb.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | :: This file is used to invoke nanopb_generator.py as a plugin 3 | :: to protoc on Windows. 4 | :: Use it like this: 5 | :: protoc --plugin=protoc-gen-nanopb=..../protoc-gen-nanopb.bat --nanopb_out=dir foo.proto 6 | :: 7 | :: Note that if you use the binary package of nanopb, the protoc 8 | :: path is already set up properly and there is no need to give 9 | :: --plugin= on the command line. 10 | 11 | set mydir=%~dp0 12 | py -3 "%mydir%\nanopb_generator.py" --protoc-plugin 13 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/nanopb/generator/protoc.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | :: This file acts as a drop-in replacement of binary protoc.exe. 3 | :: It will use either Python-based protoc from grpcio-tools package, 4 | :: or if it is not available, protoc.exe from path if found. 5 | 6 | setLocal enableDelayedExpansion 7 | set mydir=%~dp0 8 | py -3 "%mydir%\protoc" %* 9 | exit /b %ERRORLEVEL% 10 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/proto/RFileTransfer.options: -------------------------------------------------------------------------------- 1 | // contains protobuf options for the messages defined in RFileTransfer.proto 2 | 3 | // force all unions to be anonymous (to shorten the length of name chains) 4 | *.* anonymous_oneof:1 5 | 6 | // max size of outgoing data packet is 235 bytes (allowing room for overhead) 7 | image_packet.data max_size:200 8 | error_record.count int_size:8 9 | error_report_summary.moduleErrorCount int_size:8 max_count:29 fixed_count:true 10 | error_report_summary.componentErrorCount int_size:8 max_count:19 fixed_count:true 11 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/proto/RProtocol.options: -------------------------------------------------------------------------------- 1 | // contains protobuf options for the messages defined in RProtocol.proto 2 | 3 | // force all unions to be anonymous (to shorten the length of name chains) 4 | *.* anonymous_oneof:1 5 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/proto/RRadsat.options: -------------------------------------------------------------------------------- 1 | // contains protobuf options for the top level message defined in RRadsat.proto 2 | 3 | // force all unions to be anonymous (to shorten the length of name chains) 4 | *.* anonymous_oneof:1 5 | 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/proto/RTelecommands.options: -------------------------------------------------------------------------------- 1 | // contains protobuf options for the messages defined in RFileTransfer.proto 2 | 3 | // force all unions to be anonymous (to shorten the length of name chains) 4 | *.* anonymous_oneof:1 5 | 6 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/types/RProtocol.pb.c: -------------------------------------------------------------------------------- 1 | /* Automatically generated nanopb constant definitions */ 2 | /* Generated by nanopb-0.4.4 */ 3 | 4 | #include 5 | #if PB_PROTO_HEADER_VERSION != 40 6 | #error Regenerate this file with the current version of nanopb generator. 7 | #endif 8 | 9 | PB_BIND(protocol_message, protocol_message, AUTO) 10 | 11 | 12 | PB_BIND(ack, ack, AUTO) 13 | 14 | 15 | PB_BIND(nack, nack, AUTO) 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/types/RRadsat.pb.c: -------------------------------------------------------------------------------- 1 | /* Automatically generated nanopb constant definitions */ 2 | /* Generated by nanopb-0.4.4 */ 3 | 4 | #include 5 | #if PB_PROTO_HEADER_VERSION != 40 6 | #error Regenerate this file with the current version of nanopb generator. 7 | #endif 8 | 9 | PB_BIND(radsat_message, radsat_message, AUTO) 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /radsat-sk/operation/message/protobuf/types/RTelecommands.pb.c: -------------------------------------------------------------------------------- 1 | /* Automatically generated nanopb constant definitions */ 2 | /* Generated by nanopb-0.4.4 */ 3 | 4 | #include 5 | #if PB_PROTO_HEADER_VERSION != 40 6 | #error Regenerate this file with the current version of nanopb generator. 7 | #endif 8 | 9 | PB_BIND(telecommand_message, telecommand_message, AUTO) 10 | 11 | 12 | PB_BIND(begin_pass, begin_pass, AUTO) 13 | 14 | 15 | PB_BIND(begin_file_transfer, begin_file_transfer, AUTO) 16 | 17 | 18 | PB_BIND(cease_transmission, cease_transmission, AUTO) 19 | 20 | 21 | PB_BIND(resume_transmission, resume_transmission, AUTO) 22 | 23 | 24 | PB_BIND(update_time, update_time, AUTO) 25 | 26 | 27 | PB_BIND(reset, reset, AUTO) 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /radsat-sk/operation/services/RProtocolService.h: -------------------------------------------------------------------------------- 1 | /** 2 | * @file RProtocolService.h 3 | * @date February 21, 2022 4 | * @author Tyrel Kostyk (tck290) 5 | */ 6 | 7 | #ifndef RPROTOCOLSERVICE_H_ 8 | #define RPROTOCOLSERVICE_H_ 9 | 10 | #include 11 | #include 12 | 13 | 14 | /*************************************************************************************************** 15 | PUBLIC API 16 | ***************************************************************************************************/ 17 | 18 | uint8_t protocolGenerate(uint16_t messageTag, uint8_t* wrappedMessage); 19 | uint8_t protocolHandle(uint8_t* wrappedMessage, uint8_t size); 20 | 21 | 22 | #endif /* RPROTOCOLSERVICE_H_ */ 23 | -------------------------------------------------------------------------------- /radsat-sk/operation/services/RTelecommandService.h: -------------------------------------------------------------------------------- 1 | /** 2 | * @file RTelecommandService.h 3 | * @date February 21, 2022 4 | * @author Tyrel Kostyk (tck290) 5 | */ 6 | 7 | #ifndef RTELECOMMANDSERVICE_H_ 8 | #define RTELECOMMANDSERVICE_H_ 9 | 10 | #include 11 | #include 12 | 13 | 14 | /*************************************************************************************************** 15 | PUBLIC API 16 | ***************************************************************************************************/ 17 | 18 | uint8_t telecommandHandle(uint8_t* wrappedMessage, uint8_t size); 19 | 20 | 21 | #endif /* RTELECOMMANDSERVICE_H_ */ 22 | -------------------------------------------------------------------------------- /radsat-sk/operation/utility/RDebug.h: -------------------------------------------------------------------------------- 1 | /** 2 | * @file RDebug.h 3 | * @date December 29, 2021 4 | * @author Tyrel Kostyk 5 | */ 6 | 7 | #ifndef RDEBUG_H_ 8 | #define RDEBUG_H_ 9 | 10 | #include 11 | 12 | 13 | /*************************************************************************************************** 14 | PUBLIC API 15 | ***************************************************************************************************/ 16 | 17 | void debugPrint(const char* stringFormat, ...); 18 | 19 | extern unsigned char debugReadIntMinMax(unsigned int *pValue, unsigned int min, unsigned int max); 20 | 21 | #endif /* RDEBUG_H_ */ 22 | -------------------------------------------------------------------------------- /radsat-sk/src/tasks/RAdcsCaptureTask.h: -------------------------------------------------------------------------------- 1 | /** 2 | * @file RAdcsCaptureTask.h 3 | * @date February 27, 2022 4 | * @author Tyrel Kostyk (tck290) 5 | */ 6 | 7 | #ifndef RADCSCAPTURETASK_H_ 8 | #define RADCSCAPTURETASK_H_ 9 | 10 | 11 | /*************************************************************************************************** 12 | FREERTOS TASKS 13 | ***************************************************************************************************/ 14 | 15 | void AdcsCaptureTask(void* parameters); 16 | 17 | 18 | #endif /* RADCSCAPTURETASK_H_ */ 19 | -------------------------------------------------------------------------------- /radsat-sk/src/tasks/RDosimeterCollectionTask.h: -------------------------------------------------------------------------------- 1 | /** 2 | * @file RDosimeterCollectionTask.h 3 | * @date December 28, 2021 4 | * @author Tyrel Kostyk (tck290) and Isaac Poirier (iap992) 5 | */ 6 | 7 | 8 | #ifndef RPAYLOADCOLLECTIONTASK_H_ 9 | #define RPAYLOADCOLLECTIONTASK_H_ 10 | 11 | 12 | /*************************************************************************************************** 13 | FREERTOS TASKS 14 | ***************************************************************************************************/ 15 | 16 | void DosimeterCollectionTask(void* parameters); 17 | 18 | 19 | #endif /* RPAYLOADCOLLECTIONTASK_H_ */ 20 | -------------------------------------------------------------------------------- /radsat-sk/src/tasks/RImageCaptureTask.h: -------------------------------------------------------------------------------- 1 | /** 2 | * @file RImageCaptureTask.h 3 | * @date February 27, 2022 4 | * @author Tyrel Kostyk (tck290) 5 | */ 6 | 7 | #ifndef RIMAGECAPTURETASK_H_ 8 | #define RIMAGECAPTURETASK_H_ 9 | 10 | 11 | /*************************************************************************************************** 12 | FREERTOS TASKS 13 | ***************************************************************************************************/ 14 | 15 | void ImageCaptureTask(void* parameters); 16 | 17 | 18 | #endif /* RIMAGECAPTURETASK_H_ */ 19 | -------------------------------------------------------------------------------- /radsat-sk/src/tasks/RSatelliteWatchdogTask.h: -------------------------------------------------------------------------------- 1 | /** 2 | * @file RSatelliteWatchdog.h 3 | * @date February 27, 2022 4 | * @author Tyrel Kostyk (tck290) 5 | */ 6 | 7 | #ifndef RSATELLITEWATCHDOGTASK_H_ 8 | #define RSATELLITEWATCHDOGTASK_H_ 9 | 10 | 11 | /*************************************************************************************************** 12 | FREERTOS TASKS 13 | ***************************************************************************************************/ 14 | 15 | void SatelliteWatchdogTask(void* parameters); 16 | 17 | 18 | #endif /* RSATELLITEWATCHDOGTASK_H_ */ 19 | -------------------------------------------------------------------------------- /radsat-sk/src/tasks/RTelemetryCollectionTask.h: -------------------------------------------------------------------------------- 1 | /** 2 | * @file RTelemetryCollectionTask.h 3 | * @date February 27, 2022 4 | * @author Tyrel Kostyk (tck290) 5 | */ 6 | 7 | #ifndef RTELEMETRYCOLLECTIONTASK_H_ 8 | #define RTELEMETRYCOLLECTIONTASK_H_ 9 | 10 | 11 | /*************************************************************************************************** 12 | FREERTOS TASKS 13 | ***************************************************************************************************/ 14 | 15 | void TelemetryCollectionTask(void* parameters); 16 | 17 | 18 | #endif /* RTELEMETRYCOLLECTIONTASK_H_ */ 19 | -------------------------------------------------------------------------------- /radsat-sk/testing/RTestSuite.h: -------------------------------------------------------------------------------- 1 | /** 2 | * @file RTestSuite.h 3 | * @date December 29, 2021 4 | * @author Tyrel Kostyk (tck290) and Austin Hruska (jah385) 5 | */ 6 | 7 | #ifndef RTESTSUITE_H_ 8 | #define RTESTSUITE_H_ 9 | 10 | 11 | /*************************************************************************************************** 12 | PUBLIC API 13 | ***************************************************************************************************/ 14 | 15 | int testSuiteRunAll(void); 16 | 17 | int selectAndExecuteTests(void); 18 | 19 | 20 | #endif /* RTESTSUITE_H_ */ 21 | -------------------------------------------------------------------------------- /radsat-sk/testing/unit/RTestBattery.h: -------------------------------------------------------------------------------- 1 | /** 2 | * @file RTestBattery.h 3 | * @date January 30, 2023 4 | * @author Austin Hruska (jah385) 5 | */ 6 | 7 | #ifndef RTESTBATTERY_H_ 8 | #define RTESTBATTERY_H_ 9 | 10 | 11 | 12 | /*************************************************************************************************** 13 | PUBLIC API 14 | ***************************************************************************************************/ 15 | 16 | int testSelectBattery(unsigned int autoSelection); 17 | int checkBattery(void); 18 | int testBatteryAll(void); 19 | 20 | 21 | #endif /* RTESTBATTERY_H_ */ 22 | -------------------------------------------------------------------------------- /radsat-sk/testing/unit/RTestDosimeter.h: -------------------------------------------------------------------------------- 1 | /** 2 | * @file RTestDosimeter.h 3 | * @date December 29, 2021 4 | * @author Tyrel Kostyk and Austin Hruska (jah385) 5 | */ 6 | 7 | #ifndef RTESTDOSIMETER_H_ 8 | #define RTESTDOSIMETER_H_ 9 | 10 | 11 | 12 | /*************************************************************************************************** 13 | PUBLIC API 14 | ***************************************************************************************************/ 15 | 16 | int testSelectDosimeter(unsigned int autoSelection); 17 | int checkDosimeter(void); 18 | int testDosimeterAll(void); 19 | 20 | 21 | #endif /* RTESTDOSIMETER_H_ */ 22 | -------------------------------------------------------------------------------- /radsat-sk/testing/unit/RTestPdb.h: -------------------------------------------------------------------------------- 1 | /* 2 | * RTestPdb.h 3 | * 4 | * Created on: Aug 3, 2022 5 | * Author: austin 6 | */ 7 | 8 | #ifndef RTESTPDB_H_ 9 | #define RTESTPDB_H_ 10 | 11 | 12 | 13 | 14 | /*************************************************************************************************** 15 | PUBLIC API 16 | ***************************************************************************************************/ 17 | 18 | int testSelectPdb(unsigned int autoSelection); 19 | int testPdbAll(void); 20 | 21 | #endif /* RTESTPDB_H_ */ 22 | --------------------------------------------------------------------------------