├── .gitattributes ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .gitmodules ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE ├── Microbit-Basic-Stubs ├── LICENSE ├── README.md └── microbit │ ├── __init__.py │ ├── accelerometer.py │ ├── compass.py │ ├── display.py │ ├── i2c.py │ ├── microphone.py │ ├── power.py │ ├── speaker.py │ ├── spi.py │ └── uart.py ├── Microbit-Extended-Stubs ├── .gitattributes ├── LICENSE ├── README.md ├── audio │ └── __init__.py ├── log │ └── __init__.py ├── machine │ └── __init__.py ├── music │ └── __init__.py ├── neopixel │ └── __init__.py ├── os │ └── __init__.py ├── radio │ └── __init__.py ├── random │ └── __init__.py ├── speech │ └── __init__.py └── utime │ └── __init__.py ├── README.md ├── examples ├── .gitignore ├── LICENSE ├── README.md └── hello-world │ └── main.py ├── images ├── commands.png ├── flash.png ├── icon.ai ├── icon.png ├── initialization.png ├── overview.png └── pinout.png ├── jsconfig.json ├── package.json ├── src ├── extension.js ├── main.js ├── python.js └── ui.js └── tools ├── microfs-master ├── .gitignore ├── .pip │ ├── Babel-2.9.1.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ └── top_level.txt │ ├── Jinja2-3.0.1.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE.rst │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ └── top_level.txt │ ├── MarkupSafe-2.0.1.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE.rst │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── top_level.txt │ ├── Pygments-2.10.0.dist-info │ │ ├── AUTHORS │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ └── top_level.txt │ ├── Sphinx-4.1.2.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── REQUESTED │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ └── top_level.txt │ ├── _distutils_hack │ │ ├── __init__.py │ │ └── override.py │ ├── _pytest │ │ ├── __init__.py │ │ ├── _argcomplete.py │ │ ├── _code │ │ │ ├── __init__.py │ │ │ ├── code.py │ │ │ └── source.py │ │ ├── _io │ │ │ ├── __init__.py │ │ │ ├── saferepr.py │ │ │ ├── terminalwriter.py │ │ │ └── wcwidth.py │ │ ├── _version.py │ │ ├── assertion │ │ │ ├── __init__.py │ │ │ ├── rewrite.py │ │ │ ├── truncate.py │ │ │ └── util.py │ │ ├── cacheprovider.py │ │ ├── capture.py │ │ ├── compat.py │ │ ├── config │ │ │ ├── __init__.py │ │ │ ├── argparsing.py │ │ │ ├── exceptions.py │ │ │ └── findpaths.py │ │ ├── debugging.py │ │ ├── deprecated.py │ │ ├── doctest.py │ │ ├── faulthandler.py │ │ ├── fixtures.py │ │ ├── freeze_support.py │ │ ├── helpconfig.py │ │ ├── hookspec.py │ │ ├── junitxml.py │ │ ├── logging.py │ │ ├── main.py │ │ ├── mark │ │ │ ├── __init__.py │ │ │ ├── expression.py │ │ │ └── structures.py │ │ ├── monkeypatch.py │ │ ├── nodes.py │ │ ├── nose.py │ │ ├── outcomes.py │ │ ├── pastebin.py │ │ ├── pathlib.py │ │ ├── py.typed │ │ ├── pytester.py │ │ ├── pytester_assertions.py │ │ ├── python.py │ │ ├── python_api.py │ │ ├── recwarn.py │ │ ├── reports.py │ │ ├── runner.py │ │ ├── setuponly.py │ │ ├── setupplan.py │ │ ├── skipping.py │ │ ├── stepwise.py │ │ ├── store.py │ │ ├── terminal.py │ │ ├── threadexception.py │ │ ├── timing.py │ │ ├── tmpdir.py │ │ ├── unittest.py │ │ ├── unraisableexception.py │ │ ├── warning_types.py │ │ └── warnings.py │ ├── alabaster-0.7.12.dist-info │ │ ├── DESCRIPTION.rst │ │ ├── INSTALLER │ │ ├── LICENSE.txt │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ ├── metadata.json │ │ └── top_level.txt │ ├── alabaster │ │ ├── __init__.py │ │ ├── _version.py │ │ ├── about.html │ │ ├── donate.html │ │ ├── layout.html │ │ ├── navigation.html │ │ ├── relations.html │ │ ├── static │ │ │ ├── alabaster.css_t │ │ │ └── custom.css │ │ ├── support.py │ │ └── theme.conf │ ├── attr │ │ ├── __init__.py │ │ ├── __init__.pyi │ │ ├── _cmp.py │ │ ├── _cmp.pyi │ │ ├── _compat.py │ │ ├── _config.py │ │ ├── _funcs.py │ │ ├── _make.py │ │ ├── _next_gen.py │ │ ├── _version_info.py │ │ ├── _version_info.pyi │ │ ├── converters.py │ │ ├── converters.pyi │ │ ├── exceptions.py │ │ ├── exceptions.pyi │ │ ├── filters.py │ │ ├── filters.pyi │ │ ├── py.typed │ │ ├── setters.py │ │ ├── setters.pyi │ │ ├── validators.py │ │ └── validators.pyi │ ├── attrs-21.2.0.dist-info │ │ ├── AUTHORS.rst │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── top_level.txt │ ├── babel │ │ ├── __init__.py │ │ ├── _compat.py │ │ ├── core.py │ │ ├── dates.py │ │ ├── global.dat │ │ ├── languages.py │ │ ├── lists.py │ │ ├── locale-data │ │ │ ├── af.dat │ │ │ ├── af_NA.dat │ │ │ ├── af_ZA.dat │ │ │ ├── agq.dat │ │ │ ├── agq_CM.dat │ │ │ ├── ak.dat │ │ │ ├── ak_GH.dat │ │ │ ├── am.dat │ │ │ ├── am_ET.dat │ │ │ ├── ar.dat │ │ │ ├── ar_001.dat │ │ │ ├── ar_AE.dat │ │ │ ├── ar_BH.dat │ │ │ ├── ar_DJ.dat │ │ │ ├── ar_DZ.dat │ │ │ ├── ar_EG.dat │ │ │ ├── ar_EH.dat │ │ │ ├── ar_ER.dat │ │ │ ├── ar_IL.dat │ │ │ ├── ar_IQ.dat │ │ │ ├── ar_JO.dat │ │ │ ├── ar_KM.dat │ │ │ ├── ar_KW.dat │ │ │ ├── ar_LB.dat │ │ │ ├── ar_LY.dat │ │ │ ├── ar_MA.dat │ │ │ ├── ar_MR.dat │ │ │ ├── ar_OM.dat │ │ │ ├── ar_PS.dat │ │ │ ├── ar_QA.dat │ │ │ ├── ar_SA.dat │ │ │ ├── ar_SD.dat │ │ │ ├── ar_SO.dat │ │ │ ├── ar_SS.dat │ │ │ ├── ar_SY.dat │ │ │ ├── ar_TD.dat │ │ │ ├── ar_TN.dat │ │ │ ├── ar_YE.dat │ │ │ ├── as.dat │ │ │ ├── as_IN.dat │ │ │ ├── asa.dat │ │ │ ├── asa_TZ.dat │ │ │ ├── ast.dat │ │ │ ├── ast_ES.dat │ │ │ ├── az.dat │ │ │ ├── az_Cyrl.dat │ │ │ ├── az_Cyrl_AZ.dat │ │ │ ├── az_Latn.dat │ │ │ ├── az_Latn_AZ.dat │ │ │ ├── bas.dat │ │ │ ├── bas_CM.dat │ │ │ ├── be.dat │ │ │ ├── be_BY.dat │ │ │ ├── bem.dat │ │ │ ├── bem_ZM.dat │ │ │ ├── bez.dat │ │ │ ├── bez_TZ.dat │ │ │ ├── bg.dat │ │ │ ├── bg_BG.dat │ │ │ ├── bm.dat │ │ │ ├── bm_ML.dat │ │ │ ├── bn.dat │ │ │ ├── bn_BD.dat │ │ │ ├── bn_IN.dat │ │ │ ├── bo.dat │ │ │ ├── bo_CN.dat │ │ │ ├── bo_IN.dat │ │ │ ├── br.dat │ │ │ ├── br_FR.dat │ │ │ ├── brx.dat │ │ │ ├── brx_IN.dat │ │ │ ├── bs.dat │ │ │ ├── bs_Cyrl.dat │ │ │ ├── bs_Cyrl_BA.dat │ │ │ ├── bs_Latn.dat │ │ │ ├── bs_Latn_BA.dat │ │ │ ├── ca.dat │ │ │ ├── ca_AD.dat │ │ │ ├── ca_ES.dat │ │ │ ├── ca_ES_VALENCIA.dat │ │ │ ├── ca_FR.dat │ │ │ ├── ca_IT.dat │ │ │ ├── ccp.dat │ │ │ ├── ccp_BD.dat │ │ │ ├── ccp_IN.dat │ │ │ ├── ce.dat │ │ │ ├── ce_RU.dat │ │ │ ├── ceb.dat │ │ │ ├── ceb_PH.dat │ │ │ ├── cgg.dat │ │ │ ├── cgg_UG.dat │ │ │ ├── chr.dat │ │ │ ├── chr_US.dat │ │ │ ├── ckb.dat │ │ │ ├── ckb_IQ.dat │ │ │ ├── ckb_IR.dat │ │ │ ├── cs.dat │ │ │ ├── cs_CZ.dat │ │ │ ├── cu.dat │ │ │ ├── cu_RU.dat │ │ │ ├── cy.dat │ │ │ ├── cy_GB.dat │ │ │ ├── da.dat │ │ │ ├── da_DK.dat │ │ │ ├── da_GL.dat │ │ │ ├── dav.dat │ │ │ ├── dav_KE.dat │ │ │ ├── de.dat │ │ │ ├── de_AT.dat │ │ │ ├── de_BE.dat │ │ │ ├── de_CH.dat │ │ │ ├── de_DE.dat │ │ │ ├── de_IT.dat │ │ │ ├── de_LI.dat │ │ │ ├── de_LU.dat │ │ │ ├── dje.dat │ │ │ ├── dje_NE.dat │ │ │ ├── dsb.dat │ │ │ ├── dsb_DE.dat │ │ │ ├── dua.dat │ │ │ ├── dua_CM.dat │ │ │ ├── dyo.dat │ │ │ ├── dyo_SN.dat │ │ │ ├── dz.dat │ │ │ ├── dz_BT.dat │ │ │ ├── ebu.dat │ │ │ ├── ebu_KE.dat │ │ │ ├── ee.dat │ │ │ ├── ee_GH.dat │ │ │ ├── ee_TG.dat │ │ │ ├── el.dat │ │ │ ├── el_CY.dat │ │ │ ├── el_GR.dat │ │ │ ├── en.dat │ │ │ ├── en_001.dat │ │ │ ├── en_150.dat │ │ │ ├── en_AE.dat │ │ │ ├── en_AG.dat │ │ │ ├── en_AI.dat │ │ │ ├── en_AS.dat │ │ │ ├── en_AT.dat │ │ │ ├── en_AU.dat │ │ │ ├── en_BB.dat │ │ │ ├── en_BE.dat │ │ │ ├── en_BI.dat │ │ │ ├── en_BM.dat │ │ │ ├── en_BS.dat │ │ │ ├── en_BW.dat │ │ │ ├── en_BZ.dat │ │ │ ├── en_CA.dat │ │ │ ├── en_CC.dat │ │ │ ├── en_CH.dat │ │ │ ├── en_CK.dat │ │ │ ├── en_CM.dat │ │ │ ├── en_CX.dat │ │ │ ├── en_CY.dat │ │ │ ├── en_DE.dat │ │ │ ├── en_DG.dat │ │ │ ├── en_DK.dat │ │ │ ├── en_DM.dat │ │ │ ├── en_ER.dat │ │ │ ├── en_FI.dat │ │ │ ├── en_FJ.dat │ │ │ ├── en_FK.dat │ │ │ ├── en_FM.dat │ │ │ ├── en_GB.dat │ │ │ ├── en_GD.dat │ │ │ ├── en_GG.dat │ │ │ ├── en_GH.dat │ │ │ ├── en_GI.dat │ │ │ ├── en_GM.dat │ │ │ ├── en_GU.dat │ │ │ ├── en_GY.dat │ │ │ ├── en_HK.dat │ │ │ ├── en_IE.dat │ │ │ ├── en_IL.dat │ │ │ ├── en_IM.dat │ │ │ ├── en_IN.dat │ │ │ ├── en_IO.dat │ │ │ ├── en_JE.dat │ │ │ ├── en_JM.dat │ │ │ ├── en_KE.dat │ │ │ ├── en_KI.dat │ │ │ ├── en_KN.dat │ │ │ ├── en_KY.dat │ │ │ ├── en_LC.dat │ │ │ ├── en_LR.dat │ │ │ ├── en_LS.dat │ │ │ ├── en_MG.dat │ │ │ ├── en_MH.dat │ │ │ ├── en_MO.dat │ │ │ ├── en_MP.dat │ │ │ ├── en_MS.dat │ │ │ ├── en_MT.dat │ │ │ ├── en_MU.dat │ │ │ ├── en_MW.dat │ │ │ ├── en_MY.dat │ │ │ ├── en_NA.dat │ │ │ ├── en_NF.dat │ │ │ ├── en_NG.dat │ │ │ ├── en_NL.dat │ │ │ ├── en_NR.dat │ │ │ ├── en_NU.dat │ │ │ ├── en_NZ.dat │ │ │ ├── en_PG.dat │ │ │ ├── en_PH.dat │ │ │ ├── en_PK.dat │ │ │ ├── en_PN.dat │ │ │ ├── en_PR.dat │ │ │ ├── en_PW.dat │ │ │ ├── en_RW.dat │ │ │ ├── en_SB.dat │ │ │ ├── en_SC.dat │ │ │ ├── en_SD.dat │ │ │ ├── en_SE.dat │ │ │ ├── en_SG.dat │ │ │ ├── en_SH.dat │ │ │ ├── en_SI.dat │ │ │ ├── en_SL.dat │ │ │ ├── en_SS.dat │ │ │ ├── en_SX.dat │ │ │ ├── en_SZ.dat │ │ │ ├── en_TC.dat │ │ │ ├── en_TK.dat │ │ │ ├── en_TO.dat │ │ │ ├── en_TT.dat │ │ │ ├── en_TV.dat │ │ │ ├── en_TZ.dat │ │ │ ├── en_UG.dat │ │ │ ├── en_UM.dat │ │ │ ├── en_US.dat │ │ │ ├── en_US_POSIX.dat │ │ │ ├── en_VC.dat │ │ │ ├── en_VG.dat │ │ │ ├── en_VI.dat │ │ │ ├── en_VU.dat │ │ │ ├── en_WS.dat │ │ │ ├── en_ZA.dat │ │ │ ├── en_ZM.dat │ │ │ ├── en_ZW.dat │ │ │ ├── eo.dat │ │ │ ├── eo_001.dat │ │ │ ├── es.dat │ │ │ ├── es_419.dat │ │ │ ├── es_AR.dat │ │ │ ├── es_BO.dat │ │ │ ├── es_BR.dat │ │ │ ├── es_BZ.dat │ │ │ ├── es_CL.dat │ │ │ ├── es_CO.dat │ │ │ ├── es_CR.dat │ │ │ ├── es_CU.dat │ │ │ ├── es_DO.dat │ │ │ ├── es_EA.dat │ │ │ ├── es_EC.dat │ │ │ ├── es_ES.dat │ │ │ ├── es_GQ.dat │ │ │ ├── es_GT.dat │ │ │ ├── es_HN.dat │ │ │ ├── es_IC.dat │ │ │ ├── es_MX.dat │ │ │ ├── es_NI.dat │ │ │ ├── es_PA.dat │ │ │ ├── es_PE.dat │ │ │ ├── es_PH.dat │ │ │ ├── es_PR.dat │ │ │ ├── es_PY.dat │ │ │ ├── es_SV.dat │ │ │ ├── es_US.dat │ │ │ ├── es_UY.dat │ │ │ ├── es_VE.dat │ │ │ ├── et.dat │ │ │ ├── et_EE.dat │ │ │ ├── eu.dat │ │ │ ├── eu_ES.dat │ │ │ ├── ewo.dat │ │ │ ├── ewo_CM.dat │ │ │ ├── fa.dat │ │ │ ├── fa_AF.dat │ │ │ ├── fa_IR.dat │ │ │ ├── ff.dat │ │ │ ├── ff_Adlm.dat │ │ │ ├── ff_Adlm_BF.dat │ │ │ ├── ff_Adlm_CM.dat │ │ │ ├── ff_Adlm_GH.dat │ │ │ ├── ff_Adlm_GM.dat │ │ │ ├── ff_Adlm_GN.dat │ │ │ ├── ff_Adlm_GW.dat │ │ │ ├── ff_Adlm_LR.dat │ │ │ ├── ff_Adlm_MR.dat │ │ │ ├── ff_Adlm_NE.dat │ │ │ ├── ff_Adlm_NG.dat │ │ │ ├── ff_Adlm_SL.dat │ │ │ ├── ff_Adlm_SN.dat │ │ │ ├── ff_Latn.dat │ │ │ ├── ff_Latn_BF.dat │ │ │ ├── ff_Latn_CM.dat │ │ │ ├── ff_Latn_GH.dat │ │ │ ├── ff_Latn_GM.dat │ │ │ ├── ff_Latn_GN.dat │ │ │ ├── ff_Latn_GW.dat │ │ │ ├── ff_Latn_LR.dat │ │ │ ├── ff_Latn_MR.dat │ │ │ ├── ff_Latn_NE.dat │ │ │ ├── ff_Latn_NG.dat │ │ │ ├── ff_Latn_SL.dat │ │ │ ├── ff_Latn_SN.dat │ │ │ ├── fi.dat │ │ │ ├── fi_FI.dat │ │ │ ├── fil.dat │ │ │ ├── fil_PH.dat │ │ │ ├── fo.dat │ │ │ ├── fo_DK.dat │ │ │ ├── fo_FO.dat │ │ │ ├── fr.dat │ │ │ ├── fr_BE.dat │ │ │ ├── fr_BF.dat │ │ │ ├── fr_BI.dat │ │ │ ├── fr_BJ.dat │ │ │ ├── fr_BL.dat │ │ │ ├── fr_CA.dat │ │ │ ├── fr_CD.dat │ │ │ ├── fr_CF.dat │ │ │ ├── fr_CG.dat │ │ │ ├── fr_CH.dat │ │ │ ├── fr_CI.dat │ │ │ ├── fr_CM.dat │ │ │ ├── fr_DJ.dat │ │ │ ├── fr_DZ.dat │ │ │ ├── fr_FR.dat │ │ │ ├── fr_GA.dat │ │ │ ├── fr_GF.dat │ │ │ ├── fr_GN.dat │ │ │ ├── fr_GP.dat │ │ │ ├── fr_GQ.dat │ │ │ ├── fr_HT.dat │ │ │ ├── fr_KM.dat │ │ │ ├── fr_LU.dat │ │ │ ├── fr_MA.dat │ │ │ ├── fr_MC.dat │ │ │ ├── fr_MF.dat │ │ │ ├── fr_MG.dat │ │ │ ├── fr_ML.dat │ │ │ ├── fr_MQ.dat │ │ │ ├── fr_MR.dat │ │ │ ├── fr_MU.dat │ │ │ ├── fr_NC.dat │ │ │ ├── fr_NE.dat │ │ │ ├── fr_PF.dat │ │ │ ├── fr_PM.dat │ │ │ ├── fr_RE.dat │ │ │ ├── fr_RW.dat │ │ │ ├── fr_SC.dat │ │ │ ├── fr_SN.dat │ │ │ ├── fr_SY.dat │ │ │ ├── fr_TD.dat │ │ │ ├── fr_TG.dat │ │ │ ├── fr_TN.dat │ │ │ ├── fr_VU.dat │ │ │ ├── fr_WF.dat │ │ │ ├── fr_YT.dat │ │ │ ├── fur.dat │ │ │ ├── fur_IT.dat │ │ │ ├── fy.dat │ │ │ ├── fy_NL.dat │ │ │ ├── ga.dat │ │ │ ├── ga_GB.dat │ │ │ ├── ga_IE.dat │ │ │ ├── gd.dat │ │ │ ├── gd_GB.dat │ │ │ ├── gl.dat │ │ │ ├── gl_ES.dat │ │ │ ├── gsw.dat │ │ │ ├── gsw_CH.dat │ │ │ ├── gsw_FR.dat │ │ │ ├── gsw_LI.dat │ │ │ ├── gu.dat │ │ │ ├── gu_IN.dat │ │ │ ├── guz.dat │ │ │ ├── guz_KE.dat │ │ │ ├── gv.dat │ │ │ ├── gv_IM.dat │ │ │ ├── ha.dat │ │ │ ├── ha_GH.dat │ │ │ ├── ha_NE.dat │ │ │ ├── ha_NG.dat │ │ │ ├── haw.dat │ │ │ ├── haw_US.dat │ │ │ ├── he.dat │ │ │ ├── he_IL.dat │ │ │ ├── hi.dat │ │ │ ├── hi_IN.dat │ │ │ ├── hr.dat │ │ │ ├── hr_BA.dat │ │ │ ├── hr_HR.dat │ │ │ ├── hsb.dat │ │ │ ├── hsb_DE.dat │ │ │ ├── hu.dat │ │ │ ├── hu_HU.dat │ │ │ ├── hy.dat │ │ │ ├── hy_AM.dat │ │ │ ├── ia.dat │ │ │ ├── ia_001.dat │ │ │ ├── id.dat │ │ │ ├── id_ID.dat │ │ │ ├── ig.dat │ │ │ ├── ig_NG.dat │ │ │ ├── ii.dat │ │ │ ├── ii_CN.dat │ │ │ ├── is.dat │ │ │ ├── is_IS.dat │ │ │ ├── it.dat │ │ │ ├── it_CH.dat │ │ │ ├── it_IT.dat │ │ │ ├── it_SM.dat │ │ │ ├── it_VA.dat │ │ │ ├── ja.dat │ │ │ ├── ja_JP.dat │ │ │ ├── jgo.dat │ │ │ ├── jgo_CM.dat │ │ │ ├── jmc.dat │ │ │ ├── jmc_TZ.dat │ │ │ ├── jv.dat │ │ │ ├── jv_ID.dat │ │ │ ├── ka.dat │ │ │ ├── ka_GE.dat │ │ │ ├── kab.dat │ │ │ ├── kab_DZ.dat │ │ │ ├── kam.dat │ │ │ ├── kam_KE.dat │ │ │ ├── kde.dat │ │ │ ├── kde_TZ.dat │ │ │ ├── kea.dat │ │ │ ├── kea_CV.dat │ │ │ ├── khq.dat │ │ │ ├── khq_ML.dat │ │ │ ├── ki.dat │ │ │ ├── ki_KE.dat │ │ │ ├── kk.dat │ │ │ ├── kk_KZ.dat │ │ │ ├── kkj.dat │ │ │ ├── kkj_CM.dat │ │ │ ├── kl.dat │ │ │ ├── kl_GL.dat │ │ │ ├── kln.dat │ │ │ ├── kln_KE.dat │ │ │ ├── km.dat │ │ │ ├── km_KH.dat │ │ │ ├── kn.dat │ │ │ ├── kn_IN.dat │ │ │ ├── ko.dat │ │ │ ├── ko_KP.dat │ │ │ ├── ko_KR.dat │ │ │ ├── kok.dat │ │ │ ├── kok_IN.dat │ │ │ ├── ks.dat │ │ │ ├── ks_Arab.dat │ │ │ ├── ks_Arab_IN.dat │ │ │ ├── ksb.dat │ │ │ ├── ksb_TZ.dat │ │ │ ├── ksf.dat │ │ │ ├── ksf_CM.dat │ │ │ ├── ksh.dat │ │ │ ├── ksh_DE.dat │ │ │ ├── ku.dat │ │ │ ├── ku_TR.dat │ │ │ ├── kw.dat │ │ │ ├── kw_GB.dat │ │ │ ├── ky.dat │ │ │ ├── ky_KG.dat │ │ │ ├── lag.dat │ │ │ ├── lag_TZ.dat │ │ │ ├── lb.dat │ │ │ ├── lb_LU.dat │ │ │ ├── lg.dat │ │ │ ├── lg_UG.dat │ │ │ ├── lkt.dat │ │ │ ├── lkt_US.dat │ │ │ ├── ln.dat │ │ │ ├── ln_AO.dat │ │ │ ├── ln_CD.dat │ │ │ ├── ln_CF.dat │ │ │ ├── ln_CG.dat │ │ │ ├── lo.dat │ │ │ ├── lo_LA.dat │ │ │ ├── lrc.dat │ │ │ ├── lrc_IQ.dat │ │ │ ├── lrc_IR.dat │ │ │ ├── lt.dat │ │ │ ├── lt_LT.dat │ │ │ ├── lu.dat │ │ │ ├── lu_CD.dat │ │ │ ├── luo.dat │ │ │ ├── luo_KE.dat │ │ │ ├── luy.dat │ │ │ ├── luy_KE.dat │ │ │ ├── lv.dat │ │ │ ├── lv_LV.dat │ │ │ ├── mai.dat │ │ │ ├── mai_IN.dat │ │ │ ├── mas.dat │ │ │ ├── mas_KE.dat │ │ │ ├── mas_TZ.dat │ │ │ ├── mer.dat │ │ │ ├── mer_KE.dat │ │ │ ├── mfe.dat │ │ │ ├── mfe_MU.dat │ │ │ ├── mg.dat │ │ │ ├── mg_MG.dat │ │ │ ├── mgh.dat │ │ │ ├── mgh_MZ.dat │ │ │ ├── mgo.dat │ │ │ ├── mgo_CM.dat │ │ │ ├── mi.dat │ │ │ ├── mi_NZ.dat │ │ │ ├── mk.dat │ │ │ ├── mk_MK.dat │ │ │ ├── ml.dat │ │ │ ├── ml_IN.dat │ │ │ ├── mn.dat │ │ │ ├── mn_MN.dat │ │ │ ├── mni.dat │ │ │ ├── mni_Beng.dat │ │ │ ├── mni_Beng_IN.dat │ │ │ ├── mr.dat │ │ │ ├── mr_IN.dat │ │ │ ├── ms.dat │ │ │ ├── ms_BN.dat │ │ │ ├── ms_ID.dat │ │ │ ├── ms_MY.dat │ │ │ ├── ms_SG.dat │ │ │ ├── mt.dat │ │ │ ├── mt_MT.dat │ │ │ ├── mua.dat │ │ │ ├── mua_CM.dat │ │ │ ├── my.dat │ │ │ ├── my_MM.dat │ │ │ ├── mzn.dat │ │ │ ├── mzn_IR.dat │ │ │ ├── naq.dat │ │ │ ├── naq_NA.dat │ │ │ ├── nb.dat │ │ │ ├── nb_NO.dat │ │ │ ├── nb_SJ.dat │ │ │ ├── nd.dat │ │ │ ├── nd_ZW.dat │ │ │ ├── nds.dat │ │ │ ├── nds_DE.dat │ │ │ ├── nds_NL.dat │ │ │ ├── ne.dat │ │ │ ├── ne_IN.dat │ │ │ ├── ne_NP.dat │ │ │ ├── nl.dat │ │ │ ├── nl_AW.dat │ │ │ ├── nl_BE.dat │ │ │ ├── nl_BQ.dat │ │ │ ├── nl_CW.dat │ │ │ ├── nl_NL.dat │ │ │ ├── nl_SR.dat │ │ │ ├── nl_SX.dat │ │ │ ├── nmg.dat │ │ │ ├── nmg_CM.dat │ │ │ ├── nn.dat │ │ │ ├── nn_NO.dat │ │ │ ├── nnh.dat │ │ │ ├── nnh_CM.dat │ │ │ ├── nus.dat │ │ │ ├── nus_SS.dat │ │ │ ├── nyn.dat │ │ │ ├── nyn_UG.dat │ │ │ ├── om.dat │ │ │ ├── om_ET.dat │ │ │ ├── om_KE.dat │ │ │ ├── or.dat │ │ │ ├── or_IN.dat │ │ │ ├── os.dat │ │ │ ├── os_GE.dat │ │ │ ├── os_RU.dat │ │ │ ├── pa.dat │ │ │ ├── pa_Arab.dat │ │ │ ├── pa_Arab_PK.dat │ │ │ ├── pa_Guru.dat │ │ │ ├── pa_Guru_IN.dat │ │ │ ├── pcm.dat │ │ │ ├── pcm_NG.dat │ │ │ ├── pl.dat │ │ │ ├── pl_PL.dat │ │ │ ├── prg.dat │ │ │ ├── prg_001.dat │ │ │ ├── ps.dat │ │ │ ├── ps_AF.dat │ │ │ ├── ps_PK.dat │ │ │ ├── pt.dat │ │ │ ├── pt_AO.dat │ │ │ ├── pt_BR.dat │ │ │ ├── pt_CH.dat │ │ │ ├── pt_CV.dat │ │ │ ├── pt_GQ.dat │ │ │ ├── pt_GW.dat │ │ │ ├── pt_LU.dat │ │ │ ├── pt_MO.dat │ │ │ ├── pt_MZ.dat │ │ │ ├── pt_PT.dat │ │ │ ├── pt_ST.dat │ │ │ ├── pt_TL.dat │ │ │ ├── qu.dat │ │ │ ├── qu_BO.dat │ │ │ ├── qu_EC.dat │ │ │ ├── qu_PE.dat │ │ │ ├── rm.dat │ │ │ ├── rm_CH.dat │ │ │ ├── rn.dat │ │ │ ├── rn_BI.dat │ │ │ ├── ro.dat │ │ │ ├── ro_MD.dat │ │ │ ├── ro_RO.dat │ │ │ ├── rof.dat │ │ │ ├── rof_TZ.dat │ │ │ ├── root.dat │ │ │ ├── ru.dat │ │ │ ├── ru_BY.dat │ │ │ ├── ru_KG.dat │ │ │ ├── ru_KZ.dat │ │ │ ├── ru_MD.dat │ │ │ ├── ru_RU.dat │ │ │ ├── ru_UA.dat │ │ │ ├── rw.dat │ │ │ ├── rw_RW.dat │ │ │ ├── rwk.dat │ │ │ ├── rwk_TZ.dat │ │ │ ├── sah.dat │ │ │ ├── sah_RU.dat │ │ │ ├── saq.dat │ │ │ ├── saq_KE.dat │ │ │ ├── sat.dat │ │ │ ├── sat_Olck.dat │ │ │ ├── sat_Olck_IN.dat │ │ │ ├── sbp.dat │ │ │ ├── sbp_TZ.dat │ │ │ ├── sd.dat │ │ │ ├── sd_Arab.dat │ │ │ ├── sd_Arab_PK.dat │ │ │ ├── sd_Deva.dat │ │ │ ├── sd_Deva_IN.dat │ │ │ ├── se.dat │ │ │ ├── se_FI.dat │ │ │ ├── se_NO.dat │ │ │ ├── se_SE.dat │ │ │ ├── seh.dat │ │ │ ├── seh_MZ.dat │ │ │ ├── ses.dat │ │ │ ├── ses_ML.dat │ │ │ ├── sg.dat │ │ │ ├── sg_CF.dat │ │ │ ├── shi.dat │ │ │ ├── shi_Latn.dat │ │ │ ├── shi_Latn_MA.dat │ │ │ ├── shi_Tfng.dat │ │ │ ├── shi_Tfng_MA.dat │ │ │ ├── si.dat │ │ │ ├── si_LK.dat │ │ │ ├── sk.dat │ │ │ ├── sk_SK.dat │ │ │ ├── sl.dat │ │ │ ├── sl_SI.dat │ │ │ ├── smn.dat │ │ │ ├── smn_FI.dat │ │ │ ├── sn.dat │ │ │ ├── sn_ZW.dat │ │ │ ├── so.dat │ │ │ ├── so_DJ.dat │ │ │ ├── so_ET.dat │ │ │ ├── so_KE.dat │ │ │ ├── so_SO.dat │ │ │ ├── sq.dat │ │ │ ├── sq_AL.dat │ │ │ ├── sq_MK.dat │ │ │ ├── sq_XK.dat │ │ │ ├── sr.dat │ │ │ ├── sr_Cyrl.dat │ │ │ ├── sr_Cyrl_BA.dat │ │ │ ├── sr_Cyrl_ME.dat │ │ │ ├── sr_Cyrl_RS.dat │ │ │ ├── sr_Cyrl_XK.dat │ │ │ ├── sr_Latn.dat │ │ │ ├── sr_Latn_BA.dat │ │ │ ├── sr_Latn_ME.dat │ │ │ ├── sr_Latn_RS.dat │ │ │ ├── sr_Latn_XK.dat │ │ │ ├── su.dat │ │ │ ├── su_Latn.dat │ │ │ ├── su_Latn_ID.dat │ │ │ ├── sv.dat │ │ │ ├── sv_AX.dat │ │ │ ├── sv_FI.dat │ │ │ ├── sv_SE.dat │ │ │ ├── sw.dat │ │ │ ├── sw_CD.dat │ │ │ ├── sw_KE.dat │ │ │ ├── sw_TZ.dat │ │ │ ├── sw_UG.dat │ │ │ ├── ta.dat │ │ │ ├── ta_IN.dat │ │ │ ├── ta_LK.dat │ │ │ ├── ta_MY.dat │ │ │ ├── ta_SG.dat │ │ │ ├── te.dat │ │ │ ├── te_IN.dat │ │ │ ├── teo.dat │ │ │ ├── teo_KE.dat │ │ │ ├── teo_UG.dat │ │ │ ├── tg.dat │ │ │ ├── tg_TJ.dat │ │ │ ├── th.dat │ │ │ ├── th_TH.dat │ │ │ ├── ti.dat │ │ │ ├── ti_ER.dat │ │ │ ├── ti_ET.dat │ │ │ ├── tk.dat │ │ │ ├── tk_TM.dat │ │ │ ├── to.dat │ │ │ ├── to_TO.dat │ │ │ ├── tr.dat │ │ │ ├── tr_CY.dat │ │ │ ├── tr_TR.dat │ │ │ ├── tt.dat │ │ │ ├── tt_RU.dat │ │ │ ├── twq.dat │ │ │ ├── twq_NE.dat │ │ │ ├── tzm.dat │ │ │ ├── tzm_MA.dat │ │ │ ├── ug.dat │ │ │ ├── ug_CN.dat │ │ │ ├── uk.dat │ │ │ ├── uk_UA.dat │ │ │ ├── ur.dat │ │ │ ├── ur_IN.dat │ │ │ ├── ur_PK.dat │ │ │ ├── uz.dat │ │ │ ├── uz_Arab.dat │ │ │ ├── uz_Arab_AF.dat │ │ │ ├── uz_Cyrl.dat │ │ │ ├── uz_Cyrl_UZ.dat │ │ │ ├── uz_Latn.dat │ │ │ ├── uz_Latn_UZ.dat │ │ │ ├── vai.dat │ │ │ ├── vai_Latn.dat │ │ │ ├── vai_Latn_LR.dat │ │ │ ├── vai_Vaii.dat │ │ │ ├── vai_Vaii_LR.dat │ │ │ ├── vi.dat │ │ │ ├── vi_VN.dat │ │ │ ├── vo.dat │ │ │ ├── vo_001.dat │ │ │ ├── vun.dat │ │ │ ├── vun_TZ.dat │ │ │ ├── wae.dat │ │ │ ├── wae_CH.dat │ │ │ ├── wo.dat │ │ │ ├── wo_SN.dat │ │ │ ├── xh.dat │ │ │ ├── xh_ZA.dat │ │ │ ├── xog.dat │ │ │ ├── xog_UG.dat │ │ │ ├── yav.dat │ │ │ ├── yav_CM.dat │ │ │ ├── yi.dat │ │ │ ├── yi_001.dat │ │ │ ├── yo.dat │ │ │ ├── yo_BJ.dat │ │ │ ├── yo_NG.dat │ │ │ ├── yue.dat │ │ │ ├── yue_Hans.dat │ │ │ ├── yue_Hans_CN.dat │ │ │ ├── yue_Hant.dat │ │ │ ├── yue_Hant_HK.dat │ │ │ ├── zgh.dat │ │ │ ├── zgh_MA.dat │ │ │ ├── zh.dat │ │ │ ├── zh_Hans.dat │ │ │ ├── zh_Hans_CN.dat │ │ │ ├── zh_Hans_HK.dat │ │ │ ├── zh_Hans_MO.dat │ │ │ ├── zh_Hans_SG.dat │ │ │ ├── zh_Hant.dat │ │ │ ├── zh_Hant_HK.dat │ │ │ ├── zh_Hant_MO.dat │ │ │ ├── zh_Hant_TW.dat │ │ │ ├── zu.dat │ │ │ └── zu_ZA.dat │ │ ├── localedata.py │ │ ├── localtime │ │ │ ├── __init__.py │ │ │ ├── _unix.py │ │ │ └── _win32.py │ │ ├── messages │ │ │ ├── __init__.py │ │ │ ├── catalog.py │ │ │ ├── checkers.py │ │ │ ├── extract.py │ │ │ ├── frontend.py │ │ │ ├── jslexer.py │ │ │ ├── mofile.py │ │ │ ├── plurals.py │ │ │ └── pofile.py │ │ ├── numbers.py │ │ ├── plural.py │ │ ├── support.py │ │ ├── units.py │ │ └── util.py │ ├── bin │ │ ├── pyserial-miniterm │ │ └── pyserial-ports │ ├── certifi-2021.5.30.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── top_level.txt │ ├── certifi │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── cacert.pem │ │ └── core.py │ ├── charset_normalizer-2.0.4.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ └── top_level.txt │ ├── charset_normalizer │ │ ├── __init__.py │ │ ├── api.py │ │ ├── assets │ │ │ └── __init__.py │ │ ├── cd.py │ │ ├── cli │ │ │ ├── __init__.py │ │ │ └── normalizer.py │ │ ├── constant.py │ │ ├── legacy.py │ │ ├── md.py │ │ ├── models.py │ │ ├── py.typed │ │ ├── utils.py │ │ └── version.py │ ├── coverage-5.5.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE.txt │ │ ├── METADATA │ │ ├── RECORD │ │ ├── REQUESTED │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ └── top_level.txt │ ├── coverage │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── annotate.py │ │ ├── backward.py │ │ ├── bytecode.py │ │ ├── cmdline.py │ │ ├── collector.py │ │ ├── config.py │ │ ├── context.py │ │ ├── control.py │ │ ├── data.py │ │ ├── debug.py │ │ ├── disposition.py │ │ ├── env.py │ │ ├── execfile.py │ │ ├── files.py │ │ ├── fullcoverage │ │ │ └── encodings.py │ │ ├── html.py │ │ ├── htmlfiles │ │ │ ├── coverage_html.js │ │ │ ├── favicon_32.png │ │ │ ├── index.html │ │ │ ├── jquery.ba-throttle-debounce.min.js │ │ │ ├── jquery.hotkeys.js │ │ │ ├── jquery.isonscreen.js │ │ │ ├── jquery.min.js │ │ │ ├── jquery.tablesorter.min.js │ │ │ ├── keybd_closed.png │ │ │ ├── keybd_open.png │ │ │ ├── pyfile.html │ │ │ ├── style.css │ │ │ └── style.scss │ │ ├── inorout.py │ │ ├── jsonreport.py │ │ ├── misc.py │ │ ├── multiproc.py │ │ ├── numbits.py │ │ ├── parser.py │ │ ├── phystokens.py │ │ ├── plugin.py │ │ ├── plugin_support.py │ │ ├── python.py │ │ ├── pytracer.py │ │ ├── report.py │ │ ├── results.py │ │ ├── sqldata.py │ │ ├── summary.py │ │ ├── templite.py │ │ ├── tomlconfig.py │ │ ├── tracer.cpython-39-darwin.so │ │ ├── version.py │ │ └── xmlreport.py │ ├── distutils-precedence.pth │ ├── docutils-0.17.1.dist-info │ │ ├── COPYING.txt │ │ ├── INSTALLER │ │ ├── METADATA │ │ ├── RECORD │ │ ├── SOURCES.html │ │ ├── WHEEL │ │ ├── dependency_links.html │ │ ├── top_level.html │ │ └── top_level.txt │ ├── docutils │ │ ├── __init__.py │ │ ├── core.py │ │ ├── examples.py │ │ ├── frontend.py │ │ ├── io.py │ │ ├── languages │ │ │ ├── __init__.py │ │ │ ├── af.py │ │ │ ├── ar.py │ │ │ ├── ca.py │ │ │ ├── cs.py │ │ │ ├── da.py │ │ │ ├── de.py │ │ │ ├── en.py │ │ │ ├── eo.py │ │ │ ├── es.py │ │ │ ├── fa.py │ │ │ ├── fi.py │ │ │ ├── fr.py │ │ │ ├── gl.py │ │ │ ├── he.py │ │ │ ├── it.py │ │ │ ├── ja.py │ │ │ ├── ko.py │ │ │ ├── lt.py │ │ │ ├── lv.py │ │ │ ├── nl.py │ │ │ ├── pl.py │ │ │ ├── pt_br.py │ │ │ ├── ru.py │ │ │ ├── sk.py │ │ │ ├── sv.py │ │ │ ├── zh_cn.py │ │ │ └── zh_tw.py │ │ ├── nodes.py │ │ ├── parsers │ │ │ ├── __init__.py │ │ │ ├── null.py │ │ │ ├── recommonmark_wrapper.py │ │ │ └── rst │ │ │ │ ├── __init__.py │ │ │ │ ├── directives │ │ │ │ ├── __init__.py │ │ │ │ ├── admonitions.py │ │ │ │ ├── body.py │ │ │ │ ├── html.py │ │ │ │ ├── images.py │ │ │ │ ├── misc.py │ │ │ │ ├── parts.py │ │ │ │ ├── references.py │ │ │ │ └── tables.py │ │ │ │ ├── include │ │ │ │ ├── README.txt │ │ │ │ ├── isoamsa.txt │ │ │ │ ├── isoamsb.txt │ │ │ │ ├── isoamsc.txt │ │ │ │ ├── isoamsn.txt │ │ │ │ ├── isoamso.txt │ │ │ │ ├── isoamsr.txt │ │ │ │ ├── isobox.txt │ │ │ │ ├── isocyr1.txt │ │ │ │ ├── isocyr2.txt │ │ │ │ ├── isodia.txt │ │ │ │ ├── isogrk1.txt │ │ │ │ ├── isogrk2.txt │ │ │ │ ├── isogrk3.txt │ │ │ │ ├── isogrk4-wide.txt │ │ │ │ ├── isogrk4.txt │ │ │ │ ├── isolat1.txt │ │ │ │ ├── isolat2.txt │ │ │ │ ├── isomfrk-wide.txt │ │ │ │ ├── isomfrk.txt │ │ │ │ ├── isomopf-wide.txt │ │ │ │ ├── isomopf.txt │ │ │ │ ├── isomscr-wide.txt │ │ │ │ ├── isomscr.txt │ │ │ │ ├── isonum.txt │ │ │ │ ├── isopub.txt │ │ │ │ ├── isotech.txt │ │ │ │ ├── mmlalias.txt │ │ │ │ ├── mmlextra-wide.txt │ │ │ │ ├── mmlextra.txt │ │ │ │ ├── s5defs.txt │ │ │ │ ├── xhtml1-lat1.txt │ │ │ │ ├── xhtml1-special.txt │ │ │ │ └── xhtml1-symbol.txt │ │ │ │ ├── languages │ │ │ │ ├── __init__.py │ │ │ │ ├── af.py │ │ │ │ ├── ar.py │ │ │ │ ├── ca.py │ │ │ │ ├── cs.py │ │ │ │ ├── da.py │ │ │ │ ├── de.py │ │ │ │ ├── en.py │ │ │ │ ├── eo.py │ │ │ │ ├── es.py │ │ │ │ ├── fa.py │ │ │ │ ├── fi.py │ │ │ │ ├── fr.py │ │ │ │ ├── gl.py │ │ │ │ ├── he.py │ │ │ │ ├── it.py │ │ │ │ ├── ja.py │ │ │ │ ├── ko.py │ │ │ │ ├── lt.py │ │ │ │ ├── lv.py │ │ │ │ ├── nl.py │ │ │ │ ├── pl.py │ │ │ │ ├── pt_br.py │ │ │ │ ├── ru.py │ │ │ │ ├── sk.py │ │ │ │ ├── sv.py │ │ │ │ ├── zh_cn.py │ │ │ │ └── zh_tw.py │ │ │ │ ├── roles.py │ │ │ │ ├── states.py │ │ │ │ └── tableparser.py │ │ ├── readers │ │ │ ├── __init__.py │ │ │ ├── doctree.py │ │ │ ├── pep.py │ │ │ └── standalone.py │ │ ├── statemachine.py │ │ ├── transforms │ │ │ ├── __init__.py │ │ │ ├── components.py │ │ │ ├── frontmatter.py │ │ │ ├── misc.py │ │ │ ├── parts.py │ │ │ ├── peps.py │ │ │ ├── references.py │ │ │ ├── universal.py │ │ │ └── writer_aux.py │ │ ├── utils │ │ │ ├── __init__.py │ │ │ ├── code_analyzer.py │ │ │ ├── error_reporting.py │ │ │ ├── math │ │ │ │ ├── __init__.py │ │ │ │ ├── latex2mathml.py │ │ │ │ ├── math2html.py │ │ │ │ ├── tex2mathml_extern.py │ │ │ │ ├── tex2unichar.py │ │ │ │ └── unichar2tex.py │ │ │ ├── punctuation_chars.py │ │ │ ├── roman.py │ │ │ ├── smartquotes.py │ │ │ └── urischemes.py │ │ └── writers │ │ │ ├── __init__.py │ │ │ ├── _html_base.py │ │ │ ├── docutils_xml.py │ │ │ ├── html4css1 │ │ │ ├── __init__.py │ │ │ ├── html4css1.css │ │ │ └── template.txt │ │ │ ├── html5_polyglot │ │ │ ├── __init__.py │ │ │ ├── math.css │ │ │ ├── minimal.css │ │ │ ├── plain.css │ │ │ ├── responsive.css │ │ │ ├── template.txt │ │ │ └── tuftig.css │ │ │ ├── latex2e │ │ │ ├── __init__.py │ │ │ ├── default.tex │ │ │ ├── docutils.sty │ │ │ ├── titlepage.tex │ │ │ ├── titlingpage.tex │ │ │ └── xelatex.tex │ │ │ ├── manpage.py │ │ │ ├── null.py │ │ │ ├── odf_odt │ │ │ ├── __init__.py │ │ │ ├── pygmentsformatter.py │ │ │ └── styles.odt │ │ │ ├── pep_html │ │ │ ├── __init__.py │ │ │ ├── pep.css │ │ │ └── template.txt │ │ │ ├── pseudoxml.py │ │ │ ├── s5_html │ │ │ ├── __init__.py │ │ │ └── themes │ │ │ │ ├── README.txt │ │ │ │ ├── big-black │ │ │ │ ├── __base__ │ │ │ │ ├── framing.css │ │ │ │ └── pretty.css │ │ │ │ ├── big-white │ │ │ │ ├── framing.css │ │ │ │ └── pretty.css │ │ │ │ ├── default │ │ │ │ ├── blank.gif │ │ │ │ ├── framing.css │ │ │ │ ├── iepngfix.htc │ │ │ │ ├── opera.css │ │ │ │ ├── outline.css │ │ │ │ ├── pretty.css │ │ │ │ ├── print.css │ │ │ │ ├── s5-core.css │ │ │ │ ├── slides.css │ │ │ │ └── slides.js │ │ │ │ ├── medium-black │ │ │ │ ├── __base__ │ │ │ │ └── pretty.css │ │ │ │ ├── medium-white │ │ │ │ ├── framing.css │ │ │ │ └── pretty.css │ │ │ │ ├── small-black │ │ │ │ ├── __base__ │ │ │ │ └── pretty.css │ │ │ │ └── small-white │ │ │ │ ├── framing.css │ │ │ │ └── pretty.css │ │ │ └── xetex │ │ │ └── __init__.py │ ├── idna-3.2.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE.md │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── top_level.txt │ ├── idna │ │ ├── __init__.py │ │ ├── codec.py │ │ ├── compat.py │ │ ├── core.py │ │ ├── idnadata.py │ │ ├── intranges.py │ │ ├── package_data.py │ │ ├── py.typed │ │ └── uts46data.py │ ├── imagesize-1.2.0.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE.rst │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── top_level.txt │ ├── imagesize.py │ ├── iniconfig-1.1.1.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── top_level.txt │ ├── iniconfig │ │ ├── __init__.py │ │ ├── __init__.pyi │ │ └── py.typed │ ├── jinja2 │ │ ├── __init__.py │ │ ├── _identifier.py │ │ ├── async_utils.py │ │ ├── bccache.py │ │ ├── compiler.py │ │ ├── constants.py │ │ ├── debug.py │ │ ├── defaults.py │ │ ├── environment.py │ │ ├── exceptions.py │ │ ├── ext.py │ │ ├── filters.py │ │ ├── idtracking.py │ │ ├── lexer.py │ │ ├── loaders.py │ │ ├── meta.py │ │ ├── nativetypes.py │ │ ├── nodes.py │ │ ├── optimizer.py │ │ ├── parser.py │ │ ├── py.typed │ │ ├── runtime.py │ │ ├── sandbox.py │ │ ├── tests.py │ │ ├── utils.py │ │ └── visitor.py │ ├── markupsafe │ │ ├── __init__.py │ │ ├── _native.py │ │ ├── _speedups.c │ │ ├── _speedups.cpython-39-darwin.so │ │ ├── _speedups.pyi │ │ └── py.typed │ ├── packaging-21.0.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── LICENSE.APACHE │ │ ├── LICENSE.BSD │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── top_level.txt │ ├── packaging │ │ ├── __about__.py │ │ ├── __init__.py │ │ ├── _manylinux.py │ │ ├── _musllinux.py │ │ ├── _structures.py │ │ ├── markers.py │ │ ├── py.typed │ │ ├── requirements.py │ │ ├── specifiers.py │ │ ├── tags.py │ │ ├── utils.py │ │ └── version.py │ ├── pkg_resources │ │ ├── __init__.py │ │ ├── _vendor │ │ │ ├── __init__.py │ │ │ ├── appdirs.py │ │ │ ├── packaging │ │ │ │ ├── __about__.py │ │ │ │ ├── __init__.py │ │ │ │ ├── _compat.py │ │ │ │ ├── _structures.py │ │ │ │ ├── _typing.py │ │ │ │ ├── markers.py │ │ │ │ ├── requirements.py │ │ │ │ ├── specifiers.py │ │ │ │ ├── tags.py │ │ │ │ ├── utils.py │ │ │ │ └── version.py │ │ │ └── pyparsing.py │ │ ├── extern │ │ │ └── __init__.py │ │ └── tests │ │ │ └── data │ │ │ └── my-test-package-source │ │ │ └── setup.py │ ├── pluggy-1.0.0.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── top_level.txt │ ├── pluggy │ │ ├── __init__.py │ │ ├── _callers.py │ │ ├── _hooks.py │ │ ├── _manager.py │ │ ├── _result.py │ │ ├── _tracing.py │ │ └── _version.py │ ├── py-1.10.0.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── top_level.txt │ ├── py │ │ ├── __init__.py │ │ ├── __init__.pyi │ │ ├── __metainfo.py │ │ ├── _builtin.py │ │ ├── _code │ │ │ ├── __init__.py │ │ │ ├── _assertionnew.py │ │ │ ├── _assertionold.py │ │ │ ├── _py2traceback.py │ │ │ ├── assertion.py │ │ │ ├── code.py │ │ │ └── source.py │ │ ├── _error.py │ │ ├── _io │ │ │ ├── __init__.py │ │ │ ├── capture.py │ │ │ ├── saferepr.py │ │ │ └── terminalwriter.py │ │ ├── _log │ │ │ ├── __init__.py │ │ │ ├── log.py │ │ │ └── warning.py │ │ ├── _path │ │ │ ├── __init__.py │ │ │ ├── cacheutil.py │ │ │ ├── common.py │ │ │ ├── local.py │ │ │ ├── svnurl.py │ │ │ └── svnwc.py │ │ ├── _process │ │ │ ├── __init__.py │ │ │ ├── cmdexec.py │ │ │ ├── forkedfunc.py │ │ │ └── killproc.py │ │ ├── _std.py │ │ ├── _vendored_packages │ │ │ ├── __init__.py │ │ │ ├── apipkg-1.5.dist-info │ │ │ │ ├── INSTALLER │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── REQUESTED │ │ │ │ ├── WHEEL │ │ │ │ └── top_level.txt │ │ │ ├── apipkg │ │ │ │ ├── __init__.py │ │ │ │ └── version.py │ │ │ ├── iniconfig-1.1.1.dist-info │ │ │ │ ├── INSTALLER │ │ │ │ ├── LICENSE │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── REQUESTED │ │ │ │ ├── WHEEL │ │ │ │ └── top_level.txt │ │ │ └── iniconfig │ │ │ │ ├── __init__.py │ │ │ │ ├── __init__.pyi │ │ │ │ └── py.typed │ │ ├── _version.py │ │ ├── _xmlgen.py │ │ ├── error.pyi │ │ ├── iniconfig.pyi │ │ ├── io.pyi │ │ ├── path.pyi │ │ ├── py.typed │ │ ├── test.py │ │ └── xml.pyi │ ├── pycodestyle-2.7.0.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── REQUESTED │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ ├── namespace_packages.txt │ │ └── top_level.txt │ ├── pycodestyle.py │ ├── pyflakes-2.3.1.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── REQUESTED │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ └── top_level.txt │ ├── pyflakes │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── api.py │ │ ├── checker.py │ │ ├── messages.py │ │ ├── reporter.py │ │ ├── scripts │ │ │ ├── __init__.py │ │ │ └── pyflakes.py │ │ └── test │ │ │ ├── __init__.py │ │ │ ├── harness.py │ │ │ ├── test_api.py │ │ │ ├── test_builtin.py │ │ │ ├── test_checker.py │ │ │ ├── test_code_segment.py │ │ │ ├── test_dict.py │ │ │ ├── test_doctests.py │ │ │ ├── test_imports.py │ │ │ ├── test_is_literal.py │ │ │ ├── test_other.py │ │ │ ├── test_return_with_arguments_inside_generator.py │ │ │ ├── test_type_annotations.py │ │ │ └── test_undefined_names.py │ ├── pygments │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── cmdline.py │ │ ├── console.py │ │ ├── filter.py │ │ ├── filters │ │ │ └── __init__.py │ │ ├── formatter.py │ │ ├── formatters │ │ │ ├── __init__.py │ │ │ ├── _mapping.py │ │ │ ├── bbcode.py │ │ │ ├── html.py │ │ │ ├── img.py │ │ │ ├── irc.py │ │ │ ├── latex.py │ │ │ ├── other.py │ │ │ ├── pangomarkup.py │ │ │ ├── rtf.py │ │ │ ├── svg.py │ │ │ ├── terminal.py │ │ │ └── terminal256.py │ │ ├── lexer.py │ │ ├── lexers │ │ │ ├── __init__.py │ │ │ ├── _asy_builtins.py │ │ │ ├── _cl_builtins.py │ │ │ ├── _cocoa_builtins.py │ │ │ ├── _csound_builtins.py │ │ │ ├── _julia_builtins.py │ │ │ ├── _lasso_builtins.py │ │ │ ├── _lua_builtins.py │ │ │ ├── _mapping.py │ │ │ ├── _mql_builtins.py │ │ │ ├── _mysql_builtins.py │ │ │ ├── _openedge_builtins.py │ │ │ ├── _php_builtins.py │ │ │ ├── _postgres_builtins.py │ │ │ ├── _scilab_builtins.py │ │ │ ├── _sourcemod_builtins.py │ │ │ ├── _stan_builtins.py │ │ │ ├── _stata_builtins.py │ │ │ ├── _tsql_builtins.py │ │ │ ├── _usd_builtins.py │ │ │ ├── _vbscript_builtins.py │ │ │ ├── _vim_builtins.py │ │ │ ├── actionscript.py │ │ │ ├── agile.py │ │ │ ├── algebra.py │ │ │ ├── ambient.py │ │ │ ├── amdgpu.py │ │ │ ├── ampl.py │ │ │ ├── apdlexer.py │ │ │ ├── apl.py │ │ │ ├── archetype.py │ │ │ ├── arrow.py │ │ │ ├── asc.py │ │ │ ├── asm.py │ │ │ ├── automation.py │ │ │ ├── bare.py │ │ │ ├── basic.py │ │ │ ├── bibtex.py │ │ │ ├── boa.py │ │ │ ├── business.py │ │ │ ├── c_cpp.py │ │ │ ├── c_like.py │ │ │ ├── capnproto.py │ │ │ ├── cddl.py │ │ │ ├── chapel.py │ │ │ ├── clean.py │ │ │ ├── compiled.py │ │ │ ├── configs.py │ │ │ ├── console.py │ │ │ ├── crystal.py │ │ │ ├── csound.py │ │ │ ├── css.py │ │ │ ├── d.py │ │ │ ├── dalvik.py │ │ │ ├── data.py │ │ │ ├── devicetree.py │ │ │ ├── diff.py │ │ │ ├── dotnet.py │ │ │ ├── dsls.py │ │ │ ├── dylan.py │ │ │ ├── ecl.py │ │ │ ├── eiffel.py │ │ │ ├── elm.py │ │ │ ├── email.py │ │ │ ├── erlang.py │ │ │ ├── esoteric.py │ │ │ ├── ezhil.py │ │ │ ├── factor.py │ │ │ ├── fantom.py │ │ │ ├── felix.py │ │ │ ├── floscript.py │ │ │ ├── forth.py │ │ │ ├── fortran.py │ │ │ ├── foxpro.py │ │ │ ├── freefem.py │ │ │ ├── functional.py │ │ │ ├── futhark.py │ │ │ ├── gcodelexer.py │ │ │ ├── gdscript.py │ │ │ ├── go.py │ │ │ ├── grammar_notation.py │ │ │ ├── graph.py │ │ │ ├── graphics.py │ │ │ ├── graphviz.py │ │ │ ├── gsql.py │ │ │ ├── haskell.py │ │ │ ├── haxe.py │ │ │ ├── hdl.py │ │ │ ├── hexdump.py │ │ │ ├── html.py │ │ │ ├── idl.py │ │ │ ├── igor.py │ │ │ ├── inferno.py │ │ │ ├── installers.py │ │ │ ├── int_fiction.py │ │ │ ├── iolang.py │ │ │ ├── j.py │ │ │ ├── javascript.py │ │ │ ├── jslt.py │ │ │ ├── julia.py │ │ │ ├── jvm.py │ │ │ ├── kuin.py │ │ │ ├── lisp.py │ │ │ ├── make.py │ │ │ ├── markup.py │ │ │ ├── math.py │ │ │ ├── matlab.py │ │ │ ├── meson.py │ │ │ ├── mime.py │ │ │ ├── ml.py │ │ │ ├── modeling.py │ │ │ ├── modula2.py │ │ │ ├── monte.py │ │ │ ├── mosel.py │ │ │ ├── ncl.py │ │ │ ├── nimrod.py │ │ │ ├── nit.py │ │ │ ├── nix.py │ │ │ ├── oberon.py │ │ │ ├── objective.py │ │ │ ├── ooc.py │ │ │ ├── other.py │ │ │ ├── parasail.py │ │ │ ├── parsers.py │ │ │ ├── pascal.py │ │ │ ├── pawn.py │ │ │ ├── perl.py │ │ │ ├── php.py │ │ │ ├── pointless.py │ │ │ ├── pony.py │ │ │ ├── praat.py │ │ │ ├── procfile.py │ │ │ ├── prolog.py │ │ │ ├── promql.py │ │ │ ├── python.py │ │ │ ├── qvt.py │ │ │ ├── r.py │ │ │ ├── rdf.py │ │ │ ├── rebol.py │ │ │ ├── resource.py │ │ │ ├── ride.py │ │ │ ├── rnc.py │ │ │ ├── roboconf.py │ │ │ ├── robotframework.py │ │ │ ├── ruby.py │ │ │ ├── rust.py │ │ │ ├── sas.py │ │ │ ├── scdoc.py │ │ │ ├── scripting.py │ │ │ ├── sgf.py │ │ │ ├── shell.py │ │ │ ├── sieve.py │ │ │ ├── slash.py │ │ │ ├── smalltalk.py │ │ │ ├── smithy.py │ │ │ ├── smv.py │ │ │ ├── snobol.py │ │ │ ├── solidity.py │ │ │ ├── special.py │ │ │ ├── sql.py │ │ │ ├── stata.py │ │ │ ├── supercollider.py │ │ │ ├── tcl.py │ │ │ ├── teal.py │ │ │ ├── templates.py │ │ │ ├── teraterm.py │ │ │ ├── testing.py │ │ │ ├── text.py │ │ │ ├── textedit.py │ │ │ ├── textfmts.py │ │ │ ├── theorem.py │ │ │ ├── thingsdb.py │ │ │ ├── tnt.py │ │ │ ├── trafficscript.py │ │ │ ├── typoscript.py │ │ │ ├── unicon.py │ │ │ ├── urbi.py │ │ │ ├── usd.py │ │ │ ├── varnish.py │ │ │ ├── verification.py │ │ │ ├── web.py │ │ │ ├── webassembly.py │ │ │ ├── webidl.py │ │ │ ├── webmisc.py │ │ │ ├── whiley.py │ │ │ ├── x10.py │ │ │ ├── xorg.py │ │ │ ├── yang.py │ │ │ └── zig.py │ │ ├── modeline.py │ │ ├── plugin.py │ │ ├── regexopt.py │ │ ├── scanner.py │ │ ├── sphinxext.py │ │ ├── style.py │ │ ├── styles │ │ │ ├── __init__.py │ │ │ ├── abap.py │ │ │ ├── algol.py │ │ │ ├── algol_nu.py │ │ │ ├── arduino.py │ │ │ ├── autumn.py │ │ │ ├── borland.py │ │ │ ├── bw.py │ │ │ ├── colorful.py │ │ │ ├── default.py │ │ │ ├── emacs.py │ │ │ ├── friendly.py │ │ │ ├── fruity.py │ │ │ ├── gruvbox.py │ │ │ ├── igor.py │ │ │ ├── inkpot.py │ │ │ ├── lovelace.py │ │ │ ├── manni.py │ │ │ ├── material.py │ │ │ ├── monokai.py │ │ │ ├── murphy.py │ │ │ ├── native.py │ │ │ ├── paraiso_dark.py │ │ │ ├── paraiso_light.py │ │ │ ├── pastie.py │ │ │ ├── perldoc.py │ │ │ ├── rainbow_dash.py │ │ │ ├── rrt.py │ │ │ ├── sas.py │ │ │ ├── solarized.py │ │ │ ├── stata_dark.py │ │ │ ├── stata_light.py │ │ │ ├── tango.py │ │ │ ├── trac.py │ │ │ ├── vim.py │ │ │ ├── vs.py │ │ │ ├── xcode.py │ │ │ └── zenburn.py │ │ ├── token.py │ │ ├── unistring.py │ │ └── util.py │ ├── pyparsing-2.4.7.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── top_level.txt │ ├── pyparsing.py │ ├── pyserial-3.0.1.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE.txt │ │ ├── METADATA │ │ ├── RECORD │ │ ├── REQUESTED │ │ ├── WHEEL │ │ └── top_level.txt │ ├── pyserial-3.5.dist-info │ │ ├── DESCRIPTION.rst │ │ ├── INSTALLER │ │ ├── METADATA │ │ ├── RECORD │ │ ├── REQUESTED │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ ├── metadata.json │ │ └── top_level.txt │ ├── pytest-6.2.5.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── REQUESTED │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ └── top_level.txt │ ├── pytest-cov.pth │ ├── pytest │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── collect.py │ │ └── py.typed │ ├── pytest_cov-2.12.1.dist-info │ │ ├── AUTHORS.rst │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── REQUESTED │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ └── top_level.txt │ ├── pytest_cov │ │ ├── __init__.py │ │ ├── compat.py │ │ ├── embed.py │ │ ├── engine.py │ │ └── plugin.py │ ├── pytz-2021.1.dist-info │ │ ├── DESCRIPTION.rst │ │ ├── INSTALLER │ │ ├── LICENSE.txt │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── metadata.json │ │ ├── top_level.txt │ │ └── zip-safe │ ├── pytz │ │ ├── __init__.py │ │ ├── exceptions.py │ │ ├── lazy.py │ │ ├── reference.py │ │ ├── tzfile.py │ │ ├── tzinfo.py │ │ └── zoneinfo │ │ │ ├── Africa │ │ │ ├── Abidjan │ │ │ ├── Accra │ │ │ ├── Addis_Ababa │ │ │ ├── Algiers │ │ │ ├── Asmara │ │ │ ├── Asmera │ │ │ ├── Bamako │ │ │ ├── Bangui │ │ │ ├── Banjul │ │ │ ├── Bissau │ │ │ ├── Blantyre │ │ │ ├── Brazzaville │ │ │ ├── Bujumbura │ │ │ ├── Cairo │ │ │ ├── Casablanca │ │ │ ├── Ceuta │ │ │ ├── Conakry │ │ │ ├── Dakar │ │ │ ├── Dar_es_Salaam │ │ │ ├── Djibouti │ │ │ ├── Douala │ │ │ ├── El_Aaiun │ │ │ ├── Freetown │ │ │ ├── Gaborone │ │ │ ├── Harare │ │ │ ├── Johannesburg │ │ │ ├── Juba │ │ │ ├── Kampala │ │ │ ├── Khartoum │ │ │ ├── Kigali │ │ │ ├── Kinshasa │ │ │ ├── Lagos │ │ │ ├── Libreville │ │ │ ├── Lome │ │ │ ├── Luanda │ │ │ ├── Lubumbashi │ │ │ ├── Lusaka │ │ │ ├── Malabo │ │ │ ├── Maputo │ │ │ ├── Maseru │ │ │ ├── Mbabane │ │ │ ├── Mogadishu │ │ │ ├── Monrovia │ │ │ ├── Nairobi │ │ │ ├── Ndjamena │ │ │ ├── Niamey │ │ │ ├── Nouakchott │ │ │ ├── Ouagadougou │ │ │ ├── Porto-Novo │ │ │ ├── Sao_Tome │ │ │ ├── Timbuktu │ │ │ ├── Tripoli │ │ │ ├── Tunis │ │ │ └── Windhoek │ │ │ ├── America │ │ │ ├── Adak │ │ │ ├── Anchorage │ │ │ ├── Anguilla │ │ │ ├── Antigua │ │ │ ├── Araguaina │ │ │ ├── Argentina │ │ │ │ ├── Buenos_Aires │ │ │ │ ├── Catamarca │ │ │ │ ├── ComodRivadavia │ │ │ │ ├── Cordoba │ │ │ │ ├── Jujuy │ │ │ │ ├── La_Rioja │ │ │ │ ├── Mendoza │ │ │ │ ├── Rio_Gallegos │ │ │ │ ├── Salta │ │ │ │ ├── San_Juan │ │ │ │ ├── San_Luis │ │ │ │ ├── Tucuman │ │ │ │ └── Ushuaia │ │ │ ├── Aruba │ │ │ ├── Asuncion │ │ │ ├── Atikokan │ │ │ ├── Atka │ │ │ ├── Bahia │ │ │ ├── Bahia_Banderas │ │ │ ├── Barbados │ │ │ ├── Belem │ │ │ ├── Belize │ │ │ ├── Blanc-Sablon │ │ │ ├── Boa_Vista │ │ │ ├── Bogota │ │ │ ├── Boise │ │ │ ├── Buenos_Aires │ │ │ ├── Cambridge_Bay │ │ │ ├── Campo_Grande │ │ │ ├── Cancun │ │ │ ├── Caracas │ │ │ ├── Catamarca │ │ │ ├── Cayenne │ │ │ ├── Cayman │ │ │ ├── Chicago │ │ │ ├── Chihuahua │ │ │ ├── Coral_Harbour │ │ │ ├── Cordoba │ │ │ ├── Costa_Rica │ │ │ ├── Creston │ │ │ ├── Cuiaba │ │ │ ├── Curacao │ │ │ ├── Danmarkshavn │ │ │ ├── Dawson │ │ │ ├── Dawson_Creek │ │ │ ├── Denver │ │ │ ├── Detroit │ │ │ ├── Dominica │ │ │ ├── Edmonton │ │ │ ├── Eirunepe │ │ │ ├── El_Salvador │ │ │ ├── Ensenada │ │ │ ├── Fort_Nelson │ │ │ ├── Fort_Wayne │ │ │ ├── Fortaleza │ │ │ ├── Glace_Bay │ │ │ ├── Godthab │ │ │ ├── Goose_Bay │ │ │ ├── Grand_Turk │ │ │ ├── Grenada │ │ │ ├── Guadeloupe │ │ │ ├── Guatemala │ │ │ ├── Guayaquil │ │ │ ├── Guyana │ │ │ ├── Halifax │ │ │ ├── Havana │ │ │ ├── Hermosillo │ │ │ ├── Indiana │ │ │ │ ├── Indianapolis │ │ │ │ ├── Knox │ │ │ │ ├── Marengo │ │ │ │ ├── Petersburg │ │ │ │ ├── Tell_City │ │ │ │ ├── Vevay │ │ │ │ ├── Vincennes │ │ │ │ └── Winamac │ │ │ ├── Indianapolis │ │ │ ├── Inuvik │ │ │ ├── Iqaluit │ │ │ ├── Jamaica │ │ │ ├── Jujuy │ │ │ ├── Juneau │ │ │ ├── Kentucky │ │ │ │ ├── Louisville │ │ │ │ └── Monticello │ │ │ ├── Knox_IN │ │ │ ├── Kralendijk │ │ │ ├── La_Paz │ │ │ ├── Lima │ │ │ ├── Los_Angeles │ │ │ ├── Louisville │ │ │ ├── Lower_Princes │ │ │ ├── Maceio │ │ │ ├── Managua │ │ │ ├── Manaus │ │ │ ├── Marigot │ │ │ ├── Martinique │ │ │ ├── Matamoros │ │ │ ├── Mazatlan │ │ │ ├── Mendoza │ │ │ ├── Menominee │ │ │ ├── Merida │ │ │ ├── Metlakatla │ │ │ ├── Mexico_City │ │ │ ├── Miquelon │ │ │ ├── Moncton │ │ │ ├── Monterrey │ │ │ ├── Montevideo │ │ │ ├── Montreal │ │ │ ├── Montserrat │ │ │ ├── Nassau │ │ │ ├── New_York │ │ │ ├── Nipigon │ │ │ ├── Nome │ │ │ ├── Noronha │ │ │ ├── North_Dakota │ │ │ │ ├── Beulah │ │ │ │ ├── Center │ │ │ │ └── New_Salem │ │ │ ├── Nuuk │ │ │ ├── Ojinaga │ │ │ ├── Panama │ │ │ ├── Pangnirtung │ │ │ ├── Paramaribo │ │ │ ├── Phoenix │ │ │ ├── Port-au-Prince │ │ │ ├── Port_of_Spain │ │ │ ├── Porto_Acre │ │ │ ├── Porto_Velho │ │ │ ├── Puerto_Rico │ │ │ ├── Punta_Arenas │ │ │ ├── Rainy_River │ │ │ ├── Rankin_Inlet │ │ │ ├── Recife │ │ │ ├── Regina │ │ │ ├── Resolute │ │ │ ├── Rio_Branco │ │ │ ├── Rosario │ │ │ ├── Santa_Isabel │ │ │ ├── Santarem │ │ │ ├── Santiago │ │ │ ├── Santo_Domingo │ │ │ ├── Sao_Paulo │ │ │ ├── Scoresbysund │ │ │ ├── Shiprock │ │ │ ├── Sitka │ │ │ ├── St_Barthelemy │ │ │ ├── St_Johns │ │ │ ├── St_Kitts │ │ │ ├── St_Lucia │ │ │ ├── St_Thomas │ │ │ ├── St_Vincent │ │ │ ├── Swift_Current │ │ │ ├── Tegucigalpa │ │ │ ├── Thule │ │ │ ├── Thunder_Bay │ │ │ ├── Tijuana │ │ │ ├── Toronto │ │ │ ├── Tortola │ │ │ ├── Vancouver │ │ │ ├── Virgin │ │ │ ├── Whitehorse │ │ │ ├── Winnipeg │ │ │ ├── Yakutat │ │ │ └── Yellowknife │ │ │ ├── Antarctica │ │ │ ├── Casey │ │ │ ├── Davis │ │ │ ├── DumontDUrville │ │ │ ├── Macquarie │ │ │ ├── Mawson │ │ │ ├── McMurdo │ │ │ ├── Palmer │ │ │ ├── Rothera │ │ │ ├── South_Pole │ │ │ ├── Syowa │ │ │ ├── Troll │ │ │ └── Vostok │ │ │ ├── Arctic │ │ │ └── Longyearbyen │ │ │ ├── Asia │ │ │ ├── Aden │ │ │ ├── Almaty │ │ │ ├── Amman │ │ │ ├── Anadyr │ │ │ ├── Aqtau │ │ │ ├── Aqtobe │ │ │ ├── Ashgabat │ │ │ ├── Ashkhabad │ │ │ ├── Atyrau │ │ │ ├── Baghdad │ │ │ ├── Bahrain │ │ │ ├── Baku │ │ │ ├── Bangkok │ │ │ ├── Barnaul │ │ │ ├── Beirut │ │ │ ├── Bishkek │ │ │ ├── Brunei │ │ │ ├── Calcutta │ │ │ ├── Chita │ │ │ ├── Choibalsan │ │ │ ├── Chongqing │ │ │ ├── Chungking │ │ │ ├── Colombo │ │ │ ├── Dacca │ │ │ ├── Damascus │ │ │ ├── Dhaka │ │ │ ├── Dili │ │ │ ├── Dubai │ │ │ ├── Dushanbe │ │ │ ├── Famagusta │ │ │ ├── Gaza │ │ │ ├── Harbin │ │ │ ├── Hebron │ │ │ ├── Ho_Chi_Minh │ │ │ ├── Hong_Kong │ │ │ ├── Hovd │ │ │ ├── Irkutsk │ │ │ ├── Istanbul │ │ │ ├── Jakarta │ │ │ ├── Jayapura │ │ │ ├── Jerusalem │ │ │ ├── Kabul │ │ │ ├── Kamchatka │ │ │ ├── Karachi │ │ │ ├── Kashgar │ │ │ ├── Kathmandu │ │ │ ├── Katmandu │ │ │ ├── Khandyga │ │ │ ├── Kolkata │ │ │ ├── Krasnoyarsk │ │ │ ├── Kuala_Lumpur │ │ │ ├── Kuching │ │ │ ├── Kuwait │ │ │ ├── Macao │ │ │ ├── Macau │ │ │ ├── Magadan │ │ │ ├── Makassar │ │ │ ├── Manila │ │ │ ├── Muscat │ │ │ ├── Nicosia │ │ │ ├── Novokuznetsk │ │ │ ├── Novosibirsk │ │ │ ├── Omsk │ │ │ ├── Oral │ │ │ ├── Phnom_Penh │ │ │ ├── Pontianak │ │ │ ├── Pyongyang │ │ │ ├── Qatar │ │ │ ├── Qostanay │ │ │ ├── Qyzylorda │ │ │ ├── Rangoon │ │ │ ├── Riyadh │ │ │ ├── Saigon │ │ │ ├── Sakhalin │ │ │ ├── Samarkand │ │ │ ├── Seoul │ │ │ ├── Shanghai │ │ │ ├── Singapore │ │ │ ├── Srednekolymsk │ │ │ ├── Taipei │ │ │ ├── Tashkent │ │ │ ├── Tbilisi │ │ │ ├── Tehran │ │ │ ├── Tel_Aviv │ │ │ ├── Thimbu │ │ │ ├── Thimphu │ │ │ ├── Tokyo │ │ │ ├── Tomsk │ │ │ ├── Ujung_Pandang │ │ │ ├── Ulaanbaatar │ │ │ ├── Ulan_Bator │ │ │ ├── Urumqi │ │ │ ├── Ust-Nera │ │ │ ├── Vientiane │ │ │ ├── Vladivostok │ │ │ ├── Yakutsk │ │ │ ├── Yangon │ │ │ ├── Yekaterinburg │ │ │ └── Yerevan │ │ │ ├── Atlantic │ │ │ ├── Azores │ │ │ ├── Bermuda │ │ │ ├── Canary │ │ │ ├── Cape_Verde │ │ │ ├── Faeroe │ │ │ ├── Faroe │ │ │ ├── Jan_Mayen │ │ │ ├── Madeira │ │ │ ├── Reykjavik │ │ │ ├── South_Georgia │ │ │ ├── St_Helena │ │ │ └── Stanley │ │ │ ├── Australia │ │ │ ├── ACT │ │ │ ├── Adelaide │ │ │ ├── Brisbane │ │ │ ├── Broken_Hill │ │ │ ├── Canberra │ │ │ ├── Currie │ │ │ ├── Darwin │ │ │ ├── Eucla │ │ │ ├── Hobart │ │ │ ├── LHI │ │ │ ├── Lindeman │ │ │ ├── Lord_Howe │ │ │ ├── Melbourne │ │ │ ├── NSW │ │ │ ├── North │ │ │ ├── Perth │ │ │ ├── Queensland │ │ │ ├── South │ │ │ ├── Sydney │ │ │ ├── Tasmania │ │ │ ├── Victoria │ │ │ ├── West │ │ │ └── Yancowinna │ │ │ ├── Brazil │ │ │ ├── Acre │ │ │ ├── DeNoronha │ │ │ ├── East │ │ │ └── West │ │ │ ├── CET │ │ │ ├── CST6CDT │ │ │ ├── Canada │ │ │ ├── Atlantic │ │ │ ├── Central │ │ │ ├── Eastern │ │ │ ├── Mountain │ │ │ ├── Newfoundland │ │ │ ├── Pacific │ │ │ ├── Saskatchewan │ │ │ └── Yukon │ │ │ ├── Chile │ │ │ ├── Continental │ │ │ └── EasterIsland │ │ │ ├── Cuba │ │ │ ├── EET │ │ │ ├── EST │ │ │ ├── EST5EDT │ │ │ ├── Egypt │ │ │ ├── Eire │ │ │ ├── Etc │ │ │ ├── GMT │ │ │ ├── GMT+0 │ │ │ ├── GMT+1 │ │ │ ├── GMT+10 │ │ │ ├── GMT+11 │ │ │ ├── GMT+12 │ │ │ ├── GMT+2 │ │ │ ├── GMT+3 │ │ │ ├── GMT+4 │ │ │ ├── GMT+5 │ │ │ ├── GMT+6 │ │ │ ├── GMT+7 │ │ │ ├── GMT+8 │ │ │ ├── GMT+9 │ │ │ ├── GMT-0 │ │ │ ├── GMT-1 │ │ │ ├── GMT-10 │ │ │ ├── GMT-11 │ │ │ ├── GMT-12 │ │ │ ├── GMT-13 │ │ │ ├── GMT-14 │ │ │ ├── GMT-2 │ │ │ ├── GMT-3 │ │ │ ├── GMT-4 │ │ │ ├── GMT-5 │ │ │ ├── GMT-6 │ │ │ ├── GMT-7 │ │ │ ├── GMT-8 │ │ │ ├── GMT-9 │ │ │ ├── GMT0 │ │ │ ├── Greenwich │ │ │ ├── UCT │ │ │ ├── UTC │ │ │ ├── Universal │ │ │ └── Zulu │ │ │ ├── Europe │ │ │ ├── Amsterdam │ │ │ ├── Andorra │ │ │ ├── Astrakhan │ │ │ ├── Athens │ │ │ ├── Belfast │ │ │ ├── Belgrade │ │ │ ├── Berlin │ │ │ ├── Bratislava │ │ │ ├── Brussels │ │ │ ├── Bucharest │ │ │ ├── Budapest │ │ │ ├── Busingen │ │ │ ├── Chisinau │ │ │ ├── Copenhagen │ │ │ ├── Dublin │ │ │ ├── Gibraltar │ │ │ ├── Guernsey │ │ │ ├── Helsinki │ │ │ ├── Isle_of_Man │ │ │ ├── Istanbul │ │ │ ├── Jersey │ │ │ ├── Kaliningrad │ │ │ ├── Kiev │ │ │ ├── Kirov │ │ │ ├── Lisbon │ │ │ ├── Ljubljana │ │ │ ├── London │ │ │ ├── Luxembourg │ │ │ ├── Madrid │ │ │ ├── Malta │ │ │ ├── Mariehamn │ │ │ ├── Minsk │ │ │ ├── Monaco │ │ │ ├── Moscow │ │ │ ├── Nicosia │ │ │ ├── Oslo │ │ │ ├── Paris │ │ │ ├── Podgorica │ │ │ ├── Prague │ │ │ ├── Riga │ │ │ ├── Rome │ │ │ ├── Samara │ │ │ ├── San_Marino │ │ │ ├── Sarajevo │ │ │ ├── Saratov │ │ │ ├── Simferopol │ │ │ ├── Skopje │ │ │ ├── Sofia │ │ │ ├── Stockholm │ │ │ ├── Tallinn │ │ │ ├── Tirane │ │ │ ├── Tiraspol │ │ │ ├── Ulyanovsk │ │ │ ├── Uzhgorod │ │ │ ├── Vaduz │ │ │ ├── Vatican │ │ │ ├── Vienna │ │ │ ├── Vilnius │ │ │ ├── Volgograd │ │ │ ├── Warsaw │ │ │ ├── Zagreb │ │ │ ├── Zaporozhye │ │ │ └── Zurich │ │ │ ├── Factory │ │ │ ├── GB │ │ │ ├── GB-Eire │ │ │ ├── GMT │ │ │ ├── GMT+0 │ │ │ ├── GMT-0 │ │ │ ├── GMT0 │ │ │ ├── Greenwich │ │ │ ├── HST │ │ │ ├── Hongkong │ │ │ ├── Iceland │ │ │ ├── Indian │ │ │ ├── Antananarivo │ │ │ ├── Chagos │ │ │ ├── Christmas │ │ │ ├── Cocos │ │ │ ├── Comoro │ │ │ ├── Kerguelen │ │ │ ├── Mahe │ │ │ ├── Maldives │ │ │ ├── Mauritius │ │ │ ├── Mayotte │ │ │ └── Reunion │ │ │ ├── Iran │ │ │ ├── Israel │ │ │ ├── Jamaica │ │ │ ├── Japan │ │ │ ├── Kwajalein │ │ │ ├── Libya │ │ │ ├── MET │ │ │ ├── MST │ │ │ ├── MST7MDT │ │ │ ├── Mexico │ │ │ ├── BajaNorte │ │ │ ├── BajaSur │ │ │ └── General │ │ │ ├── NZ │ │ │ ├── NZ-CHAT │ │ │ ├── Navajo │ │ │ ├── PRC │ │ │ ├── PST8PDT │ │ │ ├── Pacific │ │ │ ├── Apia │ │ │ ├── Auckland │ │ │ ├── Bougainville │ │ │ ├── Chatham │ │ │ ├── Chuuk │ │ │ ├── Easter │ │ │ ├── Efate │ │ │ ├── Enderbury │ │ │ ├── Fakaofo │ │ │ ├── Fiji │ │ │ ├── Funafuti │ │ │ ├── Galapagos │ │ │ ├── Gambier │ │ │ ├── Guadalcanal │ │ │ ├── Guam │ │ │ ├── Honolulu │ │ │ ├── Johnston │ │ │ ├── Kiritimati │ │ │ ├── Kosrae │ │ │ ├── Kwajalein │ │ │ ├── Majuro │ │ │ ├── Marquesas │ │ │ ├── Midway │ │ │ ├── Nauru │ │ │ ├── Niue │ │ │ ├── Norfolk │ │ │ ├── Noumea │ │ │ ├── Pago_Pago │ │ │ ├── Palau │ │ │ ├── Pitcairn │ │ │ ├── Pohnpei │ │ │ ├── Ponape │ │ │ ├── Port_Moresby │ │ │ ├── Rarotonga │ │ │ ├── Saipan │ │ │ ├── Samoa │ │ │ ├── Tahiti │ │ │ ├── Tarawa │ │ │ ├── Tongatapu │ │ │ ├── Truk │ │ │ ├── Wake │ │ │ ├── Wallis │ │ │ └── Yap │ │ │ ├── Poland │ │ │ ├── Portugal │ │ │ ├── ROC │ │ │ ├── ROK │ │ │ ├── Singapore │ │ │ ├── Turkey │ │ │ ├── UCT │ │ │ ├── US │ │ │ ├── Alaska │ │ │ ├── Aleutian │ │ │ ├── Arizona │ │ │ ├── Central │ │ │ ├── East-Indiana │ │ │ ├── Eastern │ │ │ ├── Hawaii │ │ │ ├── Indiana-Starke │ │ │ ├── Michigan │ │ │ ├── Mountain │ │ │ ├── Pacific │ │ │ └── Samoa │ │ │ ├── UTC │ │ │ ├── Universal │ │ │ ├── W-SU │ │ │ ├── WET │ │ │ ├── Zulu │ │ │ ├── iso3166.tab │ │ │ ├── leapseconds │ │ │ ├── tzdata.zi │ │ │ ├── zone.tab │ │ │ └── zone1970.tab │ ├── requests-2.26.0.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── top_level.txt │ ├── requests │ │ ├── __init__.py │ │ ├── __version__.py │ │ ├── _internal_utils.py │ │ ├── adapters.py │ │ ├── api.py │ │ ├── auth.py │ │ ├── certs.py │ │ ├── compat.py │ │ ├── cookies.py │ │ ├── exceptions.py │ │ ├── help.py │ │ ├── hooks.py │ │ ├── models.py │ │ ├── packages.py │ │ ├── sessions.py │ │ ├── status_codes.py │ │ ├── structures.py │ │ └── utils.py │ ├── serial │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── rfc2217.py │ │ ├── rs485.py │ │ ├── serialcli.py │ │ ├── serialjava.py │ │ ├── serialposix.py │ │ ├── serialutil.py │ │ ├── serialwin32.py │ │ ├── threaded │ │ │ └── __init__.py │ │ ├── tools │ │ │ ├── __init__.py │ │ │ ├── hexlify_codec.py │ │ │ ├── list_ports.py │ │ │ ├── list_ports_common.py │ │ │ ├── list_ports_linux.py │ │ │ ├── list_ports_osx.py │ │ │ ├── list_ports_posix.py │ │ │ ├── list_ports_windows.py │ │ │ └── miniterm.py │ │ ├── urlhandler │ │ │ ├── __init__.py │ │ │ ├── protocol_alt.py │ │ │ ├── protocol_cp2110.py │ │ │ ├── protocol_hwgrep.py │ │ │ ├── protocol_loop.py │ │ │ ├── protocol_rfc2217.py │ │ │ ├── protocol_socket.py │ │ │ └── protocol_spy.py │ │ └── win32.py │ ├── setuptools-58.0.0.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ └── top_level.txt │ ├── setuptools │ │ ├── __init__.py │ │ ├── _deprecation_warning.py │ │ ├── _distutils │ │ │ ├── __init__.py │ │ │ ├── _msvccompiler.py │ │ │ ├── archive_util.py │ │ │ ├── bcppcompiler.py │ │ │ ├── ccompiler.py │ │ │ ├── cmd.py │ │ │ ├── command │ │ │ │ ├── __init__.py │ │ │ │ ├── bdist.py │ │ │ │ ├── bdist_dumb.py │ │ │ │ ├── bdist_msi.py │ │ │ │ ├── bdist_rpm.py │ │ │ │ ├── bdist_wininst.py │ │ │ │ ├── build.py │ │ │ │ ├── build_clib.py │ │ │ │ ├── build_ext.py │ │ │ │ ├── build_py.py │ │ │ │ ├── build_scripts.py │ │ │ │ ├── check.py │ │ │ │ ├── clean.py │ │ │ │ ├── config.py │ │ │ │ ├── install.py │ │ │ │ ├── install_data.py │ │ │ │ ├── install_egg_info.py │ │ │ │ ├── install_headers.py │ │ │ │ ├── install_lib.py │ │ │ │ ├── install_scripts.py │ │ │ │ ├── py37compat.py │ │ │ │ ├── register.py │ │ │ │ ├── sdist.py │ │ │ │ └── upload.py │ │ │ ├── config.py │ │ │ ├── core.py │ │ │ ├── cygwinccompiler.py │ │ │ ├── debug.py │ │ │ ├── dep_util.py │ │ │ ├── dir_util.py │ │ │ ├── dist.py │ │ │ ├── errors.py │ │ │ ├── extension.py │ │ │ ├── fancy_getopt.py │ │ │ ├── file_util.py │ │ │ ├── filelist.py │ │ │ ├── log.py │ │ │ ├── msvc9compiler.py │ │ │ ├── msvccompiler.py │ │ │ ├── py35compat.py │ │ │ ├── py38compat.py │ │ │ ├── spawn.py │ │ │ ├── sysconfig.py │ │ │ ├── text_file.py │ │ │ ├── unixccompiler.py │ │ │ ├── util.py │ │ │ ├── version.py │ │ │ └── versionpredicate.py │ │ ├── _imp.py │ │ ├── _vendor │ │ │ ├── __init__.py │ │ │ ├── more_itertools │ │ │ │ ├── __init__.py │ │ │ │ ├── more.py │ │ │ │ └── recipes.py │ │ │ ├── ordered_set.py │ │ │ ├── packaging │ │ │ │ ├── __about__.py │ │ │ │ ├── __init__.py │ │ │ │ ├── _compat.py │ │ │ │ ├── _structures.py │ │ │ │ ├── _typing.py │ │ │ │ ├── markers.py │ │ │ │ ├── requirements.py │ │ │ │ ├── specifiers.py │ │ │ │ ├── tags.py │ │ │ │ ├── utils.py │ │ │ │ └── version.py │ │ │ └── pyparsing.py │ │ ├── archive_util.py │ │ ├── build_meta.py │ │ ├── cli-32.exe │ │ ├── cli-64.exe │ │ ├── cli.exe │ │ ├── command │ │ │ ├── __init__.py │ │ │ ├── alias.py │ │ │ ├── bdist_egg.py │ │ │ ├── bdist_rpm.py │ │ │ ├── build_clib.py │ │ │ ├── build_ext.py │ │ │ ├── build_py.py │ │ │ ├── develop.py │ │ │ ├── dist_info.py │ │ │ ├── easy_install.py │ │ │ ├── egg_info.py │ │ │ ├── install.py │ │ │ ├── install_egg_info.py │ │ │ ├── install_lib.py │ │ │ ├── install_scripts.py │ │ │ ├── launcher manifest.xml │ │ │ ├── py36compat.py │ │ │ ├── register.py │ │ │ ├── rotate.py │ │ │ ├── saveopts.py │ │ │ ├── sdist.py │ │ │ ├── setopt.py │ │ │ ├── test.py │ │ │ ├── upload.py │ │ │ └── upload_docs.py │ │ ├── config.py │ │ ├── dep_util.py │ │ ├── depends.py │ │ ├── dist.py │ │ ├── errors.py │ │ ├── extension.py │ │ ├── extern │ │ │ └── __init__.py │ │ ├── glob.py │ │ ├── gui-32.exe │ │ ├── gui-64.exe │ │ ├── gui.exe │ │ ├── installer.py │ │ ├── launch.py │ │ ├── monkey.py │ │ ├── msvc.py │ │ ├── namespaces.py │ │ ├── package_index.py │ │ ├── py34compat.py │ │ ├── sandbox.py │ │ ├── script (dev).tmpl │ │ ├── script.tmpl │ │ ├── unicode_utils.py │ │ ├── version.py │ │ ├── wheel.py │ │ └── windows_support.py │ ├── snowballstemmer-2.1.0.dist-info │ │ ├── COPYING │ │ ├── INSTALLER │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── top_level.txt │ ├── snowballstemmer │ │ ├── __init__.py │ │ ├── among.py │ │ ├── arabic_stemmer.py │ │ ├── armenian_stemmer.py │ │ ├── basestemmer.py │ │ ├── basque_stemmer.py │ │ ├── catalan_stemmer.py │ │ ├── danish_stemmer.py │ │ ├── dutch_stemmer.py │ │ ├── english_stemmer.py │ │ ├── finnish_stemmer.py │ │ ├── french_stemmer.py │ │ ├── german_stemmer.py │ │ ├── greek_stemmer.py │ │ ├── hindi_stemmer.py │ │ ├── hungarian_stemmer.py │ │ ├── indonesian_stemmer.py │ │ ├── irish_stemmer.py │ │ ├── italian_stemmer.py │ │ ├── lithuanian_stemmer.py │ │ ├── nepali_stemmer.py │ │ ├── norwegian_stemmer.py │ │ ├── porter_stemmer.py │ │ ├── portuguese_stemmer.py │ │ ├── romanian_stemmer.py │ │ ├── russian_stemmer.py │ │ ├── serbian_stemmer.py │ │ ├── spanish_stemmer.py │ │ ├── swedish_stemmer.py │ │ ├── tamil_stemmer.py │ │ ├── turkish_stemmer.py │ │ └── yiddish_stemmer.py │ ├── sphinx │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── addnodes.py │ │ ├── application.py │ │ ├── builders │ │ │ ├── __init__.py │ │ │ ├── _epub_base.py │ │ │ ├── changes.py │ │ │ ├── dirhtml.py │ │ │ ├── dummy.py │ │ │ ├── epub3.py │ │ │ ├── gettext.py │ │ │ ├── html │ │ │ │ ├── __init__.py │ │ │ │ └── transforms.py │ │ │ ├── latex │ │ │ │ ├── __init__.py │ │ │ │ ├── constants.py │ │ │ │ ├── nodes.py │ │ │ │ ├── theming.py │ │ │ │ ├── transforms.py │ │ │ │ └── util.py │ │ │ ├── linkcheck.py │ │ │ ├── manpage.py │ │ │ ├── singlehtml.py │ │ │ ├── texinfo.py │ │ │ ├── text.py │ │ │ └── xml.py │ │ ├── cmd │ │ │ ├── __init__.py │ │ │ ├── build.py │ │ │ ├── make_mode.py │ │ │ └── quickstart.py │ │ ├── config.py │ │ ├── deprecation.py │ │ ├── directives │ │ │ ├── __init__.py │ │ │ ├── code.py │ │ │ ├── other.py │ │ │ └── patches.py │ │ ├── domains │ │ │ ├── __init__.py │ │ │ ├── c.py │ │ │ ├── changeset.py │ │ │ ├── citation.py │ │ │ ├── cpp.py │ │ │ ├── index.py │ │ │ ├── javascript.py │ │ │ ├── math.py │ │ │ ├── python.py │ │ │ ├── rst.py │ │ │ └── std.py │ │ ├── environment │ │ │ ├── __init__.py │ │ │ ├── adapters │ │ │ │ ├── __init__.py │ │ │ │ ├── asset.py │ │ │ │ ├── indexentries.py │ │ │ │ └── toctree.py │ │ │ └── collectors │ │ │ │ ├── __init__.py │ │ │ │ ├── asset.py │ │ │ │ ├── dependencies.py │ │ │ │ ├── metadata.py │ │ │ │ ├── title.py │ │ │ │ └── toctree.py │ │ ├── errors.py │ │ ├── events.py │ │ ├── ext │ │ │ ├── __init__.py │ │ │ ├── apidoc.py │ │ │ ├── autodoc │ │ │ │ ├── __init__.py │ │ │ │ ├── deprecated.py │ │ │ │ ├── directive.py │ │ │ │ ├── importer.py │ │ │ │ ├── mock.py │ │ │ │ ├── preserve_defaults.py │ │ │ │ ├── type_comment.py │ │ │ │ └── typehints.py │ │ │ ├── autosectionlabel.py │ │ │ ├── autosummary │ │ │ │ ├── __init__.py │ │ │ │ ├── generate.py │ │ │ │ └── templates │ │ │ │ │ └── autosummary │ │ │ │ │ ├── base.rst │ │ │ │ │ ├── class.rst │ │ │ │ │ └── module.rst │ │ │ ├── coverage.py │ │ │ ├── doctest.py │ │ │ ├── duration.py │ │ │ ├── extlinks.py │ │ │ ├── githubpages.py │ │ │ ├── graphviz.py │ │ │ ├── ifconfig.py │ │ │ ├── imgconverter.py │ │ │ ├── imgmath.py │ │ │ ├── inheritance_diagram.py │ │ │ ├── intersphinx.py │ │ │ ├── linkcode.py │ │ │ ├── mathjax.py │ │ │ ├── napoleon │ │ │ │ ├── __init__.py │ │ │ │ ├── docstring.py │ │ │ │ └── iterators.py │ │ │ ├── todo.py │ │ │ └── viewcode.py │ │ ├── extension.py │ │ ├── highlighting.py │ │ ├── io.py │ │ ├── jinja2glue.py │ │ ├── locale │ │ │ ├── __init__.py │ │ │ ├── ar │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinx.js │ │ │ │ │ ├── sphinx.mo │ │ │ │ │ └── sphinx.po │ │ │ ├── bg │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinx.js │ │ │ │ │ ├── sphinx.mo │ │ │ │ │ └── sphinx.po │ │ │ ├── bn │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinx.js │ │ │ │ │ ├── sphinx.mo │ │ │ │ │ └── sphinx.po │ │ │ ├── ca │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinx.js │ │ │ │ │ ├── sphinx.mo │ │ │ │ │ └── sphinx.po │ │ │ ├── cak │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinx.js │ │ │ │ │ ├── sphinx.mo │ │ │ │ │ └── sphinx.po │ │ │ ├── cs │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinx.js │ │ │ │ │ ├── sphinx.mo │ │ │ │ │ └── sphinx.po │ │ │ ├── cy │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinx.js │ │ │ │ │ ├── sphinx.mo │ │ │ │ │ └── sphinx.po │ │ │ ├── da │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinx.js │ │ │ │ │ ├── sphinx.mo │ │ │ │ │ └── sphinx.po │ │ │ ├── de │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinx.js │ │ │ │ │ ├── sphinx.mo │ │ │ │ │ └── sphinx.po │ │ │ ├── el │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinx.js │ │ │ │ │ ├── sphinx.mo │ │ │ │ │ └── sphinx.po │ │ │ ├── eo │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinx.js │ │ │ │ │ ├── sphinx.mo │ │ │ │ │ └── sphinx.po │ │ │ ├── es │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinx.js │ │ │ │ │ ├── sphinx.mo │ │ │ │ │ └── sphinx.po │ │ │ ├── et │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinx.js │ │ │ │ │ ├── sphinx.mo │ │ │ │ │ └── sphinx.po │ │ │ ├── eu │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinx.js │ │ │ │ │ ├── sphinx.mo │ │ │ │ │ └── sphinx.po │ │ │ ├── fa │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinx.js │ │ │ │ │ ├── sphinx.mo │ │ │ │ │ └── sphinx.po │ │ │ ├── fi │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinx.js │ │ │ │ │ ├── sphinx.mo │ │ │ │ │ └── sphinx.po │ │ │ ├── fr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinx.js │ │ │ │ │ ├── sphinx.mo │ │ │ │ │ └── sphinx.po │ │ │ ├── fr_FR │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinx.js │ │ │ │ │ ├── sphinx.mo │ │ │ │ │ └── sphinx.po │ │ │ ├── he │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinx.js │ │ │ │ │ ├── sphinx.mo │ │ │ │ │ └── sphinx.po │ │ │ ├── hi │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinx.js │ │ │ │ │ ├── sphinx.mo │ │ │ │ │ └── sphinx.po │ │ │ ├── hi_IN │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinx.js │ │ │ │ │ ├── sphinx.mo │ │ │ │ │ └── sphinx.po │ │ │ ├── hr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinx.js │ │ │ │ │ ├── sphinx.mo │ │ │ │ │ └── sphinx.po │ │ │ ├── hu │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinx.js │ │ │ │ │ ├── sphinx.mo │ │ │ │ │ └── sphinx.po │ │ │ ├── id │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinx.js │ │ │ │ │ ├── sphinx.mo │ │ │ │ │ └── sphinx.po │ │ │ ├── it │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinx.js │ │ │ │ │ ├── sphinx.mo │ │ │ │ │ └── sphinx.po │ │ │ ├── ja │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinx.js │ │ │ │ │ ├── sphinx.mo │ │ │ │ │ └── sphinx.po │ │ │ ├── ko │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinx.js │ │ │ │ │ ├── sphinx.mo │ │ │ │ │ └── sphinx.po │ │ │ ├── lt │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinx.js │ │ │ │ │ ├── sphinx.mo │ │ │ │ │ └── sphinx.po │ │ │ ├── lv │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinx.js │ │ │ │ │ ├── sphinx.mo │ │ │ │ │ └── sphinx.po │ │ │ ├── mk │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinx.js │ │ │ │ │ ├── sphinx.mo │ │ │ │ │ └── sphinx.po │ │ │ ├── nb_NO │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinx.js │ │ │ │ │ ├── sphinx.mo │ │ │ │ │ └── sphinx.po │ │ │ ├── ne │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinx.js │ │ │ │ │ ├── sphinx.mo │ │ │ │ │ └── sphinx.po │ │ │ ├── nl │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinx.js │ │ │ │ │ ├── sphinx.mo │ │ │ │ │ └── sphinx.po │ │ │ ├── pl │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinx.js │ │ │ │ │ ├── sphinx.mo │ │ │ │ │ └── sphinx.po │ │ │ ├── pt │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinx.js │ │ │ │ │ ├── sphinx.mo │ │ │ │ │ └── sphinx.po │ │ │ ├── pt_BR │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinx.js │ │ │ │ │ ├── sphinx.mo │ │ │ │ │ └── sphinx.po │ │ │ ├── pt_PT │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinx.js │ │ │ │ │ ├── sphinx.mo │ │ │ │ │ └── sphinx.po │ │ │ ├── ro │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinx.js │ │ │ │ │ ├── sphinx.mo │ │ │ │ │ └── sphinx.po │ │ │ ├── ru │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinx.js │ │ │ │ │ ├── sphinx.mo │ │ │ │ │ └── sphinx.po │ │ │ ├── si │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinx.js │ │ │ │ │ ├── sphinx.mo │ │ │ │ │ └── sphinx.po │ │ │ ├── sk │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinx.js │ │ │ │ │ ├── sphinx.mo │ │ │ │ │ └── sphinx.po │ │ │ ├── sl │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinx.js │ │ │ │ │ ├── sphinx.mo │ │ │ │ │ └── sphinx.po │ │ │ ├── sphinx.pot │ │ │ ├── sq │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinx.js │ │ │ │ │ ├── sphinx.mo │ │ │ │ │ └── sphinx.po │ │ │ ├── sr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinx.js │ │ │ │ │ ├── sphinx.mo │ │ │ │ │ └── sphinx.po │ │ │ ├── sr@latin │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinx.js │ │ │ │ │ ├── sphinx.mo │ │ │ │ │ └── sphinx.po │ │ │ ├── sr_RS │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinx.js │ │ │ │ │ ├── sphinx.mo │ │ │ │ │ └── sphinx.po │ │ │ ├── sv │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinx.js │ │ │ │ │ ├── sphinx.mo │ │ │ │ │ └── sphinx.po │ │ │ ├── ta │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinx.js │ │ │ │ │ ├── sphinx.mo │ │ │ │ │ └── sphinx.po │ │ │ ├── te │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinx.js │ │ │ │ │ ├── sphinx.mo │ │ │ │ │ └── sphinx.po │ │ │ ├── tr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinx.js │ │ │ │ │ ├── sphinx.mo │ │ │ │ │ └── sphinx.po │ │ │ ├── uk_UA │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinx.js │ │ │ │ │ ├── sphinx.mo │ │ │ │ │ └── sphinx.po │ │ │ ├── ur │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinx.js │ │ │ │ │ ├── sphinx.mo │ │ │ │ │ └── sphinx.po │ │ │ ├── vi │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinx.js │ │ │ │ │ ├── sphinx.mo │ │ │ │ │ └── sphinx.po │ │ │ ├── zh_CN │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinx.js │ │ │ │ │ ├── sphinx.mo │ │ │ │ │ └── sphinx.po │ │ │ └── zh_TW │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── sphinx.js │ │ │ │ ├── sphinx.mo │ │ │ │ └── sphinx.po │ │ ├── parsers.py │ │ ├── project.py │ │ ├── py.typed │ │ ├── pycode │ │ │ ├── __init__.py │ │ │ ├── ast.py │ │ │ └── parser.py │ │ ├── pygments_styles.py │ │ ├── registry.py │ │ ├── roles.py │ │ ├── search │ │ │ ├── __init__.py │ │ │ ├── da.py │ │ │ ├── de.py │ │ │ ├── en.py │ │ │ ├── es.py │ │ │ ├── fi.py │ │ │ ├── fr.py │ │ │ ├── hu.py │ │ │ ├── it.py │ │ │ ├── ja.py │ │ │ ├── jssplitter.py │ │ │ ├── minified-js │ │ │ │ ├── base-stemmer.js │ │ │ │ ├── danish-stemmer.js │ │ │ │ ├── dutch-stemmer.js │ │ │ │ ├── finnish-stemmer.js │ │ │ │ ├── french-stemmer.js │ │ │ │ ├── german-stemmer.js │ │ │ │ ├── hungarian-stemmer.js │ │ │ │ ├── italian-stemmer.js │ │ │ │ ├── norwegian-stemmer.js │ │ │ │ ├── porter-stemmer.js │ │ │ │ ├── portuguese-stemmer.js │ │ │ │ ├── romanian-stemmer.js │ │ │ │ ├── russian-stemmer.js │ │ │ │ ├── spanish-stemmer.js │ │ │ │ ├── swedish-stemmer.js │ │ │ │ └── turkish-stemmer.js │ │ │ ├── nl.py │ │ │ ├── no.py │ │ │ ├── non-minified-js │ │ │ │ ├── base-stemmer.js │ │ │ │ ├── danish-stemmer.js │ │ │ │ ├── dutch-stemmer.js │ │ │ │ ├── finnish-stemmer.js │ │ │ │ ├── french-stemmer.js │ │ │ │ ├── german-stemmer.js │ │ │ │ ├── hungarian-stemmer.js │ │ │ │ ├── italian-stemmer.js │ │ │ │ ├── norwegian-stemmer.js │ │ │ │ ├── porter-stemmer.js │ │ │ │ ├── portuguese-stemmer.js │ │ │ │ ├── romanian-stemmer.js │ │ │ │ ├── russian-stemmer.js │ │ │ │ ├── spanish-stemmer.js │ │ │ │ ├── swedish-stemmer.js │ │ │ │ └── turkish-stemmer.js │ │ │ ├── pt.py │ │ │ ├── ro.py │ │ │ ├── ru.py │ │ │ ├── sv.py │ │ │ ├── tr.py │ │ │ └── zh.py │ │ ├── setup_command.py │ │ ├── templates │ │ │ ├── apidoc │ │ │ │ ├── module.rst_t │ │ │ │ ├── package.rst_t │ │ │ │ └── toc.rst_t │ │ │ ├── epub3 │ │ │ │ ├── container.xml │ │ │ │ ├── content.opf_t │ │ │ │ ├── mimetype │ │ │ │ ├── nav.xhtml_t │ │ │ │ └── toc.ncx_t │ │ │ ├── gettext │ │ │ │ └── message.pot_t │ │ │ ├── graphviz │ │ │ │ └── graphviz.css │ │ │ ├── htmlhelp │ │ │ │ ├── project.hhc │ │ │ │ ├── project.hhp │ │ │ │ └── project.stp │ │ │ ├── imgmath │ │ │ │ ├── preview.tex_t │ │ │ │ └── template.tex_t │ │ │ ├── latex │ │ │ │ ├── latex.tex_t │ │ │ │ ├── longtable.tex_t │ │ │ │ ├── sphinxmessages.sty_t │ │ │ │ ├── tabular.tex_t │ │ │ │ └── tabulary.tex_t │ │ │ ├── quickstart │ │ │ │ ├── Makefile.new_t │ │ │ │ ├── Makefile_t │ │ │ │ ├── conf.py_t │ │ │ │ ├── make.bat.new_t │ │ │ │ ├── make.bat_t │ │ │ │ └── root_doc.rst_t │ │ │ └── texinfo │ │ │ │ └── Makefile │ │ ├── testing │ │ │ ├── __init__.py │ │ │ ├── comparer.py │ │ │ ├── fixtures.py │ │ │ ├── path.py │ │ │ ├── restructuredtext.py │ │ │ └── util.py │ │ ├── texinputs │ │ │ ├── LICRcyr2utf8.xdy │ │ │ ├── LICRlatin2utf8.xdy │ │ │ ├── LatinRules.xdy │ │ │ ├── Makefile_t │ │ │ ├── latexmkjarc_t │ │ │ ├── latexmkrc_t │ │ │ ├── make.bat_t │ │ │ ├── python.ist │ │ │ ├── sphinx.sty │ │ │ ├── sphinx.xdy │ │ │ ├── sphinxhowto.cls │ │ │ ├── sphinxlatexadmonitions.sty │ │ │ ├── sphinxlatexcontainers.sty │ │ │ ├── sphinxlatexgraphics.sty │ │ │ ├── sphinxlatexindbibtoc.sty │ │ │ ├── sphinxlatexlists.sty │ │ │ ├── sphinxlatexliterals.sty │ │ │ ├── sphinxlatexnumfig.sty │ │ │ ├── sphinxlatexobjects.sty │ │ │ ├── sphinxlatexshadowbox.sty │ │ │ ├── sphinxlatexstyleheadings.sty │ │ │ ├── sphinxlatexstylepage.sty │ │ │ ├── sphinxlatexstyletext.sty │ │ │ ├── sphinxlatextables.sty │ │ │ ├── sphinxmanual.cls │ │ │ ├── sphinxoptionsgeometry.sty │ │ │ ├── sphinxoptionshyperref.sty │ │ │ ├── sphinxpackagecyrillic.sty │ │ │ └── sphinxpackagefootnote.sty │ │ ├── texinputs_win │ │ │ └── Makefile_t │ │ ├── themes │ │ │ ├── agogo │ │ │ │ ├── layout.html │ │ │ │ ├── static │ │ │ │ │ ├── agogo.css_t │ │ │ │ │ ├── bgfooter.png │ │ │ │ │ └── bgtop.png │ │ │ │ └── theme.conf │ │ │ ├── basic │ │ │ │ ├── changes │ │ │ │ │ ├── frameset.html │ │ │ │ │ ├── rstsource.html │ │ │ │ │ └── versionchanges.html │ │ │ │ ├── defindex.html │ │ │ │ ├── domainindex.html │ │ │ │ ├── genindex-single.html │ │ │ │ ├── genindex-split.html │ │ │ │ ├── genindex.html │ │ │ │ ├── globaltoc.html │ │ │ │ ├── layout.html │ │ │ │ ├── localtoc.html │ │ │ │ ├── opensearch.xml │ │ │ │ ├── page.html │ │ │ │ ├── relations.html │ │ │ │ ├── search.html │ │ │ │ ├── searchbox.html │ │ │ │ ├── sourcelink.html │ │ │ │ ├── static │ │ │ │ │ ├── basic.css_t │ │ │ │ │ ├── doctools.js │ │ │ │ │ ├── documentation_options.js_t │ │ │ │ │ ├── file.png │ │ │ │ │ ├── jquery-3.5.1.js │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── language_data.js_t │ │ │ │ │ ├── minus.png │ │ │ │ │ ├── plus.png │ │ │ │ │ ├── searchtools.js │ │ │ │ │ ├── underscore-1.13.1.js │ │ │ │ │ └── underscore.js │ │ │ │ └── theme.conf │ │ │ ├── bizstyle │ │ │ │ ├── layout.html │ │ │ │ ├── static │ │ │ │ │ ├── background_b01.png │ │ │ │ │ ├── bizstyle.css_t │ │ │ │ │ ├── bizstyle.js_t │ │ │ │ │ ├── css3-mediaqueries.js │ │ │ │ │ └── css3-mediaqueries_src.js │ │ │ │ └── theme.conf │ │ │ ├── classic │ │ │ │ ├── layout.html │ │ │ │ ├── static │ │ │ │ │ ├── classic.css_t │ │ │ │ │ └── sidebar.js_t │ │ │ │ └── theme.conf │ │ │ ├── default │ │ │ │ ├── static │ │ │ │ │ └── default.css │ │ │ │ └── theme.conf │ │ │ ├── epub │ │ │ │ ├── epub-cover.html │ │ │ │ ├── layout.html │ │ │ │ ├── static │ │ │ │ │ └── epub.css_t │ │ │ │ └── theme.conf │ │ │ ├── haiku │ │ │ │ ├── layout.html │ │ │ │ ├── static │ │ │ │ │ ├── alert_info_32.png │ │ │ │ │ ├── alert_warning_32.png │ │ │ │ │ ├── bg-page.png │ │ │ │ │ ├── bullet_orange.png │ │ │ │ │ └── haiku.css_t │ │ │ │ └── theme.conf │ │ │ ├── nature │ │ │ │ ├── static │ │ │ │ │ └── nature.css_t │ │ │ │ └── theme.conf │ │ │ ├── nonav │ │ │ │ ├── layout.html │ │ │ │ ├── static │ │ │ │ │ └── nonav.css │ │ │ │ └── theme.conf │ │ │ ├── pyramid │ │ │ │ ├── layout.html │ │ │ │ ├── static │ │ │ │ │ ├── dialog-note.png │ │ │ │ │ ├── dialog-seealso.png │ │ │ │ │ ├── dialog-todo.png │ │ │ │ │ ├── dialog-topic.png │ │ │ │ │ ├── dialog-warning.png │ │ │ │ │ ├── epub.css │ │ │ │ │ ├── footerbg.png │ │ │ │ │ ├── headerbg.png │ │ │ │ │ ├── ie6.css │ │ │ │ │ ├── middlebg.png │ │ │ │ │ ├── pyramid.css_t │ │ │ │ │ └── transparent.gif │ │ │ │ └── theme.conf │ │ │ ├── scrolls │ │ │ │ ├── artwork │ │ │ │ │ └── logo.svg │ │ │ │ ├── layout.html │ │ │ │ ├── static │ │ │ │ │ ├── darkmetal.png │ │ │ │ │ ├── headerbg.png │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── metal.png │ │ │ │ │ ├── navigation.png │ │ │ │ │ ├── print.css │ │ │ │ │ ├── scrolls.css_t │ │ │ │ │ ├── theme_extras.js │ │ │ │ │ ├── watermark.png │ │ │ │ │ └── watermark_blur.png │ │ │ │ └── theme.conf │ │ │ ├── sphinxdoc │ │ │ │ ├── static │ │ │ │ │ ├── contents.png │ │ │ │ │ ├── navigation.png │ │ │ │ │ └── sphinxdoc.css_t │ │ │ │ └── theme.conf │ │ │ └── traditional │ │ │ │ ├── static │ │ │ │ └── traditional.css_t │ │ │ │ └── theme.conf │ │ ├── theming.py │ │ ├── transforms │ │ │ ├── __init__.py │ │ │ ├── compact_bullet_list.py │ │ │ ├── i18n.py │ │ │ ├── post_transforms │ │ │ │ ├── __init__.py │ │ │ │ ├── code.py │ │ │ │ └── images.py │ │ │ └── references.py │ │ ├── util │ │ │ ├── __init__.py │ │ │ ├── build_phase.py │ │ │ ├── cfamily.py │ │ │ ├── compat.py │ │ │ ├── console.py │ │ │ ├── docfields.py │ │ │ ├── docstrings.py │ │ │ ├── docutils.py │ │ │ ├── fileutil.py │ │ │ ├── i18n.py │ │ │ ├── images.py │ │ │ ├── inspect.py │ │ │ ├── inventory.py │ │ │ ├── jsdump.py │ │ │ ├── logging.py │ │ │ ├── matching.py │ │ │ ├── math.py │ │ │ ├── nodes.py │ │ │ ├── osutil.py │ │ │ ├── parallel.py │ │ │ ├── png.py │ │ │ ├── pycompat.py │ │ │ ├── requests.py │ │ │ ├── rst.py │ │ │ ├── smartypants.py │ │ │ ├── stemmer │ │ │ │ ├── __init__.py │ │ │ │ └── porter.py │ │ │ ├── tags.py │ │ │ ├── template.py │ │ │ ├── texescape.py │ │ │ └── typing.py │ │ ├── versioning.py │ │ └── writers │ │ │ ├── __init__.py │ │ │ ├── html.py │ │ │ ├── html5.py │ │ │ ├── latex.py │ │ │ ├── manpage.py │ │ │ ├── texinfo.py │ │ │ ├── text.py │ │ │ └── xml.py │ ├── sphinxcontrib │ │ ├── applehelp │ │ │ ├── __init__.py │ │ │ ├── locales │ │ │ │ ├── .tx │ │ │ │ │ └── config │ │ │ │ ├── ar │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.applehelp.mo │ │ │ │ │ │ └── sphinxcontrib.applehelp.po │ │ │ │ ├── bn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.applehelp.mo │ │ │ │ │ │ └── sphinxcontrib.applehelp.po │ │ │ │ ├── ca │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.applehelp.mo │ │ │ │ │ │ └── sphinxcontrib.applehelp.po │ │ │ │ ├── cak │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.applehelp.mo │ │ │ │ │ │ └── sphinxcontrib.applehelp.po │ │ │ │ ├── cs │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.applehelp.mo │ │ │ │ │ │ └── sphinxcontrib.applehelp.po │ │ │ │ ├── cy │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.applehelp.mo │ │ │ │ │ │ └── sphinxcontrib.applehelp.po │ │ │ │ ├── da │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.applehelp.mo │ │ │ │ │ │ └── sphinxcontrib.applehelp.po │ │ │ │ ├── de │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.applehelp.mo │ │ │ │ │ │ └── sphinxcontrib.applehelp.po │ │ │ │ ├── el │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.applehelp.mo │ │ │ │ │ │ └── sphinxcontrib.applehelp.po │ │ │ │ ├── eo │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.applehelp.mo │ │ │ │ │ │ └── sphinxcontrib.applehelp.po │ │ │ │ ├── es │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.applehelp.mo │ │ │ │ │ │ └── sphinxcontrib.applehelp.po │ │ │ │ ├── et │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.applehelp.mo │ │ │ │ │ │ └── sphinxcontrib.applehelp.po │ │ │ │ ├── eu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.applehelp.mo │ │ │ │ │ │ └── sphinxcontrib.applehelp.po │ │ │ │ ├── fa │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.applehelp.mo │ │ │ │ │ │ └── sphinxcontrib.applehelp.po │ │ │ │ ├── fi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.applehelp.mo │ │ │ │ │ │ └── sphinxcontrib.applehelp.po │ │ │ │ ├── fr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.applehelp.mo │ │ │ │ │ │ └── sphinxcontrib.applehelp.po │ │ │ │ ├── he │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.applehelp.mo │ │ │ │ │ │ └── sphinxcontrib.applehelp.po │ │ │ │ ├── hi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.applehelp.mo │ │ │ │ │ │ └── sphinxcontrib.applehelp.po │ │ │ │ ├── hi_IN │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.applehelp.mo │ │ │ │ │ │ └── sphinxcontrib.applehelp.po │ │ │ │ ├── hr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.applehelp.mo │ │ │ │ │ │ └── sphinxcontrib.applehelp.po │ │ │ │ ├── hu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.applehelp.mo │ │ │ │ │ │ └── sphinxcontrib.applehelp.po │ │ │ │ ├── id │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.applehelp.mo │ │ │ │ │ │ └── sphinxcontrib.applehelp.po │ │ │ │ ├── it │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.applehelp.mo │ │ │ │ │ │ └── sphinxcontrib.applehelp.po │ │ │ │ ├── ja │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.applehelp.mo │ │ │ │ │ │ └── sphinxcontrib.applehelp.po │ │ │ │ ├── ko │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.applehelp.mo │ │ │ │ │ │ └── sphinxcontrib.applehelp.po │ │ │ │ ├── lt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.applehelp.mo │ │ │ │ │ │ └── sphinxcontrib.applehelp.po │ │ │ │ ├── lv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.applehelp.mo │ │ │ │ │ │ └── sphinxcontrib.applehelp.po │ │ │ │ ├── mk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.applehelp.mo │ │ │ │ │ │ └── sphinxcontrib.applehelp.po │ │ │ │ ├── nb_NO │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.applehelp.mo │ │ │ │ │ │ └── sphinxcontrib.applehelp.po │ │ │ │ ├── ne │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.applehelp.mo │ │ │ │ │ │ └── sphinxcontrib.applehelp.po │ │ │ │ ├── nl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.applehelp.mo │ │ │ │ │ │ └── sphinxcontrib.applehelp.po │ │ │ │ ├── pl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.applehelp.mo │ │ │ │ │ │ └── sphinxcontrib.applehelp.po │ │ │ │ ├── pt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.applehelp.mo │ │ │ │ │ │ └── sphinxcontrib.applehelp.po │ │ │ │ ├── pt_BR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.applehelp.mo │ │ │ │ │ │ └── sphinxcontrib.applehelp.po │ │ │ │ ├── pt_PT │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.applehelp.mo │ │ │ │ │ │ └── sphinxcontrib.applehelp.po │ │ │ │ ├── ro │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.applehelp.mo │ │ │ │ │ │ └── sphinxcontrib.applehelp.po │ │ │ │ ├── ru │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.applehelp.mo │ │ │ │ │ │ └── sphinxcontrib.applehelp.po │ │ │ │ ├── si │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.applehelp.mo │ │ │ │ │ │ └── sphinxcontrib.applehelp.po │ │ │ │ ├── sk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.applehelp.mo │ │ │ │ │ │ └── sphinxcontrib.applehelp.po │ │ │ │ ├── sl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.applehelp.mo │ │ │ │ │ │ └── sphinxcontrib.applehelp.po │ │ │ │ ├── sphinxcontrib.applehelp.pot │ │ │ │ ├── sr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.applehelp.mo │ │ │ │ │ │ └── sphinxcontrib.applehelp.po │ │ │ │ ├── sr@latin │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.applehelp.mo │ │ │ │ │ │ └── sphinxcontrib.applehelp.po │ │ │ │ ├── sv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.applehelp.mo │ │ │ │ │ │ └── sphinxcontrib.applehelp.po │ │ │ │ ├── ta │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.applehelp.mo │ │ │ │ │ │ └── sphinxcontrib.applehelp.po │ │ │ │ ├── tr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.applehelp.mo │ │ │ │ │ │ └── sphinxcontrib.applehelp.po │ │ │ │ ├── uk_UA │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.applehelp.mo │ │ │ │ │ │ └── sphinxcontrib.applehelp.po │ │ │ │ ├── ur │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.applehelp.mo │ │ │ │ │ │ └── sphinxcontrib.applehelp.po │ │ │ │ ├── vi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.applehelp.mo │ │ │ │ │ │ └── sphinxcontrib.applehelp.po │ │ │ │ ├── zh_CN │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.applehelp.mo │ │ │ │ │ │ └── sphinxcontrib.applehelp.po │ │ │ │ └── zh_TW │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinxcontrib.applehelp.mo │ │ │ │ │ └── sphinxcontrib.applehelp.po │ │ │ ├── templates │ │ │ │ └── _access.html_t │ │ │ └── version.py │ │ ├── devhelp │ │ │ ├── __init__.py │ │ │ ├── locales │ │ │ │ ├── .tx │ │ │ │ │ └── config │ │ │ │ ├── ar │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.devhelp.mo │ │ │ │ │ │ └── sphinxcontrib.devhelp.po │ │ │ │ ├── bn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.devhelp.mo │ │ │ │ │ │ └── sphinxcontrib.devhelp.po │ │ │ │ ├── ca │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.devhelp.mo │ │ │ │ │ │ └── sphinxcontrib.devhelp.po │ │ │ │ ├── cs │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.devhelp.mo │ │ │ │ │ │ └── sphinxcontrib.devhelp.po │ │ │ │ ├── cy │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.devhelp.mo │ │ │ │ │ │ └── sphinxcontrib.devhelp.po │ │ │ │ ├── da │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.devhelp.mo │ │ │ │ │ │ └── sphinxcontrib.devhelp.po │ │ │ │ ├── de │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.devhelp.mo │ │ │ │ │ │ └── sphinxcontrib.devhelp.po │ │ │ │ ├── el │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.devhelp.mo │ │ │ │ │ │ └── sphinxcontrib.devhelp.po │ │ │ │ ├── eo │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.devhelp.mo │ │ │ │ │ │ └── sphinxcontrib.devhelp.po │ │ │ │ ├── es │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.devhelp.mo │ │ │ │ │ │ └── sphinxcontrib.devhelp.po │ │ │ │ ├── et │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.devhelp.mo │ │ │ │ │ │ └── sphinxcontrib.devhelp.po │ │ │ │ ├── eu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.devhelp.mo │ │ │ │ │ │ └── sphinxcontrib.devhelp.po │ │ │ │ ├── fa │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.devhelp.mo │ │ │ │ │ │ └── sphinxcontrib.devhelp.po │ │ │ │ ├── fi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.devhelp.mo │ │ │ │ │ │ └── sphinxcontrib.devhelp.po │ │ │ │ ├── fr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.devhelp.mo │ │ │ │ │ │ └── sphinxcontrib.devhelp.po │ │ │ │ ├── he │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.devhelp.mo │ │ │ │ │ │ └── sphinxcontrib.devhelp.po │ │ │ │ ├── hi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.devhelp.mo │ │ │ │ │ │ └── sphinxcontrib.devhelp.po │ │ │ │ ├── hi_IN │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.devhelp.mo │ │ │ │ │ │ └── sphinxcontrib.devhelp.po │ │ │ │ ├── hr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.devhelp.mo │ │ │ │ │ │ └── sphinxcontrib.devhelp.po │ │ │ │ ├── hu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.devhelp.mo │ │ │ │ │ │ └── sphinxcontrib.devhelp.po │ │ │ │ ├── id │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.devhelp.mo │ │ │ │ │ │ └── sphinxcontrib.devhelp.po │ │ │ │ ├── it │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.devhelp.mo │ │ │ │ │ │ └── sphinxcontrib.devhelp.po │ │ │ │ ├── ja │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.devhelp.mo │ │ │ │ │ │ └── sphinxcontrib.devhelp.po │ │ │ │ ├── ko │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.devhelp.mo │ │ │ │ │ │ └── sphinxcontrib.devhelp.po │ │ │ │ ├── lt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.devhelp.mo │ │ │ │ │ │ └── sphinxcontrib.devhelp.po │ │ │ │ ├── lv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.devhelp.mo │ │ │ │ │ │ └── sphinxcontrib.devhelp.po │ │ │ │ ├── mk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.devhelp.mo │ │ │ │ │ │ └── sphinxcontrib.devhelp.po │ │ │ │ ├── nb_NO │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.devhelp.mo │ │ │ │ │ │ └── sphinxcontrib.devhelp.po │ │ │ │ ├── ne │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.devhelp.mo │ │ │ │ │ │ └── sphinxcontrib.devhelp.po │ │ │ │ ├── nl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.devhelp.mo │ │ │ │ │ │ └── sphinxcontrib.devhelp.po │ │ │ │ ├── pl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.devhelp.mo │ │ │ │ │ │ └── sphinxcontrib.devhelp.po │ │ │ │ ├── pt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.devhelp.mo │ │ │ │ │ │ └── sphinxcontrib.devhelp.po │ │ │ │ ├── pt_BR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.devhelp.mo │ │ │ │ │ │ └── sphinxcontrib.devhelp.po │ │ │ │ ├── pt_PT │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.devhelp.mo │ │ │ │ │ │ └── sphinxcontrib.devhelp.po │ │ │ │ ├── ro │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.devhelp.mo │ │ │ │ │ │ └── sphinxcontrib.devhelp.po │ │ │ │ ├── ru │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.devhelp.mo │ │ │ │ │ │ └── sphinxcontrib.devhelp.po │ │ │ │ ├── si │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.devhelp.mo │ │ │ │ │ │ └── sphinxcontrib.devhelp.po │ │ │ │ ├── sk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.devhelp.mo │ │ │ │ │ │ └── sphinxcontrib.devhelp.po │ │ │ │ ├── sl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.devhelp.mo │ │ │ │ │ │ └── sphinxcontrib.devhelp.po │ │ │ │ ├── sphinxcontrib.devhelp.pot │ │ │ │ ├── sr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.devhelp.mo │ │ │ │ │ │ └── sphinxcontrib.devhelp.po │ │ │ │ ├── sr@latin │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.devhelp.mo │ │ │ │ │ │ └── sphinxcontrib.devhelp.po │ │ │ │ ├── sv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.devhelp.mo │ │ │ │ │ │ └── sphinxcontrib.devhelp.po │ │ │ │ ├── ta │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.devhelp.mo │ │ │ │ │ │ └── sphinxcontrib.devhelp.po │ │ │ │ ├── tr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.devhelp.mo │ │ │ │ │ │ └── sphinxcontrib.devhelp.po │ │ │ │ ├── uk_UA │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.devhelp.mo │ │ │ │ │ │ └── sphinxcontrib.devhelp.po │ │ │ │ ├── vi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.devhelp.mo │ │ │ │ │ │ └── sphinxcontrib.devhelp.po │ │ │ │ ├── zh_CN │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.devhelp.mo │ │ │ │ │ │ └── sphinxcontrib.devhelp.po │ │ │ │ └── zh_TW │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinxcontrib.devhelp.mo │ │ │ │ │ └── sphinxcontrib.devhelp.po │ │ │ └── version.py │ │ ├── htmlhelp │ │ │ ├── __init__.py │ │ │ ├── locales │ │ │ │ ├── .tx │ │ │ │ │ └── config │ │ │ │ ├── ar │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.htmlhelp.mo │ │ │ │ │ │ └── sphinxcontrib.htmlhelp.po │ │ │ │ ├── bg │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.htmlhelp.mo │ │ │ │ │ │ └── sphinxcontrib.htmlhelp.po │ │ │ │ ├── bn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.htmlhelp.mo │ │ │ │ │ │ └── sphinxcontrib.htmlhelp.po │ │ │ │ ├── ca │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.htmlhelp.mo │ │ │ │ │ │ └── sphinxcontrib.htmlhelp.po │ │ │ │ ├── cak │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.htmlhelp.mo │ │ │ │ │ │ └── sphinxcontrib.htmlhelp.po │ │ │ │ ├── cs │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.htmlhelp.mo │ │ │ │ │ │ └── sphinxcontrib.htmlhelp.po │ │ │ │ ├── cy │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.htmlhelp.mo │ │ │ │ │ │ └── sphinxcontrib.htmlhelp.po │ │ │ │ ├── da │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.htmlhelp.mo │ │ │ │ │ │ └── sphinxcontrib.htmlhelp.po │ │ │ │ ├── de │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.htmlhelp.mo │ │ │ │ │ │ └── sphinxcontrib.htmlhelp.po │ │ │ │ ├── el │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.htmlhelp.mo │ │ │ │ │ │ └── sphinxcontrib.htmlhelp.po │ │ │ │ ├── eo │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.htmlhelp.mo │ │ │ │ │ │ └── sphinxcontrib.htmlhelp.po │ │ │ │ ├── es │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.htmlhelp.mo │ │ │ │ │ │ └── sphinxcontrib.htmlhelp.po │ │ │ │ ├── et │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.htmlhelp.mo │ │ │ │ │ │ └── sphinxcontrib.htmlhelp.po │ │ │ │ ├── eu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.htmlhelp.mo │ │ │ │ │ │ └── sphinxcontrib.htmlhelp.po │ │ │ │ ├── fa │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.htmlhelp.mo │ │ │ │ │ │ └── sphinxcontrib.htmlhelp.po │ │ │ │ ├── fi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.htmlhelp.mo │ │ │ │ │ │ └── sphinxcontrib.htmlhelp.po │ │ │ │ ├── fr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.htmlhelp.mo │ │ │ │ │ │ └── sphinxcontrib.htmlhelp.po │ │ │ │ ├── he │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.htmlhelp.mo │ │ │ │ │ │ └── sphinxcontrib.htmlhelp.po │ │ │ │ ├── hi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.htmlhelp.mo │ │ │ │ │ │ └── sphinxcontrib.htmlhelp.po │ │ │ │ ├── hi_IN │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.htmlhelp.mo │ │ │ │ │ │ └── sphinxcontrib.htmlhelp.po │ │ │ │ ├── hr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.htmlhelp.mo │ │ │ │ │ │ └── sphinxcontrib.htmlhelp.po │ │ │ │ ├── hu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.htmlhelp.mo │ │ │ │ │ │ └── sphinxcontrib.htmlhelp.po │ │ │ │ ├── id │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.htmlhelp.mo │ │ │ │ │ │ └── sphinxcontrib.htmlhelp.po │ │ │ │ ├── it │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.htmlhelp.mo │ │ │ │ │ │ └── sphinxcontrib.htmlhelp.po │ │ │ │ ├── ja │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.htmlhelp.mo │ │ │ │ │ │ └── sphinxcontrib.htmlhelp.po │ │ │ │ ├── ko │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.htmlhelp.mo │ │ │ │ │ │ └── sphinxcontrib.htmlhelp.po │ │ │ │ ├── lt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.htmlhelp.mo │ │ │ │ │ │ └── sphinxcontrib.htmlhelp.po │ │ │ │ ├── lv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.htmlhelp.mo │ │ │ │ │ │ └── sphinxcontrib.htmlhelp.po │ │ │ │ ├── mk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.htmlhelp.mo │ │ │ │ │ │ └── sphinxcontrib.htmlhelp.po │ │ │ │ ├── nb_NO │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.htmlhelp.mo │ │ │ │ │ │ └── sphinxcontrib.htmlhelp.po │ │ │ │ ├── ne │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.htmlhelp.mo │ │ │ │ │ │ └── sphinxcontrib.htmlhelp.po │ │ │ │ ├── nl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.htmlhelp.mo │ │ │ │ │ │ └── sphinxcontrib.htmlhelp.po │ │ │ │ ├── pl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.htmlhelp.mo │ │ │ │ │ │ └── sphinxcontrib.htmlhelp.po │ │ │ │ ├── pt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.htmlhelp.mo │ │ │ │ │ │ └── sphinxcontrib.htmlhelp.po │ │ │ │ ├── pt_BR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.htmlhelp.mo │ │ │ │ │ │ └── sphinxcontrib.htmlhelp.po │ │ │ │ ├── pt_PT │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.htmlhelp.mo │ │ │ │ │ │ └── sphinxcontrib.htmlhelp.po │ │ │ │ ├── ro │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.htmlhelp.mo │ │ │ │ │ │ └── sphinxcontrib.htmlhelp.po │ │ │ │ ├── ru │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.htmlhelp.mo │ │ │ │ │ │ └── sphinxcontrib.htmlhelp.po │ │ │ │ ├── si │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.htmlhelp.mo │ │ │ │ │ │ └── sphinxcontrib.htmlhelp.po │ │ │ │ ├── sk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.htmlhelp.mo │ │ │ │ │ │ └── sphinxcontrib.htmlhelp.po │ │ │ │ ├── sl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.htmlhelp.mo │ │ │ │ │ │ └── sphinxcontrib.htmlhelp.po │ │ │ │ ├── sphinxcontrib.htmlhelp.pot │ │ │ │ ├── sq │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.htmlhelp.mo │ │ │ │ │ │ └── sphinxcontrib.htmlhelp.po │ │ │ │ ├── sr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.htmlhelp.mo │ │ │ │ │ │ └── sphinxcontrib.htmlhelp.po │ │ │ │ ├── sr@latin │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.htmlhelp.mo │ │ │ │ │ │ └── sphinxcontrib.htmlhelp.po │ │ │ │ ├── sr_RS │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.htmlhelp.mo │ │ │ │ │ │ └── sphinxcontrib.htmlhelp.po │ │ │ │ ├── sv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.htmlhelp.mo │ │ │ │ │ │ └── sphinxcontrib.htmlhelp.po │ │ │ │ ├── ta │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.htmlhelp.mo │ │ │ │ │ │ └── sphinxcontrib.htmlhelp.po │ │ │ │ ├── te │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.htmlhelp.mo │ │ │ │ │ │ └── sphinxcontrib.htmlhelp.po │ │ │ │ ├── tr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.htmlhelp.mo │ │ │ │ │ │ └── sphinxcontrib.htmlhelp.po │ │ │ │ ├── uk_UA │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.htmlhelp.mo │ │ │ │ │ │ └── sphinxcontrib.htmlhelp.po │ │ │ │ ├── ur │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.htmlhelp.mo │ │ │ │ │ │ └── sphinxcontrib.htmlhelp.po │ │ │ │ ├── vi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.htmlhelp.mo │ │ │ │ │ │ └── sphinxcontrib.htmlhelp.po │ │ │ │ ├── zh_CN │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.htmlhelp.mo │ │ │ │ │ │ └── sphinxcontrib.htmlhelp.po │ │ │ │ └── zh_TW │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinxcontrib.htmlhelp.mo │ │ │ │ │ └── sphinxcontrib.htmlhelp.po │ │ │ ├── templates │ │ │ │ ├── project.hhc │ │ │ │ ├── project.hhp │ │ │ │ └── project.stp │ │ │ └── version.py │ │ ├── jsmath │ │ │ ├── __init__.py │ │ │ └── version.py │ │ ├── qthelp │ │ │ ├── __init__.py │ │ │ ├── locales │ │ │ │ ├── .tx │ │ │ │ │ └── config │ │ │ │ ├── ar │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.qthelp.mo │ │ │ │ │ │ └── sphinxcontrib.qthelp.po │ │ │ │ ├── bn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.qthelp.mo │ │ │ │ │ │ └── sphinxcontrib.qthelp.po │ │ │ │ ├── ca │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.qthelp.mo │ │ │ │ │ │ └── sphinxcontrib.qthelp.po │ │ │ │ ├── cs │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.qthelp.mo │ │ │ │ │ │ └── sphinxcontrib.qthelp.po │ │ │ │ ├── cy │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.qthelp.mo │ │ │ │ │ │ └── sphinxcontrib.qthelp.po │ │ │ │ ├── da │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.qthelp.mo │ │ │ │ │ │ └── sphinxcontrib.qthelp.po │ │ │ │ ├── de │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.qthelp.mo │ │ │ │ │ │ └── sphinxcontrib.qthelp.po │ │ │ │ ├── el │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.qthelp.mo │ │ │ │ │ │ └── sphinxcontrib.qthelp.po │ │ │ │ ├── eo │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.qthelp.mo │ │ │ │ │ │ └── sphinxcontrib.qthelp.po │ │ │ │ ├── es │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.qthelp.mo │ │ │ │ │ │ └── sphinxcontrib.qthelp.po │ │ │ │ ├── et │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.qthelp.mo │ │ │ │ │ │ └── sphinxcontrib.qthelp.po │ │ │ │ ├── eu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.qthelp.mo │ │ │ │ │ │ └── sphinxcontrib.qthelp.po │ │ │ │ ├── fa │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.qthelp.mo │ │ │ │ │ │ └── sphinxcontrib.qthelp.po │ │ │ │ ├── fi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.qthelp.mo │ │ │ │ │ │ └── sphinxcontrib.qthelp.po │ │ │ │ ├── fr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.qthelp.mo │ │ │ │ │ │ └── sphinxcontrib.qthelp.po │ │ │ │ ├── he │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.qthelp.mo │ │ │ │ │ │ └── sphinxcontrib.qthelp.po │ │ │ │ ├── hi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.qthelp.mo │ │ │ │ │ │ └── sphinxcontrib.qthelp.po │ │ │ │ ├── hi_IN │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.qthelp.mo │ │ │ │ │ │ └── sphinxcontrib.qthelp.po │ │ │ │ ├── hr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.qthelp.mo │ │ │ │ │ │ └── sphinxcontrib.qthelp.po │ │ │ │ ├── hu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.qthelp.mo │ │ │ │ │ │ └── sphinxcontrib.qthelp.po │ │ │ │ ├── id │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.qthelp.mo │ │ │ │ │ │ └── sphinxcontrib.qthelp.po │ │ │ │ ├── it │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.qthelp.mo │ │ │ │ │ │ └── sphinxcontrib.qthelp.po │ │ │ │ ├── ja │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.qthelp.mo │ │ │ │ │ │ └── sphinxcontrib.qthelp.po │ │ │ │ ├── ko │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.qthelp.mo │ │ │ │ │ │ └── sphinxcontrib.qthelp.po │ │ │ │ ├── lt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.qthelp.mo │ │ │ │ │ │ └── sphinxcontrib.qthelp.po │ │ │ │ ├── lv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.qthelp.mo │ │ │ │ │ │ └── sphinxcontrib.qthelp.po │ │ │ │ ├── mk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.qthelp.mo │ │ │ │ │ │ └── sphinxcontrib.qthelp.po │ │ │ │ ├── nb_NO │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.qthelp.mo │ │ │ │ │ │ └── sphinxcontrib.qthelp.po │ │ │ │ ├── ne │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.qthelp.mo │ │ │ │ │ │ └── sphinxcontrib.qthelp.po │ │ │ │ ├── nl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.qthelp.mo │ │ │ │ │ │ └── sphinxcontrib.qthelp.po │ │ │ │ ├── pl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.qthelp.mo │ │ │ │ │ │ └── sphinxcontrib.qthelp.po │ │ │ │ ├── pt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.qthelp.mo │ │ │ │ │ │ └── sphinxcontrib.qthelp.po │ │ │ │ ├── pt_BR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.qthelp.mo │ │ │ │ │ │ └── sphinxcontrib.qthelp.po │ │ │ │ ├── pt_PT │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.qthelp.mo │ │ │ │ │ │ └── sphinxcontrib.qthelp.po │ │ │ │ ├── ro │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.qthelp.mo │ │ │ │ │ │ └── sphinxcontrib.qthelp.po │ │ │ │ ├── ru │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.qthelp.mo │ │ │ │ │ │ └── sphinxcontrib.qthelp.po │ │ │ │ ├── si │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.qthelp.mo │ │ │ │ │ │ └── sphinxcontrib.qthelp.po │ │ │ │ ├── sk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.qthelp.mo │ │ │ │ │ │ └── sphinxcontrib.qthelp.po │ │ │ │ ├── sl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.qthelp.mo │ │ │ │ │ │ └── sphinxcontrib.qthelp.po │ │ │ │ ├── sphinxcontrib.qthelp.pot │ │ │ │ ├── sr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.qthelp.mo │ │ │ │ │ │ └── sphinxcontrib.qthelp.po │ │ │ │ ├── sr@latin │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.qthelp.mo │ │ │ │ │ │ └── sphinxcontrib.qthelp.po │ │ │ │ ├── sv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.qthelp.mo │ │ │ │ │ │ └── sphinxcontrib.qthelp.po │ │ │ │ ├── ta │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.qthelp.mo │ │ │ │ │ │ └── sphinxcontrib.qthelp.po │ │ │ │ ├── tr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.qthelp.mo │ │ │ │ │ │ └── sphinxcontrib.qthelp.po │ │ │ │ ├── uk_UA │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.qthelp.mo │ │ │ │ │ │ └── sphinxcontrib.qthelp.po │ │ │ │ ├── vi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.qthelp.mo │ │ │ │ │ │ └── sphinxcontrib.qthelp.po │ │ │ │ ├── zh_CN │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── sphinxcontrib.qthelp.mo │ │ │ │ │ │ └── sphinxcontrib.qthelp.po │ │ │ │ └── zh_TW │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinxcontrib.qthelp.mo │ │ │ │ │ └── sphinxcontrib.qthelp.po │ │ │ ├── templates │ │ │ │ ├── project.qhcp │ │ │ │ └── project.qhp │ │ │ └── version.py │ │ └── serializinghtml │ │ │ ├── __init__.py │ │ │ ├── jsonimpl.py │ │ │ ├── locales │ │ │ ├── .tx │ │ │ │ └── config │ │ │ ├── ar │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinxcontrib.serializinghtml.mo │ │ │ │ │ └── sphinxcontrib.serializinghtml.po │ │ │ ├── bg │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinxcontrib.serializinghtml.mo │ │ │ │ │ └── sphinxcontrib.serializinghtml.po │ │ │ ├── bn │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinxcontrib.serializinghtml.mo │ │ │ │ │ └── sphinxcontrib.serializinghtml.po │ │ │ ├── ca │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinxcontrib.serializinghtml.mo │ │ │ │ │ └── sphinxcontrib.serializinghtml.po │ │ │ ├── cak │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinxcontrib.serializinghtml.mo │ │ │ │ │ └── sphinxcontrib.serializinghtml.po │ │ │ ├── cs │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinxcontrib.serializinghtml.mo │ │ │ │ │ └── sphinxcontrib.serializinghtml.po │ │ │ ├── cy │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinxcontrib.serializinghtml.mo │ │ │ │ │ └── sphinxcontrib.serializinghtml.po │ │ │ ├── da │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinxcontrib.serializinghtml.mo │ │ │ │ │ └── sphinxcontrib.serializinghtml.po │ │ │ ├── de │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinxcontrib.serializinghtml.mo │ │ │ │ │ └── sphinxcontrib.serializinghtml.po │ │ │ ├── el │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinxcontrib.serializinghtml.mo │ │ │ │ │ └── sphinxcontrib.serializinghtml.po │ │ │ ├── eo │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinxcontrib.serializinghtml.mo │ │ │ │ │ └── sphinxcontrib.serializinghtml.po │ │ │ ├── es │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinxcontrib.serializinghtml.mo │ │ │ │ │ └── sphinxcontrib.serializinghtml.po │ │ │ ├── et │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinxcontrib.serializinghtml.mo │ │ │ │ │ └── sphinxcontrib.serializinghtml.po │ │ │ ├── eu │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinxcontrib.serializinghtml.mo │ │ │ │ │ └── sphinxcontrib.serializinghtml.po │ │ │ ├── fa │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinxcontrib.serializinghtml.mo │ │ │ │ │ └── sphinxcontrib.serializinghtml.po │ │ │ ├── fi │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinxcontrib.serializinghtml.mo │ │ │ │ │ └── sphinxcontrib.serializinghtml.po │ │ │ ├── fr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinxcontrib.serializinghtml.mo │ │ │ │ │ └── sphinxcontrib.serializinghtml.po │ │ │ ├── he │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinxcontrib.serializinghtml.mo │ │ │ │ │ └── sphinxcontrib.serializinghtml.po │ │ │ ├── hi │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinxcontrib.serializinghtml.mo │ │ │ │ │ └── sphinxcontrib.serializinghtml.po │ │ │ ├── hi_IN │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinxcontrib.serializinghtml.mo │ │ │ │ │ └── sphinxcontrib.serializinghtml.po │ │ │ ├── hr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinxcontrib.serializinghtml.mo │ │ │ │ │ └── sphinxcontrib.serializinghtml.po │ │ │ ├── hu │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinxcontrib.serializinghtml.mo │ │ │ │ │ └── sphinxcontrib.serializinghtml.po │ │ │ ├── id │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinxcontrib.serializinghtml.mo │ │ │ │ │ └── sphinxcontrib.serializinghtml.po │ │ │ ├── it │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinxcontrib.serializinghtml.mo │ │ │ │ │ └── sphinxcontrib.serializinghtml.po │ │ │ ├── ja │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinxcontrib.serializinghtml.mo │ │ │ │ │ └── sphinxcontrib.serializinghtml.po │ │ │ ├── ko │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinxcontrib.serializinghtml.mo │ │ │ │ │ └── sphinxcontrib.serializinghtml.po │ │ │ ├── lt │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinxcontrib.serializinghtml.mo │ │ │ │ │ └── sphinxcontrib.serializinghtml.po │ │ │ ├── lv │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinxcontrib.serializinghtml.mo │ │ │ │ │ └── sphinxcontrib.serializinghtml.po │ │ │ ├── mk │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinxcontrib.serializinghtml.mo │ │ │ │ │ └── sphinxcontrib.serializinghtml.po │ │ │ ├── nb_NO │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinxcontrib.serializinghtml.mo │ │ │ │ │ └── sphinxcontrib.serializinghtml.po │ │ │ ├── ne │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinxcontrib.serializinghtml.mo │ │ │ │ │ └── sphinxcontrib.serializinghtml.po │ │ │ ├── nl │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinxcontrib.serializinghtml.mo │ │ │ │ │ └── sphinxcontrib.serializinghtml.po │ │ │ ├── pl │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinxcontrib.serializinghtml.mo │ │ │ │ │ └── sphinxcontrib.serializinghtml.po │ │ │ ├── pt │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinxcontrib.serializinghtml.mo │ │ │ │ │ └── sphinxcontrib.serializinghtml.po │ │ │ ├── pt_BR │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinxcontrib.serializinghtml.mo │ │ │ │ │ └── sphinxcontrib.serializinghtml.po │ │ │ ├── pt_PT │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinxcontrib.serializinghtml.mo │ │ │ │ │ └── sphinxcontrib.serializinghtml.po │ │ │ ├── ro │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinxcontrib.serializinghtml.mo │ │ │ │ │ └── sphinxcontrib.serializinghtml.po │ │ │ ├── ru │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinxcontrib.serializinghtml.mo │ │ │ │ │ └── sphinxcontrib.serializinghtml.po │ │ │ ├── si │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinxcontrib.serializinghtml.mo │ │ │ │ │ └── sphinxcontrib.serializinghtml.po │ │ │ ├── sk │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinxcontrib.serializinghtml.mo │ │ │ │ │ └── sphinxcontrib.serializinghtml.po │ │ │ ├── sl │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinxcontrib.serializinghtml.mo │ │ │ │ │ └── sphinxcontrib.serializinghtml.po │ │ │ ├── sphinxcontrib.serializinghtml.pot │ │ │ ├── sq │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinxcontrib.serializinghtml.mo │ │ │ │ │ └── sphinxcontrib.serializinghtml.po │ │ │ ├── sr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinxcontrib.serializinghtml.mo │ │ │ │ │ └── sphinxcontrib.serializinghtml.po │ │ │ ├── sr@latin │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinxcontrib.serializinghtml.mo │ │ │ │ │ └── sphinxcontrib.serializinghtml.po │ │ │ ├── sr_RS │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinxcontrib.serializinghtml.mo │ │ │ │ │ └── sphinxcontrib.serializinghtml.po │ │ │ ├── sv │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinxcontrib.serializinghtml.mo │ │ │ │ │ └── sphinxcontrib.serializinghtml.po │ │ │ ├── ta │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinxcontrib.serializinghtml.mo │ │ │ │ │ └── sphinxcontrib.serializinghtml.po │ │ │ ├── te │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinxcontrib.serializinghtml.mo │ │ │ │ │ └── sphinxcontrib.serializinghtml.po │ │ │ ├── tr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinxcontrib.serializinghtml.mo │ │ │ │ │ └── sphinxcontrib.serializinghtml.po │ │ │ ├── uk_UA │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinxcontrib.serializinghtml.mo │ │ │ │ │ └── sphinxcontrib.serializinghtml.po │ │ │ ├── ur │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinxcontrib.serializinghtml.mo │ │ │ │ │ └── sphinxcontrib.serializinghtml.po │ │ │ ├── vi │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinxcontrib.serializinghtml.mo │ │ │ │ │ └── sphinxcontrib.serializinghtml.po │ │ │ ├── zh_CN │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── sphinxcontrib.serializinghtml.mo │ │ │ │ │ └── sphinxcontrib.serializinghtml.po │ │ │ └── zh_TW │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── sphinxcontrib.serializinghtml.mo │ │ │ │ └── sphinxcontrib.serializinghtml.po │ │ │ └── version.py │ ├── sphinxcontrib_applehelp-1.0.2-py3.8-nspkg.pth │ ├── sphinxcontrib_applehelp-1.0.2.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── namespace_packages.txt │ │ └── top_level.txt │ ├── sphinxcontrib_devhelp-1.0.2-py3.8-nspkg.pth │ ├── sphinxcontrib_devhelp-1.0.2.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── namespace_packages.txt │ │ └── top_level.txt │ ├── sphinxcontrib_htmlhelp-2.0.0-py3.9-nspkg.pth │ ├── sphinxcontrib_htmlhelp-2.0.0.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── namespace_packages.txt │ │ └── top_level.txt │ ├── sphinxcontrib_jsmath-1.0.1-py3.7-nspkg.pth │ ├── sphinxcontrib_jsmath-1.0.1.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── namespace_packages.txt │ │ └── top_level.txt │ ├── sphinxcontrib_qthelp-1.0.3-py3.8-nspkg.pth │ ├── sphinxcontrib_qthelp-1.0.3.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── namespace_packages.txt │ │ └── top_level.txt │ ├── sphinxcontrib_serializinghtml-1.1.5-py3.9-nspkg.pth │ ├── sphinxcontrib_serializinghtml-1.1.5.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── namespace_packages.txt │ │ └── top_level.txt │ ├── toml-0.10.2.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── top_level.txt │ ├── toml │ │ ├── __init__.py │ │ ├── decoder.py │ │ ├── encoder.py │ │ ├── ordered.py │ │ └── tz.py │ ├── urllib3-1.26.6.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE.txt │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── top_level.txt │ └── urllib3 │ │ ├── __init__.py │ │ ├── _collections.py │ │ ├── _version.py │ │ ├── connection.py │ │ ├── connectionpool.py │ │ ├── contrib │ │ ├── __init__.py │ │ ├── _appengine_environ.py │ │ ├── _securetransport │ │ │ ├── __init__.py │ │ │ ├── bindings.py │ │ │ └── low_level.py │ │ ├── appengine.py │ │ ├── ntlmpool.py │ │ ├── pyopenssl.py │ │ ├── securetransport.py │ │ └── socks.py │ │ ├── exceptions.py │ │ ├── fields.py │ │ ├── filepost.py │ │ ├── packages │ │ ├── __init__.py │ │ ├── backports │ │ │ ├── __init__.py │ │ │ └── makefile.py │ │ ├── six.py │ │ └── ssl_match_hostname │ │ │ ├── __init__.py │ │ │ └── _implementation.py │ │ ├── poolmanager.py │ │ ├── request.py │ │ ├── response.py │ │ └── util │ │ ├── __init__.py │ │ ├── connection.py │ │ ├── proxy.py │ │ ├── queue.py │ │ ├── request.py │ │ ├── response.py │ │ ├── retry.py │ │ ├── ssl_.py │ │ ├── ssltransport.py │ │ ├── timeout.py │ │ ├── url.py │ │ └── wait.py ├── AUTHORS ├── CHANGES.rst ├── LICENSE ├── README.rst ├── microfs.py ├── requirements.txt └── ufs.py └── uflash-master ├── .github └── workflows │ └── test.yml ├── .gitignore ├── AUTHORS ├── CHANGES.rst ├── CONTRIBUTING.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── firmware.hex ├── requirements.txt ├── setup.py ├── tox.ini └── uflash.py /.gitattributes: -------------------------------------------------------------------------------- 1 | *.hex text eol=lf -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | .github/workflows 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/LICENSE -------------------------------------------------------------------------------- /Microbit-Basic-Stubs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/Microbit-Basic-Stubs/LICENSE -------------------------------------------------------------------------------- /Microbit-Basic-Stubs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/Microbit-Basic-Stubs/README.md -------------------------------------------------------------------------------- /Microbit-Basic-Stubs/microbit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/Microbit-Basic-Stubs/microbit/__init__.py -------------------------------------------------------------------------------- /Microbit-Basic-Stubs/microbit/accelerometer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/Microbit-Basic-Stubs/microbit/accelerometer.py -------------------------------------------------------------------------------- /Microbit-Basic-Stubs/microbit/compass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/Microbit-Basic-Stubs/microbit/compass.py -------------------------------------------------------------------------------- /Microbit-Basic-Stubs/microbit/display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/Microbit-Basic-Stubs/microbit/display.py -------------------------------------------------------------------------------- /Microbit-Basic-Stubs/microbit/i2c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/Microbit-Basic-Stubs/microbit/i2c.py -------------------------------------------------------------------------------- /Microbit-Basic-Stubs/microbit/microphone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/Microbit-Basic-Stubs/microbit/microphone.py -------------------------------------------------------------------------------- /Microbit-Basic-Stubs/microbit/power.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/Microbit-Basic-Stubs/microbit/power.py -------------------------------------------------------------------------------- /Microbit-Basic-Stubs/microbit/speaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/Microbit-Basic-Stubs/microbit/speaker.py -------------------------------------------------------------------------------- /Microbit-Basic-Stubs/microbit/spi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/Microbit-Basic-Stubs/microbit/spi.py -------------------------------------------------------------------------------- /Microbit-Basic-Stubs/microbit/uart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/Microbit-Basic-Stubs/microbit/uart.py -------------------------------------------------------------------------------- /Microbit-Extended-Stubs/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/Microbit-Extended-Stubs/.gitattributes -------------------------------------------------------------------------------- /Microbit-Extended-Stubs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/Microbit-Extended-Stubs/LICENSE -------------------------------------------------------------------------------- /Microbit-Extended-Stubs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/Microbit-Extended-Stubs/README.md -------------------------------------------------------------------------------- /Microbit-Extended-Stubs/audio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/Microbit-Extended-Stubs/audio/__init__.py -------------------------------------------------------------------------------- /Microbit-Extended-Stubs/log/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/Microbit-Extended-Stubs/log/__init__.py -------------------------------------------------------------------------------- /Microbit-Extended-Stubs/machine/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/Microbit-Extended-Stubs/machine/__init__.py -------------------------------------------------------------------------------- /Microbit-Extended-Stubs/music/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/Microbit-Extended-Stubs/music/__init__.py -------------------------------------------------------------------------------- /Microbit-Extended-Stubs/neopixel/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/Microbit-Extended-Stubs/neopixel/__init__.py -------------------------------------------------------------------------------- /Microbit-Extended-Stubs/os/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/Microbit-Extended-Stubs/os/__init__.py -------------------------------------------------------------------------------- /Microbit-Extended-Stubs/radio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/Microbit-Extended-Stubs/radio/__init__.py -------------------------------------------------------------------------------- /Microbit-Extended-Stubs/random/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/Microbit-Extended-Stubs/random/__init__.py -------------------------------------------------------------------------------- /Microbit-Extended-Stubs/speech/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/Microbit-Extended-Stubs/speech/__init__.py -------------------------------------------------------------------------------- /Microbit-Extended-Stubs/utime/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/Microbit-Extended-Stubs/utime/__init__.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/README.md -------------------------------------------------------------------------------- /examples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/examples/.gitignore -------------------------------------------------------------------------------- /examples/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/examples/LICENSE -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/hello-world/main.py: -------------------------------------------------------------------------------- 1 | from microbit import * 2 | display.scroll("Hello, World!") 3 | -------------------------------------------------------------------------------- /images/commands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/images/commands.png -------------------------------------------------------------------------------- /images/flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/images/flash.png -------------------------------------------------------------------------------- /images/icon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/images/icon.ai -------------------------------------------------------------------------------- /images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/images/icon.png -------------------------------------------------------------------------------- /images/initialization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/images/initialization.png -------------------------------------------------------------------------------- /images/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/images/overview.png -------------------------------------------------------------------------------- /images/pinout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/images/pinout.png -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/package.json -------------------------------------------------------------------------------- /src/extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/src/extension.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/src/main.js -------------------------------------------------------------------------------- /src/python.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/src/python.js -------------------------------------------------------------------------------- /src/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/src/ui.js -------------------------------------------------------------------------------- /tools/microfs-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.gitignore -------------------------------------------------------------------------------- /tools/microfs-master/.pip/Babel-2.9.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/Babel-2.9.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | babel 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/Jinja2-3.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/Jinja2-3.0.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.36.2) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/Jinja2-3.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | jinja2 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/MarkupSafe-2.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/MarkupSafe-2.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | markupsafe 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/Pygments-2.10.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/Pygments-2.10.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.35.1) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/Pygments-2.10.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pygments 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/Sphinx-4.1.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/Sphinx-4.1.2.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/Sphinx-4.1.2.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.36.2) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/Sphinx-4.1.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | sphinx 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/_distutils_hack/override.py: -------------------------------------------------------------------------------- 1 | __import__('_distutils_hack').do_override() 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/_pytest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/_pytest/__init__.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/_pytest/_argcomplete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/_pytest/_argcomplete.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/_pytest/_code/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/_pytest/_code/__init__.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/_pytest/_code/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/_pytest/_code/code.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/_pytest/_code/source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/_pytest/_code/source.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/_pytest/_io/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/_pytest/_io/__init__.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/_pytest/_io/saferepr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/_pytest/_io/saferepr.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/_pytest/_io/wcwidth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/_pytest/_io/wcwidth.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/_pytest/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/_pytest/_version.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/_pytest/assertion/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/_pytest/assertion/util.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/_pytest/cacheprovider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/_pytest/cacheprovider.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/_pytest/capture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/_pytest/capture.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/_pytest/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/_pytest/compat.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/_pytest/debugging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/_pytest/debugging.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/_pytest/deprecated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/_pytest/deprecated.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/_pytest/doctest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/_pytest/doctest.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/_pytest/faulthandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/_pytest/faulthandler.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/_pytest/fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/_pytest/fixtures.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/_pytest/helpconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/_pytest/helpconfig.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/_pytest/hookspec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/_pytest/hookspec.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/_pytest/junitxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/_pytest/junitxml.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/_pytest/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/_pytest/logging.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/_pytest/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/_pytest/main.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/_pytest/monkeypatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/_pytest/monkeypatch.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/_pytest/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/_pytest/nodes.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/_pytest/nose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/_pytest/nose.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/_pytest/outcomes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/_pytest/outcomes.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/_pytest/pastebin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/_pytest/pastebin.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/_pytest/pathlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/_pytest/pathlib.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/_pytest/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/_pytest/pytester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/_pytest/pytester.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/_pytest/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/_pytest/python.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/_pytest/python_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/_pytest/python_api.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/_pytest/recwarn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/_pytest/recwarn.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/_pytest/reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/_pytest/reports.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/_pytest/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/_pytest/runner.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/_pytest/setuponly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/_pytest/setuponly.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/_pytest/setupplan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/_pytest/setupplan.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/_pytest/skipping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/_pytest/skipping.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/_pytest/stepwise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/_pytest/stepwise.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/_pytest/store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/_pytest/store.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/_pytest/terminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/_pytest/terminal.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/_pytest/timing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/_pytest/timing.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/_pytest/tmpdir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/_pytest/tmpdir.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/_pytest/unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/_pytest/unittest.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/_pytest/warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/_pytest/warnings.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/alabaster-0.7.12.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/alabaster-0.7.12.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | alabaster 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/alabaster/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/alabaster/__init__.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/alabaster/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/alabaster/_version.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/alabaster/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/alabaster/about.html -------------------------------------------------------------------------------- /tools/microfs-master/.pip/alabaster/donate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/alabaster/donate.html -------------------------------------------------------------------------------- /tools/microfs-master/.pip/alabaster/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/alabaster/layout.html -------------------------------------------------------------------------------- /tools/microfs-master/.pip/alabaster/static/custom.css: -------------------------------------------------------------------------------- 1 | /* This file intentionally left blank. */ 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/alabaster/support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/alabaster/support.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/alabaster/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/alabaster/theme.conf -------------------------------------------------------------------------------- /tools/microfs-master/.pip/attr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/attr/__init__.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/attr/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/attr/__init__.pyi -------------------------------------------------------------------------------- /tools/microfs-master/.pip/attr/_cmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/attr/_cmp.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/attr/_cmp.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/attr/_cmp.pyi -------------------------------------------------------------------------------- /tools/microfs-master/.pip/attr/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/attr/_compat.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/attr/_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/attr/_config.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/attr/_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/attr/_funcs.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/attr/_make.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/attr/_make.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/attr/_next_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/attr/_next_gen.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/attr/_version_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/attr/_version_info.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/attr/_version_info.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/attr/_version_info.pyi -------------------------------------------------------------------------------- /tools/microfs-master/.pip/attr/converters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/attr/converters.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/attr/converters.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/attr/converters.pyi -------------------------------------------------------------------------------- /tools/microfs-master/.pip/attr/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/attr/exceptions.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/attr/exceptions.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/attr/exceptions.pyi -------------------------------------------------------------------------------- /tools/microfs-master/.pip/attr/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/attr/filters.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/attr/filters.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/attr/filters.pyi -------------------------------------------------------------------------------- /tools/microfs-master/.pip/attr/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/attr/setters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/attr/setters.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/attr/setters.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/attr/setters.pyi -------------------------------------------------------------------------------- /tools/microfs-master/.pip/attr/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/attr/validators.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/attr/validators.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/attr/validators.pyi -------------------------------------------------------------------------------- /tools/microfs-master/.pip/attrs-21.2.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/attrs-21.2.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | attr 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/babel/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/babel/__init__.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/babel/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/babel/_compat.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/babel/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/babel/core.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/babel/dates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/babel/dates.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/babel/global.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/babel/global.dat -------------------------------------------------------------------------------- /tools/microfs-master/.pip/babel/languages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/babel/languages.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/babel/lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/babel/lists.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/babel/localedata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/babel/localedata.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/babel/numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/babel/numbers.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/babel/plural.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/babel/plural.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/babel/support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/babel/support.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/babel/units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/babel/units.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/babel/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/babel/util.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/bin/pyserial-miniterm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/bin/pyserial-miniterm -------------------------------------------------------------------------------- /tools/microfs-master/.pip/bin/pyserial-ports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/bin/pyserial-ports -------------------------------------------------------------------------------- /tools/microfs-master/.pip/certifi-2021.5.30.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/certifi-2021.5.30.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | certifi 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import contents, where 2 | 3 | __version__ = "2021.05.30" 4 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/certifi/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/certifi/__main__.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/certifi/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/certifi/cacert.pem -------------------------------------------------------------------------------- /tools/microfs-master/.pip/certifi/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/certifi/core.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/charset_normalizer-2.0.4.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/charset_normalizer-2.0.4.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | charset_normalizer 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/charset_normalizer/cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/charset_normalizer/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/coverage-5.5.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/coverage-5.5.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/coverage-5.5.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | coverage 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/coverage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/coverage/__init__.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/coverage/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/coverage/__main__.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/coverage/annotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/coverage/annotate.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/coverage/backward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/coverage/backward.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/coverage/bytecode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/coverage/bytecode.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/coverage/cmdline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/coverage/cmdline.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/coverage/collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/coverage/collector.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/coverage/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/coverage/config.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/coverage/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/coverage/context.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/coverage/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/coverage/control.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/coverage/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/coverage/data.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/coverage/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/coverage/debug.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/coverage/disposition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/coverage/disposition.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/coverage/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/coverage/env.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/coverage/execfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/coverage/execfile.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/coverage/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/coverage/files.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/coverage/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/coverage/html.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/coverage/inorout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/coverage/inorout.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/coverage/jsonreport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/coverage/jsonreport.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/coverage/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/coverage/misc.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/coverage/multiproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/coverage/multiproc.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/coverage/numbits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/coverage/numbits.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/coverage/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/coverage/parser.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/coverage/phystokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/coverage/phystokens.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/coverage/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/coverage/plugin.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/coverage/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/coverage/python.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/coverage/pytracer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/coverage/pytracer.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/coverage/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/coverage/report.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/coverage/results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/coverage/results.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/coverage/sqldata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/coverage/sqldata.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/coverage/summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/coverage/summary.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/coverage/templite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/coverage/templite.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/coverage/tomlconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/coverage/tomlconfig.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/coverage/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/coverage/version.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/coverage/xmlreport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/coverage/xmlreport.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/docutils-0.17.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/docutils-0.17.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | docutils 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/docutils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/docutils/__init__.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/docutils/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/docutils/core.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/docutils/examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/docutils/examples.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/docutils/frontend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/docutils/frontend.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/docutils/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/docutils/io.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/docutils/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/docutils/nodes.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/docutils/readers/pep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/docutils/readers/pep.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/docutils/utils/roman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/docutils/utils/roman.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/idna-3.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/idna-3.2.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.36.2) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/idna-3.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | idna 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/idna/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/idna/__init__.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/idna/codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/idna/codec.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/idna/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/idna/compat.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/idna/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/idna/core.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/idna/idnadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/idna/idnadata.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/idna/intranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/idna/intranges.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '3.2' 2 | 3 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/idna/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/idna/uts46data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/idna/uts46data.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/imagesize-1.2.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/imagesize-1.2.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | imagesize 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/imagesize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/imagesize.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/iniconfig-1.1.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/iniconfig-1.1.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | iniconfig 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/iniconfig/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/iniconfig/__init__.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/iniconfig/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/iniconfig/__init__.pyi -------------------------------------------------------------------------------- /tools/microfs-master/.pip/iniconfig/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/jinja2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/jinja2/__init__.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/jinja2/_identifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/jinja2/_identifier.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/jinja2/async_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/jinja2/async_utils.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/jinja2/bccache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/jinja2/bccache.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/jinja2/compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/jinja2/compiler.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/jinja2/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/jinja2/constants.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/jinja2/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/jinja2/debug.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/jinja2/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/jinja2/defaults.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/jinja2/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/jinja2/environment.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/jinja2/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/jinja2/exceptions.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/jinja2/ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/jinja2/ext.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/jinja2/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/jinja2/filters.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/jinja2/idtracking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/jinja2/idtracking.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/jinja2/lexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/jinja2/lexer.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/jinja2/loaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/jinja2/loaders.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/jinja2/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/jinja2/meta.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/jinja2/nativetypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/jinja2/nativetypes.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/jinja2/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/jinja2/nodes.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/jinja2/optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/jinja2/optimizer.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/jinja2/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/jinja2/parser.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/jinja2/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/jinja2/runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/jinja2/runtime.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/jinja2/sandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/jinja2/sandbox.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/jinja2/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/jinja2/tests.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/jinja2/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/jinja2/utils.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/jinja2/visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/jinja2/visitor.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/markupsafe/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/markupsafe/__init__.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/markupsafe/_native.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/markupsafe/_native.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/markupsafe/_speedups.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/markupsafe/_speedups.c -------------------------------------------------------------------------------- /tools/microfs-master/.pip/markupsafe/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/packaging-21.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/packaging-21.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.36.2) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/packaging-21.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | packaging 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/packaging/__about__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/packaging/__about__.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/packaging/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/packaging/__init__.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/packaging/_manylinux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/packaging/_manylinux.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/packaging/_musllinux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/packaging/_musllinux.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/packaging/markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/packaging/markers.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/packaging/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/packaging/specifiers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/packaging/specifiers.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/packaging/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/packaging/tags.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/packaging/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/packaging/utils.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/packaging/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/packaging/version.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pkg_resources/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pluggy-1.0.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pluggy-1.0.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pluggy 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pluggy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pluggy/__init__.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pluggy/_callers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pluggy/_callers.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pluggy/_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pluggy/_hooks.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pluggy/_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pluggy/_manager.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pluggy/_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pluggy/_result.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pluggy/_tracing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pluggy/_tracing.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pluggy/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pluggy/_version.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/py-1.10.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/py-1.10.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | py 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/py/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/py/__init__.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/py/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/py/__init__.pyi -------------------------------------------------------------------------------- /tools/microfs-master/.pip/py/__metainfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/py/__metainfo.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/py/_builtin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/py/_builtin.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/py/_code/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/py/_code/__init__.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/py/_code/assertion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/py/_code/assertion.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/py/_code/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/py/_code/code.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/py/_code/source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/py/_code/source.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/py/_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/py/_error.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/py/_io/__init__.py: -------------------------------------------------------------------------------- 1 | """ input/output helping """ 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/py/_io/capture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/py/_io/capture.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/py/_io/saferepr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/py/_io/saferepr.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/py/_log/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/py/_log/__init__.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/py/_log/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/py/_log/log.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/py/_log/warning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/py/_log/warning.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/py/_path/__init__.py: -------------------------------------------------------------------------------- 1 | """ unified file system api """ 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/py/_path/cacheutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/py/_path/cacheutil.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/py/_path/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/py/_path/common.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/py/_path/local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/py/_path/local.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/py/_path/svnurl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/py/_path/svnurl.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/py/_path/svnwc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/py/_path/svnwc.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/py/_process/__init__.py: -------------------------------------------------------------------------------- 1 | """ high-level sub-process handling """ 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/py/_process/cmdexec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/py/_process/cmdexec.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/py/_process/killproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/py/_process/killproc.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/py/_std.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/py/_std.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/py/_vendored_packages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/py/_vendored_packages/apipkg-1.5.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/py/_vendored_packages/apipkg-1.5.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/py/_vendored_packages/apipkg-1.5.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | apipkg 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/py/_vendored_packages/iniconfig-1.1.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/py/_vendored_packages/iniconfig-1.1.1.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/py/_vendored_packages/iniconfig-1.1.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | iniconfig 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/py/_vendored_packages/iniconfig/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/py/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/py/_version.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/py/_xmlgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/py/_xmlgen.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/py/error.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/py/error.pyi -------------------------------------------------------------------------------- /tools/microfs-master/.pip/py/iniconfig.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/py/iniconfig.pyi -------------------------------------------------------------------------------- /tools/microfs-master/.pip/py/io.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/py/io.pyi -------------------------------------------------------------------------------- /tools/microfs-master/.pip/py/path.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/py/path.pyi -------------------------------------------------------------------------------- /tools/microfs-master/.pip/py/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/py/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/py/test.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/py/xml.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/py/xml.pyi -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pycodestyle-2.7.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pycodestyle-2.7.0.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pycodestyle-2.7.0.dist-info/namespace_packages.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pycodestyle-2.7.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pycodestyle 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pycodestyle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pycodestyle.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pyflakes-2.3.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pyflakes-2.3.1.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pyflakes-2.3.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pyflakes 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pyflakes/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.3.1' 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pyflakes/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pyflakes/__main__.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pyflakes/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pyflakes/api.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pyflakes/checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pyflakes/checker.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pyflakes/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pyflakes/messages.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pyflakes/reporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pyflakes/reporter.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pyflakes/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pyflakes/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/__init__.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/__main__.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/cmdline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/cmdline.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/console.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/filter.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/formatter.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexer.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/ampl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/ampl.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/apl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/apl.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/asc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/asc.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/asm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/asm.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/bare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/bare.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/boa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/boa.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/cddl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/cddl.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/css.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/css.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/d.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/data.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/diff.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/dsls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/dsls.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/ecl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/ecl.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/elm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/elm.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/go.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/gsql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/gsql.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/haxe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/haxe.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/hdl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/hdl.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/html.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/idl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/idl.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/igor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/igor.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/j.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/j.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/jslt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/jslt.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/jvm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/jvm.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/kuin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/kuin.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/lisp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/lisp.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/make.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/make.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/math.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/mime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/mime.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/ml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/ml.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/ncl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/ncl.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/nit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/nit.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/nix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/nix.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/ooc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/ooc.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/pawn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/pawn.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/perl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/perl.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/php.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/php.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/pony.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/pony.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/qvt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/qvt.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/r.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/r.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/rdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/rdf.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/ride.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/ride.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/rnc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/rnc.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/ruby.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/ruby.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/rust.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/rust.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/sas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/sas.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/sgf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/sgf.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/smv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/smv.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/sql.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/tcl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/tcl.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/teal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/teal.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/text.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/tnt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/tnt.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/urbi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/urbi.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/usd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/usd.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/web.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/x10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/x10.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/xorg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/xorg.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/yang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/yang.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/lexers/zig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/lexers/zig.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/modeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/modeline.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/plugin.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/regexopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/regexopt.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/scanner.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/sphinxext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/sphinxext.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/style.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/styles/abap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/styles/abap.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/styles/bw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/styles/bw.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/styles/igor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/styles/igor.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/styles/rrt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/styles/rrt.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/styles/sas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/styles/sas.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/styles/trac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/styles/trac.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/styles/vim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/styles/vim.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/styles/vs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/styles/vs.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/token.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/unistring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/unistring.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pygments/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pygments/util.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pyparsing-2.4.7.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pyparsing-2.4.7.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pyparsing 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pyparsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pyparsing.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pyserial-3.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pyserial-3.0.1.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pyserial-3.0.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.36.2) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pyserial-3.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | serial 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pyserial-3.5.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pyserial-3.5.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pyserial-3.5.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | serial 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytest-6.2.5.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytest-6.2.5.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytest-6.2.5.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.37.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytest-cov.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytest-cov.pth -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytest/__init__.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytest/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytest/__main__.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytest/collect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytest/collect.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytest/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytest_cov-2.12.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytest_cov-2.12.1.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytest_cov-2.12.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pytest_cov 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytest_cov/__init__.py: -------------------------------------------------------------------------------- 1 | """pytest-cov: avoid already-imported warning: PYTEST_DONT_REWRITE.""" 2 | __version__ = '2.12.1' 3 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytest_cov/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytest_cov/compat.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytest_cov/embed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytest_cov/embed.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytest_cov/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytest_cov/engine.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytest_cov/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytest_cov/plugin.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz-2021.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz-2021.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pytz 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz-2021.1.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/__init__.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/exceptions.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/lazy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/lazy.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/reference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/reference.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/tzfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/tzfile.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/tzinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/tzinfo.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/Asia/Aden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/Asia/Aden -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/Asia/Baku: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/Asia/Baku -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/Asia/Dili: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/Asia/Dili -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/Asia/Gaza: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/Asia/Gaza -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/Asia/Hovd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/Asia/Hovd -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/Asia/Omsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/Asia/Omsk -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/Asia/Oral: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/Asia/Oral -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/CET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/CET -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/CST6CDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/CST6CDT -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/Cuba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/Cuba -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/EET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/EET -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/EST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/EST -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/EST5EDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/EST5EDT -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/Egypt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/Egypt -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/Eire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/Eire -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/Etc/GMT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/Etc/GMT -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/Etc/GMT+0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/Etc/GMT+0 -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/Etc/GMT+1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/Etc/GMT+1 -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/Etc/GMT+2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/Etc/GMT+2 -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/Etc/GMT+3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/Etc/GMT+3 -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/Etc/GMT+4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/Etc/GMT+4 -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/Etc/GMT+5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/Etc/GMT+5 -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/Etc/GMT+6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/Etc/GMT+6 -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/Etc/GMT+7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/Etc/GMT+7 -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/Etc/GMT+8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/Etc/GMT+8 -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/Etc/GMT+9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/Etc/GMT+9 -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/Etc/GMT-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/Etc/GMT-0 -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/Etc/GMT-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/Etc/GMT-1 -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/Etc/GMT-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/Etc/GMT-2 -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/Etc/GMT-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/Etc/GMT-3 -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/Etc/GMT-4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/Etc/GMT-4 -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/Etc/GMT-5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/Etc/GMT-5 -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/Etc/GMT-6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/Etc/GMT-6 -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/Etc/GMT-7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/Etc/GMT-7 -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/Etc/GMT-8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/Etc/GMT-8 -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/Etc/GMT-9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/Etc/GMT-9 -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/Etc/GMT0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/Etc/GMT0 -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/Etc/UCT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/Etc/UCT -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/Etc/UTC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/Etc/UTC -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/Etc/Zulu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/Etc/Zulu -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/Factory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/Factory -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/GB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/GB -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/GB-Eire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/GB-Eire -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/GMT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/GMT -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/GMT+0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/GMT+0 -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/GMT-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/GMT-0 -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/GMT0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/GMT0 -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/Greenwich: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/Greenwich -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/HST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/HST -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/Hongkong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/Hongkong -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/Iceland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/Iceland -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/Iran: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/Iran -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/Israel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/Israel -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/Jamaica: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/Jamaica -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/Japan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/Japan -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/Kwajalein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/Kwajalein -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/Libya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/Libya -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/MET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/MET -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/MST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/MST -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/MST7MDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/MST7MDT -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/NZ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/NZ -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/NZ-CHAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/NZ-CHAT -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/Navajo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/Navajo -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/PRC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/PRC -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/PST8PDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/PST8PDT -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/Poland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/Poland -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/Portugal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/Portugal -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/ROC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/ROC -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/ROK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/ROK -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/Singapore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/Singapore -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/Turkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/Turkey -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/UCT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/UCT -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/US/Alaska: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/US/Alaska -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/US/Hawaii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/US/Hawaii -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/US/Samoa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/US/Samoa -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/UTC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/UTC -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/Universal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/Universal -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/W-SU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/W-SU -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/WET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/WET -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/Zulu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/Zulu -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/tzdata.zi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/tzdata.zi -------------------------------------------------------------------------------- /tools/microfs-master/.pip/pytz/zoneinfo/zone.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/pytz/zoneinfo/zone.tab -------------------------------------------------------------------------------- /tools/microfs-master/.pip/requests-2.26.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/requests-2.26.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | requests 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/requests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/requests/__init__.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/requests/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/requests/__version__.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/requests/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/requests/adapters.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/requests/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/requests/api.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/requests/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/requests/auth.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/requests/certs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/requests/certs.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/requests/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/requests/compat.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/requests/cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/requests/cookies.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/requests/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/requests/exceptions.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/requests/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/requests/help.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/requests/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/requests/hooks.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/requests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/requests/models.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/requests/packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/requests/packages.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/requests/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/requests/sessions.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/requests/structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/requests/structures.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/requests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/requests/utils.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/serial/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/serial/__init__.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/serial/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/serial/__main__.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/serial/rfc2217.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/serial/rfc2217.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/serial/rs485.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/serial/rs485.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/serial/serialcli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/serial/serialcli.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/serial/serialjava.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/serial/serialjava.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/serial/serialposix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/serial/serialposix.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/serial/serialutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/serial/serialutil.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/serial/serialwin32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/serial/serialwin32.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/serial/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/serial/urlhandler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/serial/win32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/serial/win32.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/setuptools-58.0.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/setuptools-58.0.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.37.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/setuptools-58.0.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | _distutils_hack 2 | pkg_resources 3 | setuptools 4 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/setuptools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/setuptools/__init__.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/setuptools/_imp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/setuptools/_imp.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/setuptools/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/setuptools/cli-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/setuptools/cli-32.exe -------------------------------------------------------------------------------- /tools/microfs-master/.pip/setuptools/cli-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/setuptools/cli-64.exe -------------------------------------------------------------------------------- /tools/microfs-master/.pip/setuptools/cli.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/setuptools/cli.exe -------------------------------------------------------------------------------- /tools/microfs-master/.pip/setuptools/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/setuptools/config.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/setuptools/dep_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/setuptools/dep_util.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/setuptools/depends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/setuptools/depends.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/setuptools/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/setuptools/dist.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/setuptools/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/setuptools/errors.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/setuptools/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/setuptools/extension.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/setuptools/glob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/setuptools/glob.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/setuptools/gui-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/setuptools/gui-32.exe -------------------------------------------------------------------------------- /tools/microfs-master/.pip/setuptools/gui-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/setuptools/gui-64.exe -------------------------------------------------------------------------------- /tools/microfs-master/.pip/setuptools/gui.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/setuptools/gui.exe -------------------------------------------------------------------------------- /tools/microfs-master/.pip/setuptools/installer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/setuptools/installer.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/setuptools/launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/setuptools/launch.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/setuptools/monkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/setuptools/monkey.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/setuptools/msvc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/setuptools/msvc.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/setuptools/sandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/setuptools/sandbox.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/setuptools/script.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/setuptools/script.tmpl -------------------------------------------------------------------------------- /tools/microfs-master/.pip/setuptools/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/setuptools/version.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/setuptools/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/setuptools/wheel.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/snowballstemmer-2.1.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/snowballstemmer-2.1.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | snowballstemmer 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/__init__.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/__main__.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/addnodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/addnodes.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/application.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/builders/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/builders/text.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/builders/xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/builders/xml.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/cmd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/cmd/__init__.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/cmd/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/cmd/build.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/cmd/make_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/cmd/make_mode.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/config.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/deprecation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/deprecation.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/domains/c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/domains/c.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/domains/cpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/domains/cpp.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/domains/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/domains/index.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/domains/math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/domains/math.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/domains/rst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/domains/rst.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/domains/std.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/domains/std.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/errors.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/events.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/ext/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/ext/__init__.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/ext/apidoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/ext/apidoc.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/ext/coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/ext/coverage.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/ext/doctest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/ext/doctest.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/ext/duration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/ext/duration.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/ext/extlinks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/ext/extlinks.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/ext/graphviz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/ext/graphviz.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/ext/ifconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/ext/ifconfig.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/ext/imgmath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/ext/imgmath.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/ext/linkcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/ext/linkcode.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/ext/mathjax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/ext/mathjax.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/ext/todo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/ext/todo.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/ext/viewcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/ext/viewcode.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/extension.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/highlighting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/highlighting.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/io.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/jinja2glue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/jinja2glue.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/parsers.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/project.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/pycode/ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/pycode/ast.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/pycode/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/pycode/parser.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/registry.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/roles.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/search/da.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/search/da.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/search/de.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/search/de.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/search/en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/search/en.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/search/es.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/search/es.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/search/fi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/search/fi.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/search/fr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/search/fr.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/search/hu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/search/hu.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/search/it.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/search/it.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/search/ja.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/search/ja.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/search/nl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/search/nl.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/search/no.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/search/no.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/search/pt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/search/pt.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/search/ro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/search/ro.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/search/ru.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/search/ru.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/search/sv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/search/sv.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/search/tr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/search/tr.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/search/zh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/search/zh.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/setup_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/setup_command.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/templates/epub3/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/testing/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/testing/path.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/testing/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/testing/util.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/themes/default/static/default.css: -------------------------------------------------------------------------------- 1 | @import url("classic.css"); 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/themes/default/theme.conf: -------------------------------------------------------------------------------- 1 | [theme] 2 | inherit = classic 3 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/theming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/theming.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/util/__init__.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/util/cfamily.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/util/cfamily.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/util/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/util/compat.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/util/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/util/console.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/util/docutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/util/docutils.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/util/fileutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/util/fileutil.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/util/i18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/util/i18n.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/util/images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/util/images.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/util/inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/util/inspect.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/util/jsdump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/util/jsdump.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/util/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/util/logging.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/util/matching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/util/matching.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/util/math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/util/math.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/util/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/util/nodes.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/util/osutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/util/osutil.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/util/parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/util/parallel.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/util/png.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/util/png.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/util/pycompat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/util/pycompat.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/util/requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/util/requests.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/util/rst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/util/rst.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/util/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/util/tags.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/util/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/util/template.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/util/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/util/typing.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/versioning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/versioning.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/writers/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/writers/html.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/writers/html5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/writers/html5.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/writers/latex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/writers/latex.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/writers/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/writers/text.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinx/writers/xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/sphinx/writers/xml.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinxcontrib_applehelp-1.0.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinxcontrib_applehelp-1.0.2.dist-info/namespace_packages.txt: -------------------------------------------------------------------------------- 1 | sphinxcontrib 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinxcontrib_applehelp-1.0.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | sphinxcontrib 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinxcontrib_devhelp-1.0.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinxcontrib_devhelp-1.0.2.dist-info/namespace_packages.txt: -------------------------------------------------------------------------------- 1 | sphinxcontrib 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinxcontrib_devhelp-1.0.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | sphinxcontrib 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinxcontrib_htmlhelp-2.0.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinxcontrib_htmlhelp-2.0.0.dist-info/namespace_packages.txt: -------------------------------------------------------------------------------- 1 | sphinxcontrib 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinxcontrib_htmlhelp-2.0.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | sphinxcontrib 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinxcontrib_jsmath-1.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinxcontrib_jsmath-1.0.1.dist-info/namespace_packages.txt: -------------------------------------------------------------------------------- 1 | sphinxcontrib 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinxcontrib_jsmath-1.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | sphinxcontrib 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinxcontrib_qthelp-1.0.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinxcontrib_qthelp-1.0.3.dist-info/namespace_packages.txt: -------------------------------------------------------------------------------- 1 | sphinxcontrib 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinxcontrib_qthelp-1.0.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | sphinxcontrib 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinxcontrib_serializinghtml-1.1.5.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinxcontrib_serializinghtml-1.1.5.dist-info/namespace_packages.txt: -------------------------------------------------------------------------------- 1 | sphinxcontrib 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/sphinxcontrib_serializinghtml-1.1.5.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | sphinxcontrib 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/toml-0.10.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/toml-0.10.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | toml 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/toml/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/toml/__init__.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/toml/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/toml/decoder.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/toml/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/toml/encoder.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/toml/ordered.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/toml/ordered.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/toml/tz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/toml/tz.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/urllib3-1.26.6.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/urllib3-1.26.6.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | urllib3 2 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/urllib3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/urllib3/__init__.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/urllib3/_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/urllib3/_collections.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/urllib3/_version.py: -------------------------------------------------------------------------------- 1 | # This file is protected via CODEOWNERS 2 | __version__ = "1.26.6" 3 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/urllib3/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/urllib3/connection.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/urllib3/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/urllib3/exceptions.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/urllib3/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/urllib3/fields.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/urllib3/filepost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/urllib3/filepost.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/microfs-master/.pip/urllib3/packages/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/urllib3/packages/six.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/urllib3/poolmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/urllib3/poolmanager.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/urllib3/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/urllib3/request.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/urllib3/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/urllib3/response.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/urllib3/util/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/urllib3/util/proxy.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/urllib3/util/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/urllib3/util/queue.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/urllib3/util/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/urllib3/util/request.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/urllib3/util/retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/urllib3/util/retry.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/urllib3/util/ssl_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/urllib3/util/ssl_.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/urllib3/util/timeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/urllib3/util/timeout.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/urllib3/util/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/urllib3/util/url.py -------------------------------------------------------------------------------- /tools/microfs-master/.pip/urllib3/util/wait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/.pip/urllib3/util/wait.py -------------------------------------------------------------------------------- /tools/microfs-master/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/AUTHORS -------------------------------------------------------------------------------- /tools/microfs-master/CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/CHANGES.rst -------------------------------------------------------------------------------- /tools/microfs-master/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/LICENSE -------------------------------------------------------------------------------- /tools/microfs-master/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/README.rst -------------------------------------------------------------------------------- /tools/microfs-master/microfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/microfs.py -------------------------------------------------------------------------------- /tools/microfs-master/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/requirements.txt -------------------------------------------------------------------------------- /tools/microfs-master/ufs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/microfs-master/ufs.py -------------------------------------------------------------------------------- /tools/uflash-master/.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/uflash-master/.github/workflows/test.yml -------------------------------------------------------------------------------- /tools/uflash-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/uflash-master/.gitignore -------------------------------------------------------------------------------- /tools/uflash-master/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/uflash-master/AUTHORS -------------------------------------------------------------------------------- /tools/uflash-master/CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/uflash-master/CHANGES.rst -------------------------------------------------------------------------------- /tools/uflash-master/CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/uflash-master/CONTRIBUTING.rst -------------------------------------------------------------------------------- /tools/uflash-master/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/uflash-master/LICENSE -------------------------------------------------------------------------------- /tools/uflash-master/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/uflash-master/MANIFEST.in -------------------------------------------------------------------------------- /tools/uflash-master/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/uflash-master/Makefile -------------------------------------------------------------------------------- /tools/uflash-master/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/uflash-master/README.rst -------------------------------------------------------------------------------- /tools/uflash-master/firmware.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/uflash-master/firmware.hex -------------------------------------------------------------------------------- /tools/uflash-master/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/uflash-master/requirements.txt -------------------------------------------------------------------------------- /tools/uflash-master/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/uflash-master/setup.py -------------------------------------------------------------------------------- /tools/uflash-master/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/uflash-master/tox.ini -------------------------------------------------------------------------------- /tools/uflash-master/uflash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinteract/vscode-microbit-micropython/HEAD/tools/uflash-master/uflash.py --------------------------------------------------------------------------------