├── .editorconfig ├── .gitignore ├── CMakeLists.txt ├── CMakePresets.json ├── LICENSE ├── README.md ├── bin_files └── flags │ ├── Round │ ├── more_flags.txt │ ├── ru64.png │ ├── us16.png │ └── us32.png │ └── Square │ ├── by16.png │ ├── by32.png │ ├── de16.png │ ├── de32.png │ ├── more_flags.txt │ ├── ru16.png │ ├── ru32.png │ ├── ru64.png │ ├── ua16.png │ ├── ua32.png │ ├── us16.png │ ├── us32.png │ └── us64.png ├── build.py ├── cert ├── CreateCARoot.cmd ├── SignExe.cmd ├── SimpleSwitcher.cer ├── SimpleSwitcher.pfx ├── SimpleSwitcher.pvk ├── checksum.exe └── checksum.sha256 ├── doc └── img1.png ├── extern ├── imgui │ ├── .editorconfig │ ├── .gitattributes │ ├── .gitignore │ ├── LICENSE.txt │ ├── backends │ │ ├── imgui_impl_dx11.cpp │ │ ├── imgui_impl_dx11.h │ │ ├── imgui_impl_win32.cpp │ │ └── imgui_impl_win32.h │ ├── imconfig.h │ ├── imgui.cpp │ ├── imgui.h │ ├── imgui_demo.cpp │ ├── imgui_draw.cpp │ ├── imgui_internal.h │ ├── imgui_tables.cpp │ ├── imgui_widgets.cpp │ ├── imstb_rectpack.h │ ├── imstb_textedit.h │ ├── imstb_truetype.h │ └── misc │ │ ├── README.txt │ │ ├── cpp │ │ ├── README.txt │ │ ├── imgui_stdlib.cpp │ │ └── imgui_stdlib.h │ │ ├── debuggers │ │ ├── README.txt │ │ ├── imgui.gdb │ │ ├── imgui.natstepfilter │ │ └── imgui.natvis │ │ ├── fonts │ │ ├── Cousine-Regular.ttf │ │ ├── DroidSans.ttf │ │ ├── Karla-Regular.ttf │ │ ├── ProggyClean.ttf │ │ ├── ProggyTiny.ttf │ │ ├── Roboto-Medium.ttf │ │ └── binary_to_compressed_c.cpp │ │ ├── freetype │ │ ├── README.md │ │ ├── imgui_freetype.cpp │ │ └── imgui_freetype.h │ │ └── single_file │ │ └── imgui_single_file.h ├── imgui_sugar.hpp ├── json.hpp ├── simple_enum │ ├── basic_fixed_string.hpp │ ├── core.hpp │ ├── detail │ │ ├── static_call_operator_epilog.h │ │ ├── static_call_operator_prolog.h │ │ └── stralgo_inplace.hpp │ ├── enum_cast.hpp │ ├── enum_index.hpp │ ├── expected.h │ ├── generic_error_category.hpp │ ├── generic_error_category_impl.hpp │ ├── indexed_access.hpp │ ├── ranges_views.hpp │ ├── simple_enum.hpp │ └── std_format.hpp ├── stb_image.h └── std_image_impl.cpp ├── flags ├── .gitignore ├── countries.json ├── en.ico ├── en.png ├── flag_res16.rc ├── flag_res32.rc ├── genres.py ├── genres_resized.py ├── info.txt ├── package.json ├── png16px │ ├── AD.png │ ├── AE.png │ ├── AF.png │ ├── AG.png │ ├── AI.png │ ├── AL.png │ ├── AM.png │ ├── AO.png │ ├── AQ.png │ ├── AR.png │ ├── AS.png │ ├── AT.png │ ├── AU.png │ ├── AW.png │ ├── AX.png │ ├── AZ.png │ ├── BA.png │ ├── BB.png │ ├── BD.png │ ├── BE.png │ ├── BF.png │ ├── BG.png │ ├── BH.png │ ├── BI.png │ ├── BJ.png │ ├── BL.png │ ├── BM.png │ ├── BN.png │ ├── BO.png │ ├── BR.png │ ├── BS.png │ ├── BT.png │ ├── BV.png │ ├── BW.png │ ├── BY.png │ ├── BZ.png │ ├── CA.png │ ├── CC.png │ ├── CD.png │ ├── CF.png │ ├── CG.png │ ├── CH.png │ ├── CI.png │ ├── CK.png │ ├── CL.png │ ├── CM.png │ ├── CN.png │ ├── CO.png │ ├── CR.png │ ├── CU.png │ ├── CV.png │ ├── CW.png │ ├── CX.png │ ├── CY.png │ ├── CZ.png │ ├── DE.png │ ├── DJ.png │ ├── DK.png │ ├── DM.png │ ├── DO.png │ ├── DZ.png │ ├── EC.png │ ├── EE.png │ ├── EG.png │ ├── EH.png │ ├── ER.png │ ├── ES.png │ ├── ET.png │ ├── FI.png │ ├── FJ.png │ ├── FK.png │ ├── FM.png │ ├── FO.png │ ├── FR.png │ ├── GA.png │ ├── GB.png │ ├── GD.png │ ├── GE.png │ ├── GF.png │ ├── GG.png │ ├── GH.png │ ├── GI.png │ ├── GL.png │ ├── GM.png │ ├── GN.png │ ├── GP.png │ ├── GQ.png │ ├── GR.png │ ├── GS.png │ ├── GT.png │ ├── GU.png │ ├── GW.png │ ├── GY.png │ ├── HK.png │ ├── HM.png │ ├── HN.png │ ├── HR.png │ ├── HT.png │ ├── HU.png │ ├── ID.png │ ├── IE.png │ ├── IL.png │ ├── IM.png │ ├── IN.png │ ├── IO.png │ ├── IQ.png │ ├── IR.png │ ├── IS.png │ ├── IT.png │ ├── JE.png │ ├── JM.png │ ├── JO.png │ ├── JP.png │ ├── KG.png │ ├── KH.png │ ├── KI.png │ ├── KM.png │ ├── KN.png │ ├── KP.png │ ├── KR.png │ ├── KW.png │ ├── KY.png │ ├── KZ.png │ ├── LA.png │ ├── LB.png │ ├── LC.png │ ├── LI.png │ ├── LK.png │ ├── LR.png │ ├── LS.png │ ├── LT.png │ ├── LU.png │ ├── LV.png │ ├── LY.png │ ├── MA.png │ ├── MC.png │ ├── MD.png │ ├── ME.png │ ├── MF.png │ ├── MG.png │ ├── MH.png │ ├── MK.png │ ├── ML.png │ ├── MM.png │ ├── MN.png │ ├── MO.png │ ├── MP.png │ ├── MQ.png │ ├── MR.png │ ├── MS.png │ ├── MU.png │ ├── MV.png │ ├── MW.png │ ├── MX.png │ ├── MY.png │ ├── MZ.png │ ├── NA.png │ ├── NC.png │ ├── NE.png │ ├── NF.png │ ├── NG.png │ ├── NI.png │ ├── NL.png │ ├── NO.png │ ├── NP.png │ ├── NR.png │ ├── NU.png │ ├── NZ.png │ ├── OM.png │ ├── PA.png │ ├── PE.png │ ├── PF.png │ ├── PG.png │ ├── PH.png │ ├── PK.png │ ├── PL.png │ ├── PM.png │ ├── PN.png │ ├── PR.png │ ├── PS.png │ ├── PT.png │ ├── PW.png │ ├── PY.png │ ├── QA.png │ ├── RE.png │ ├── RO.png │ ├── RS.png │ ├── RU.png │ ├── RW.png │ ├── SA.png │ ├── SB.png │ ├── SC.png │ ├── SD.png │ ├── SE.png │ ├── SG.png │ ├── SH.png │ ├── SI.png │ ├── SJ.png │ ├── SK.png │ ├── SL.png │ ├── SM.png │ ├── SN.png │ ├── SO.png │ ├── SR.png │ ├── SS.png │ ├── ST.png │ ├── SV.png │ ├── SX.png │ ├── SY.png │ ├── SZ.png │ ├── TC.png │ ├── TD.png │ ├── TF.png │ ├── TG.png │ ├── TH.png │ ├── TJ.png │ ├── TK.png │ ├── TL.png │ ├── TM.png │ ├── TN.png │ ├── TO.png │ ├── TR.png │ ├── TT.png │ ├── TV.png │ ├── TW.png │ ├── TZ.png │ ├── UA.png │ ├── UG.png │ ├── UM.png │ ├── US.png │ ├── UY.png │ ├── UZ.png │ ├── VA.png │ ├── VC.png │ ├── VE.png │ ├── VG.png │ ├── VI.png │ ├── VN.png │ ├── VU.png │ ├── WF.png │ ├── WS.png │ ├── XK.png │ ├── YE.png │ ├── ZA.png │ └── ZM.png ├── png32px │ ├── AD.png │ ├── AE.png │ ├── AF.png │ ├── AG.png │ ├── AI.png │ ├── AL.png │ ├── AM.png │ ├── AO.png │ ├── AQ.png │ ├── AR.png │ ├── AS.png │ ├── AT.png │ ├── AU.png │ ├── AW.png │ ├── AX.png │ ├── AZ.png │ ├── BA.png │ ├── BB.png │ ├── BD.png │ ├── BE.png │ ├── BF.png │ ├── BG.png │ ├── BH.png │ ├── BI.png │ ├── BJ.png │ ├── BL.png │ ├── BM.png │ ├── BN.png │ ├── BO.png │ ├── BR.png │ ├── BS.png │ ├── BT.png │ ├── BV.png │ ├── BW.png │ ├── BY.png │ ├── BZ.png │ ├── CA.png │ ├── CC.png │ ├── CD.png │ ├── CF.png │ ├── CG.png │ ├── CH.png │ ├── CI.png │ ├── CK.png │ ├── CL.png │ ├── CM.png │ ├── CN.png │ ├── CO.png │ ├── CR.png │ ├── CU.png │ ├── CV.png │ ├── CW.png │ ├── CX.png │ ├── CY.png │ ├── CZ.png │ ├── DE.png │ ├── DJ.png │ ├── DK.png │ ├── DM.png │ ├── DO.png │ ├── DZ.png │ ├── EC.png │ ├── EE.png │ ├── EG.png │ ├── EH.png │ ├── ER.png │ ├── ES.png │ ├── ET.png │ ├── FI.png │ ├── FJ.png │ ├── FK.png │ ├── FM.png │ ├── FO.png │ ├── FR.png │ ├── GA.png │ ├── GB.png │ ├── GD.png │ ├── GE.png │ ├── GF.png │ ├── GG.png │ ├── GH.png │ ├── GI.png │ ├── GL.png │ ├── GM.png │ ├── GN.png │ ├── GP.png │ ├── GQ.png │ ├── GR.png │ ├── GS.png │ ├── GT.png │ ├── GU.png │ ├── GW.png │ ├── GY.png │ ├── HK.png │ ├── HM.png │ ├── HN.png │ ├── HR.png │ ├── HT.png │ ├── HU.png │ ├── ID.png │ ├── IE.png │ ├── IL.png │ ├── IM.png │ ├── IN.png │ ├── IO.png │ ├── IQ.png │ ├── IR.png │ ├── IS.png │ ├── IT.png │ ├── JE.png │ ├── JM.png │ ├── JO.png │ ├── JP.png │ ├── KG.png │ ├── KH.png │ ├── KI.png │ ├── KM.png │ ├── KN.png │ ├── KP.png │ ├── KR.png │ ├── KW.png │ ├── KY.png │ ├── KZ.png │ ├── LA.png │ ├── LB.png │ ├── LC.png │ ├── LI.png │ ├── LK.png │ ├── LR.png │ ├── LS.png │ ├── LT.png │ ├── LU.png │ ├── LV.png │ ├── LY.png │ ├── MA.png │ ├── MC.png │ ├── MD.png │ ├── ME.png │ ├── MF.png │ ├── MG.png │ ├── MH.png │ ├── MK.png │ ├── ML.png │ ├── MM.png │ ├── MN.png │ ├── MO.png │ ├── MP.png │ ├── MQ.png │ ├── MR.png │ ├── MS.png │ ├── MU.png │ ├── MV.png │ ├── MW.png │ ├── MX.png │ ├── MY.png │ ├── MZ.png │ ├── NA.png │ ├── NC.png │ ├── NE.png │ ├── NF.png │ ├── NG.png │ ├── NI.png │ ├── NL.png │ ├── NO.png │ ├── NP.png │ ├── NR.png │ ├── NU.png │ ├── NZ.png │ ├── OM.png │ ├── PA.png │ ├── PE.png │ ├── PF.png │ ├── PG.png │ ├── PH.png │ ├── PK.png │ ├── PL.png │ ├── PM.png │ ├── PN.png │ ├── PR.png │ ├── PS.png │ ├── PT.png │ ├── PW.png │ ├── PY.png │ ├── QA.png │ ├── RE.png │ ├── RO.png │ ├── RS.png │ ├── RU.png │ ├── RW.png │ ├── SA.png │ ├── SB.png │ ├── SC.png │ ├── SD.png │ ├── SE.png │ ├── SG.png │ ├── SH.png │ ├── SI.png │ ├── SJ.png │ ├── SK.png │ ├── SL.png │ ├── SM.png │ ├── SN.png │ ├── SO.png │ ├── SR.png │ ├── SS.png │ ├── ST.png │ ├── SV.png │ ├── SX.png │ ├── SY.png │ ├── SZ.png │ ├── TC.png │ ├── TD.png │ ├── TF.png │ ├── TG.png │ ├── TH.png │ ├── TJ.png │ ├── TK.png │ ├── TL.png │ ├── TM.png │ ├── TN.png │ ├── TO.png │ ├── TR.png │ ├── TT.png │ ├── TV.png │ ├── TW.png │ ├── TZ.png │ ├── UA.png │ ├── UG.png │ ├── UM.png │ ├── US.png │ ├── UY.png │ ├── UZ.png │ ├── VA.png │ ├── VC.png │ ├── VE.png │ ├── VG.png │ ├── VI.png │ ├── VN.png │ ├── VU.png │ ├── WF.png │ ├── WS.png │ ├── XK.png │ ├── YE.png │ ├── ZA.png │ └── ZM.png ├── ru.ico ├── scripts │ ├── build-pngs.js │ ├── flags.json │ └── run.cmd ├── set1_32 │ ├── ad.png │ ├── ae.png │ ├── af.png │ ├── ag.png │ ├── ai.png │ ├── al.png │ ├── am.png │ ├── an.png │ ├── ao.png │ ├── aq.png │ ├── ar.png │ ├── as.png │ ├── at.png │ ├── au.png │ ├── aw.png │ ├── ax.png │ ├── az.png │ ├── ba.png │ ├── bb.png │ ├── bd.png │ ├── be.png │ ├── bf.png │ ├── bg.png │ ├── bh.png │ ├── bi.png │ ├── bj.png │ ├── bl.png │ ├── bm.png │ ├── bn.png │ ├── bo.png │ ├── br.png │ ├── bs.png │ ├── bt.png │ ├── bv.png │ ├── bw.png │ ├── by.png │ ├── bz.png │ ├── ca.png │ ├── cc.png │ ├── cd.png │ ├── cf.png │ ├── cg.png │ ├── ch.png │ ├── ci.png │ ├── ck.png │ ├── cl.png │ ├── cm.png │ ├── cn.png │ ├── co.png │ ├── cr.png │ ├── cu.png │ ├── cv.png │ ├── cw.png │ ├── cx.png │ ├── cy.png │ ├── cz.png │ ├── de.png │ ├── dj.png │ ├── dk.png │ ├── dm.png │ ├── do.png │ ├── dz.png │ ├── ec.png │ ├── ee.png │ ├── eg.png │ ├── eh.png │ ├── en.png │ ├── er.png │ ├── es.png │ ├── et.png │ ├── eu.png │ ├── fi.png │ ├── fj.png │ ├── fk.png │ ├── fm.png │ ├── fo.png │ ├── fr.png │ ├── ga.png │ ├── gb.png │ ├── gd.png │ ├── ge.png │ ├── gf.png │ ├── gg.png │ ├── gh.png │ ├── gi.png │ ├── gl.png │ ├── gm.png │ ├── gn.png │ ├── gp.png │ ├── gq.png │ ├── gr.png │ ├── gs.png │ ├── gt.png │ ├── gu.png │ ├── gw.png │ ├── gy.png │ ├── hk.png │ ├── hm.png │ ├── hn.png │ ├── hr.png │ ├── ht.png │ ├── hu.png │ ├── id.png │ ├── ie.png │ ├── il.png │ ├── im.png │ ├── in.png │ ├── io.png │ ├── iq.png │ ├── ir.png │ ├── is.png │ ├── it.png │ ├── je.png │ ├── jm.png │ ├── jo.png │ ├── jp.png │ ├── ke.png │ ├── kg.png │ ├── kh.png │ ├── ki.png │ ├── km.png │ ├── kn.png │ ├── kp.png │ ├── kr.png │ ├── kw.png │ ├── ky.png │ ├── kz.png │ ├── la.png │ ├── lb.png │ ├── lc.png │ ├── li.png │ ├── lk.png │ ├── lr.png │ ├── ls.png │ ├── lt.png │ ├── lu.png │ ├── lv.png │ ├── ly.png │ ├── ma.png │ ├── mc.png │ ├── md.png │ ├── me.png │ ├── mf.png │ ├── mg.png │ ├── mh.png │ ├── mk.png │ ├── ml.png │ ├── mm.png │ ├── mn.png │ ├── mo.png │ ├── mp.png │ ├── mq.png │ ├── mr.png │ ├── ms.png │ ├── mt.png │ ├── mu.png │ ├── mv.png │ ├── mw.png │ ├── mx.png │ ├── my.png │ ├── mz.png │ ├── na.png │ ├── nc.png │ ├── nd.png │ ├── ne.png │ ├── nf.png │ ├── ng.png │ ├── ni.png │ ├── nl.png │ ├── no.png │ ├── np.png │ ├── nr.png │ ├── nu.png │ ├── nz.png │ ├── om.png │ ├── pa.png │ ├── pe.png │ ├── pf.png │ ├── pg.png │ ├── ph.png │ ├── pk.png │ ├── pl.png │ ├── pm.png │ ├── pn.png │ ├── pr.png │ ├── ps.png │ ├── pt.png │ ├── pw.png │ ├── py.png │ ├── qa.png │ ├── re.png │ ├── ro.png │ ├── rs.png │ ├── ru.png │ ├── rw.png │ ├── sa.png │ ├── sb.png │ ├── sc.png │ ├── sd.png │ ├── se.png │ ├── sg.png │ ├── sh.png │ ├── si.png │ ├── sj.png │ ├── sk.png │ ├── sl.png │ ├── sm.png │ ├── sn.png │ ├── so.png │ ├── sr.png │ ├── ss.png │ ├── st.png │ ├── sv.png │ ├── sw.png │ ├── sy.png │ ├── sz.png │ ├── tc.png │ ├── td.png │ ├── tf.png │ ├── tg.png │ ├── th.png │ ├── tj.png │ ├── tk.png │ ├── tl.png │ ├── tm.png │ ├── tn.png │ ├── to.png │ ├── tr.png │ ├── tt.png │ ├── tv.png │ ├── tw.png │ ├── tz.png │ ├── ua.png │ ├── ug.png │ ├── um.png │ ├── us.png │ ├── uy.png │ ├── uz.png │ ├── va.png │ ├── vc.png │ ├── ve.png │ ├── vg.png │ ├── vi.png │ ├── vn.png │ ├── vu.png │ ├── wa.png │ ├── wf.png │ ├── ws.png │ ├── yc.png │ ├── ye.png │ ├── yt.png │ ├── za.png │ ├── zm.png │ └── zw.png └── us.ico ├── localization ├── .gitignore ├── build_mo.py ├── collect_messages.cmd ├── flat.py ├── flat_apply.py ├── gnuwin32 │ ├── libexpat.dll │ ├── libgettextlib.dll │ ├── libgettextpo.dll │ ├── libgettextsrc.dll │ ├── libiconv2.dll │ ├── libintl3.dll │ ├── msgfmt.exe │ ├── msginit.exe │ └── xgettext.exe ├── he.mo ├── he.po ├── how_to_translate.txt ├── init.cmd ├── ru.mo └── ru.po ├── publish.py └── src ├── AnalyzeTyped.h ├── CClipWorker.h ├── CMainWorker.cpp ├── CMainWorker.h ├── ConfigData.h ├── ConfigData_hk.h ├── CycleRevertList.h ├── EnableHolder.h ├── Hooker.h ├── HookerKeyboard.cpp ├── HookerThread.h ├── IconManager.h ├── InjectSkipper.h ├── InputSender.cpp ├── InputSender.h ├── KeysCurState.h ├── KeysStruct.h ├── Localizator.h ├── Settings.cpp ├── Settings.h ├── SoundManager.h ├── SwAutostart.h ├── TrayIcon.h ├── WinMain.cpp ├── WorkerImplement.cpp ├── WorkerImplement.h ├── consts.h ├── globals.h ├── gui2 ├── Notificator │ ├── Entry.h │ ├── Notificator.cpp │ ├── Notificator.h │ └── Utils.h ├── SetHotKeyCombo.h ├── gui_utils.h ├── main.cpp ├── main_wnd.h └── main_wnd_draw.cpp ├── libtools ├── core │ ├── CAutoCleanup.h │ ├── Errors.h │ ├── Logger.h │ ├── WinInfo.h │ ├── core.h │ ├── inc_all.h │ └── winAutoCleanBase.h ├── startup │ ├── reguser.h │ └── scheduler.h └── utils │ ├── CAutoCleanupWin.h │ ├── CHotKey.h │ ├── COM_utils.h │ ├── ImGuiUtils.h │ ├── ImageHandler.h │ ├── Images.h │ ├── ImagesIco.h │ ├── MultiThreadQueue.h │ ├── ScanMap.h │ ├── TimePoint.h │ ├── VkNames.h │ ├── WinApiInt.h │ ├── WinTimer.h │ ├── WinTray.h │ ├── accessibil.h │ ├── file_utils.h │ ├── getpath.h │ ├── layout-utils.h │ ├── procstart.h │ ├── rand.h │ ├── str_utils.h │ ├── testtime.h │ ├── utils-func.h │ └── win_utils.h ├── old ├── FixRAltHandler.h ├── GuiWorker.h ├── TrayMenu.h ├── bb.ico ├── global_key_reg.cpp ├── gui │ ├── TrayIcon.h │ ├── button.h │ ├── common.h │ ├── img_res.h │ ├── inc_all.h │ └── simpletabs.h ├── hk.h ├── myres.rc ├── old.cpp └── utils │ ├── ShareMemory.h │ ├── SwSyncVal.h │ ├── WinApiInt.h │ ├── cmdlineparser.h │ └── parsecfg.h ├── res ├── Play-Regular.ttf ├── app.ico └── res.rc ├── simpleswitcher.manifest ├── sw-base.h └── ver.h /.editorconfig: -------------------------------------------------------------------------------- 1 | [*] 2 | end_of_line = lf 3 | insert_final_newline = true 4 | charset = utf-8-bom 5 | indent_style = tab 6 | indent_size = 4 7 | 8 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | **/.vs 2 | /package_build 3 | /out -------------------------------------------------------------------------------- /bin_files/flags/Round/more_flags.txt: -------------------------------------------------------------------------------- 1 | https://www.flaticon.com/packs/countrys-flags -------------------------------------------------------------------------------- /bin_files/flags/Round/ru64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/bin_files/flags/Round/ru64.png -------------------------------------------------------------------------------- /bin_files/flags/Round/us16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/bin_files/flags/Round/us16.png -------------------------------------------------------------------------------- /bin_files/flags/Round/us32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/bin_files/flags/Round/us32.png -------------------------------------------------------------------------------- /bin_files/flags/Square/by16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/bin_files/flags/Square/by16.png -------------------------------------------------------------------------------- /bin_files/flags/Square/by32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/bin_files/flags/Square/by32.png -------------------------------------------------------------------------------- /bin_files/flags/Square/de16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/bin_files/flags/Square/de16.png -------------------------------------------------------------------------------- /bin_files/flags/Square/de32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/bin_files/flags/Square/de32.png -------------------------------------------------------------------------------- /bin_files/flags/Square/more_flags.txt: -------------------------------------------------------------------------------- 1 | https://www.flaticon.com/search?word=square%20flags -------------------------------------------------------------------------------- /bin_files/flags/Square/ru16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/bin_files/flags/Square/ru16.png -------------------------------------------------------------------------------- /bin_files/flags/Square/ru32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/bin_files/flags/Square/ru32.png -------------------------------------------------------------------------------- /bin_files/flags/Square/ru64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/bin_files/flags/Square/ru64.png -------------------------------------------------------------------------------- /bin_files/flags/Square/ua16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/bin_files/flags/Square/ua16.png -------------------------------------------------------------------------------- /bin_files/flags/Square/ua32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/bin_files/flags/Square/ua32.png -------------------------------------------------------------------------------- /bin_files/flags/Square/us16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/bin_files/flags/Square/us16.png -------------------------------------------------------------------------------- /bin_files/flags/Square/us32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/bin_files/flags/Square/us32.png -------------------------------------------------------------------------------- /bin_files/flags/Square/us64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/bin_files/flags/Square/us64.png -------------------------------------------------------------------------------- /cert/CreateCARoot.cmd: -------------------------------------------------------------------------------- 1 | makecert.exe ^ 2 | -n "CN=SimpleSwitcher" ^ 3 | -r ^ 4 | -pe ^ 5 | -a sha512 ^ 6 | -len 4096 ^ 7 | -cy authority ^ 8 | -sv SimpleSwitcher.pvk ^ 9 | SimpleSwitcher.cer 10 | 11 | pvk2pfx.exe ^ 12 | -pvk SimpleSwitcher.pvk ^ 13 | -spc SimpleSwitcher.cer ^ 14 | -pfx SimpleSwitcher.pfx ^ 15 | -po m27SPnDeDZgz9Fvw483N -------------------------------------------------------------------------------- /cert/SignExe.cmd: -------------------------------------------------------------------------------- 1 | signtool.exe sign ^ 2 | /fd SHA256 ^ 3 | /f "SimpleSwitcher.pfx" /p m27SPnDeDZgz9Fvw483N ^ 4 | /t http://timestamp.comodoca.com/authenticode ^ 5 | "../XP_Release/SimpleSwitcher.exe" -------------------------------------------------------------------------------- /cert/SimpleSwitcher.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/cert/SimpleSwitcher.cer -------------------------------------------------------------------------------- /cert/SimpleSwitcher.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/cert/SimpleSwitcher.pfx -------------------------------------------------------------------------------- /cert/SimpleSwitcher.pvk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/cert/SimpleSwitcher.pvk -------------------------------------------------------------------------------- /cert/checksum.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/cert/checksum.exe -------------------------------------------------------------------------------- /cert/checksum.sha256: -------------------------------------------------------------------------------- 1 | 88c5dc312f41d61aa48b48bab7c1351400573ea98845e262bc5c7518b70ea8af *checksum.exe -------------------------------------------------------------------------------- /doc/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/doc/img1.png -------------------------------------------------------------------------------- /extern/imgui/misc/fonts/Cousine-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/extern/imgui/misc/fonts/Cousine-Regular.ttf -------------------------------------------------------------------------------- /extern/imgui/misc/fonts/DroidSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/extern/imgui/misc/fonts/DroidSans.ttf -------------------------------------------------------------------------------- /extern/imgui/misc/fonts/Karla-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/extern/imgui/misc/fonts/Karla-Regular.ttf -------------------------------------------------------------------------------- /extern/imgui/misc/fonts/ProggyClean.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/extern/imgui/misc/fonts/ProggyClean.ttf -------------------------------------------------------------------------------- /extern/imgui/misc/fonts/ProggyTiny.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/extern/imgui/misc/fonts/ProggyTiny.ttf -------------------------------------------------------------------------------- /extern/imgui/misc/fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/extern/imgui/misc/fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /extern/simple_enum/detail/static_call_operator_epilog.h: -------------------------------------------------------------------------------- 1 | #ifndef STATIC_CALL_OPERATOR_INCLUDED 2 | #error "check inclusion of static_call_operator" 3 | #endif 4 | #undef STATIC_CALL_OPERATOR_INCLUDED 5 | 6 | #pragma pop_macro("static_call_operator_const") 7 | #pragma pop_macro("static_call_operator") 8 | #pragma pop_macro("static_constexpr") 9 | -------------------------------------------------------------------------------- /extern/std_image_impl.cpp: -------------------------------------------------------------------------------- 1 | //#define STBI_NO_PSD 2 | //#define STBI_NO_TGA 3 | //#define STBI_NO_GIF 4 | //#define STBI_NO_HDR 5 | //#define STBI_NO_PIC 6 | //#define STBI_NO_PNM 7 | 8 | #define _CRT_SECURE_NO_WARNINGS 9 | #define STB_IMAGE_IMPLEMENTATION 10 | #include "stb_image.h" 11 | -------------------------------------------------------------------------------- /flags/.gitignore: -------------------------------------------------------------------------------- 1 | svg -------------------------------------------------------------------------------- /flags/en.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/en.ico -------------------------------------------------------------------------------- /flags/en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/en.png -------------------------------------------------------------------------------- /flags/genres_resized.py: -------------------------------------------------------------------------------- 1 | import pathlib 2 | from pathlib import Path 3 | import re 4 | import os 5 | import shutil 6 | import sys 7 | 8 | result = '' 9 | 10 | for root, dirs, files in os.walk('./png16_resized'): 11 | for file in files: 12 | if file.endswith('.png'): 13 | result += '{}16 RCDATA "flags/png16_resized/{}"\n'.format( 14 | Path(file).stem.upper(), os.path.basename(file) 15 | ) 16 | 17 | Path("./flag_res16.rc").write_text(result) 18 | -------------------------------------------------------------------------------- /flags/info.txt: -------------------------------------------------------------------------------- 1 | оригинальные флаги 2 | скрипт для конверта 3 | https://github.com/hampusborgos/country-flags 4 | 5 | 3x2 6 | https://github.com/catamphetamine/country-flag-icons 7 | 8 | 4x3 9 | https://github.com/mantinedev/mantine-flagpack -------------------------------------------------------------------------------- /flags/png16px/AD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/AD.png -------------------------------------------------------------------------------- /flags/png16px/AE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/AE.png -------------------------------------------------------------------------------- /flags/png16px/AF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/AF.png -------------------------------------------------------------------------------- /flags/png16px/AG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/AG.png -------------------------------------------------------------------------------- /flags/png16px/AI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/AI.png -------------------------------------------------------------------------------- /flags/png16px/AL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/AL.png -------------------------------------------------------------------------------- /flags/png16px/AM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/AM.png -------------------------------------------------------------------------------- /flags/png16px/AO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/AO.png -------------------------------------------------------------------------------- /flags/png16px/AQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/AQ.png -------------------------------------------------------------------------------- /flags/png16px/AR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/AR.png -------------------------------------------------------------------------------- /flags/png16px/AS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/AS.png -------------------------------------------------------------------------------- /flags/png16px/AT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/AT.png -------------------------------------------------------------------------------- /flags/png16px/AU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/AU.png -------------------------------------------------------------------------------- /flags/png16px/AW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/AW.png -------------------------------------------------------------------------------- /flags/png16px/AX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/AX.png -------------------------------------------------------------------------------- /flags/png16px/AZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/AZ.png -------------------------------------------------------------------------------- /flags/png16px/BA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/BA.png -------------------------------------------------------------------------------- /flags/png16px/BB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/BB.png -------------------------------------------------------------------------------- /flags/png16px/BD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/BD.png -------------------------------------------------------------------------------- /flags/png16px/BE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/BE.png -------------------------------------------------------------------------------- /flags/png16px/BF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/BF.png -------------------------------------------------------------------------------- /flags/png16px/BG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/BG.png -------------------------------------------------------------------------------- /flags/png16px/BH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/BH.png -------------------------------------------------------------------------------- /flags/png16px/BI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/BI.png -------------------------------------------------------------------------------- /flags/png16px/BJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/BJ.png -------------------------------------------------------------------------------- /flags/png16px/BL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/BL.png -------------------------------------------------------------------------------- /flags/png16px/BM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/BM.png -------------------------------------------------------------------------------- /flags/png16px/BN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/BN.png -------------------------------------------------------------------------------- /flags/png16px/BO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/BO.png -------------------------------------------------------------------------------- /flags/png16px/BR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/BR.png -------------------------------------------------------------------------------- /flags/png16px/BS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/BS.png -------------------------------------------------------------------------------- /flags/png16px/BT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/BT.png -------------------------------------------------------------------------------- /flags/png16px/BV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/BV.png -------------------------------------------------------------------------------- /flags/png16px/BW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/BW.png -------------------------------------------------------------------------------- /flags/png16px/BY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/BY.png -------------------------------------------------------------------------------- /flags/png16px/BZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/BZ.png -------------------------------------------------------------------------------- /flags/png16px/CA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/CA.png -------------------------------------------------------------------------------- /flags/png16px/CC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/CC.png -------------------------------------------------------------------------------- /flags/png16px/CD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/CD.png -------------------------------------------------------------------------------- /flags/png16px/CF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/CF.png -------------------------------------------------------------------------------- /flags/png16px/CG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/CG.png -------------------------------------------------------------------------------- /flags/png16px/CH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/CH.png -------------------------------------------------------------------------------- /flags/png16px/CI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/CI.png -------------------------------------------------------------------------------- /flags/png16px/CK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/CK.png -------------------------------------------------------------------------------- /flags/png16px/CL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/CL.png -------------------------------------------------------------------------------- /flags/png16px/CM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/CM.png -------------------------------------------------------------------------------- /flags/png16px/CN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/CN.png -------------------------------------------------------------------------------- /flags/png16px/CO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/CO.png -------------------------------------------------------------------------------- /flags/png16px/CR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/CR.png -------------------------------------------------------------------------------- /flags/png16px/CU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/CU.png -------------------------------------------------------------------------------- /flags/png16px/CV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/CV.png -------------------------------------------------------------------------------- /flags/png16px/CW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/CW.png -------------------------------------------------------------------------------- /flags/png16px/CX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/CX.png -------------------------------------------------------------------------------- /flags/png16px/CY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/CY.png -------------------------------------------------------------------------------- /flags/png16px/CZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/CZ.png -------------------------------------------------------------------------------- /flags/png16px/DE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/DE.png -------------------------------------------------------------------------------- /flags/png16px/DJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/DJ.png -------------------------------------------------------------------------------- /flags/png16px/DK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/DK.png -------------------------------------------------------------------------------- /flags/png16px/DM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/DM.png -------------------------------------------------------------------------------- /flags/png16px/DO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/DO.png -------------------------------------------------------------------------------- /flags/png16px/DZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/DZ.png -------------------------------------------------------------------------------- /flags/png16px/EC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/EC.png -------------------------------------------------------------------------------- /flags/png16px/EE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/EE.png -------------------------------------------------------------------------------- /flags/png16px/EG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/EG.png -------------------------------------------------------------------------------- /flags/png16px/EH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/EH.png -------------------------------------------------------------------------------- /flags/png16px/ER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/ER.png -------------------------------------------------------------------------------- /flags/png16px/ES.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/ES.png -------------------------------------------------------------------------------- /flags/png16px/ET.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/ET.png -------------------------------------------------------------------------------- /flags/png16px/FI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/FI.png -------------------------------------------------------------------------------- /flags/png16px/FJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/FJ.png -------------------------------------------------------------------------------- /flags/png16px/FK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/FK.png -------------------------------------------------------------------------------- /flags/png16px/FM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/FM.png -------------------------------------------------------------------------------- /flags/png16px/FO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/FO.png -------------------------------------------------------------------------------- /flags/png16px/FR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/FR.png -------------------------------------------------------------------------------- /flags/png16px/GA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/GA.png -------------------------------------------------------------------------------- /flags/png16px/GB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/GB.png -------------------------------------------------------------------------------- /flags/png16px/GD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/GD.png -------------------------------------------------------------------------------- /flags/png16px/GE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/GE.png -------------------------------------------------------------------------------- /flags/png16px/GF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/GF.png -------------------------------------------------------------------------------- /flags/png16px/GG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/GG.png -------------------------------------------------------------------------------- /flags/png16px/GH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/GH.png -------------------------------------------------------------------------------- /flags/png16px/GI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/GI.png -------------------------------------------------------------------------------- /flags/png16px/GL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/GL.png -------------------------------------------------------------------------------- /flags/png16px/GM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/GM.png -------------------------------------------------------------------------------- /flags/png16px/GN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/GN.png -------------------------------------------------------------------------------- /flags/png16px/GP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/GP.png -------------------------------------------------------------------------------- /flags/png16px/GQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/GQ.png -------------------------------------------------------------------------------- /flags/png16px/GR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/GR.png -------------------------------------------------------------------------------- /flags/png16px/GS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/GS.png -------------------------------------------------------------------------------- /flags/png16px/GT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/GT.png -------------------------------------------------------------------------------- /flags/png16px/GU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/GU.png -------------------------------------------------------------------------------- /flags/png16px/GW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/GW.png -------------------------------------------------------------------------------- /flags/png16px/GY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/GY.png -------------------------------------------------------------------------------- /flags/png16px/HK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/HK.png -------------------------------------------------------------------------------- /flags/png16px/HM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/HM.png -------------------------------------------------------------------------------- /flags/png16px/HN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/HN.png -------------------------------------------------------------------------------- /flags/png16px/HR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/HR.png -------------------------------------------------------------------------------- /flags/png16px/HT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/HT.png -------------------------------------------------------------------------------- /flags/png16px/HU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/HU.png -------------------------------------------------------------------------------- /flags/png16px/ID.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/ID.png -------------------------------------------------------------------------------- /flags/png16px/IE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/IE.png -------------------------------------------------------------------------------- /flags/png16px/IL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/IL.png -------------------------------------------------------------------------------- /flags/png16px/IM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/IM.png -------------------------------------------------------------------------------- /flags/png16px/IN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/IN.png -------------------------------------------------------------------------------- /flags/png16px/IO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/IO.png -------------------------------------------------------------------------------- /flags/png16px/IQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/IQ.png -------------------------------------------------------------------------------- /flags/png16px/IR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/IR.png -------------------------------------------------------------------------------- /flags/png16px/IS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/IS.png -------------------------------------------------------------------------------- /flags/png16px/IT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/IT.png -------------------------------------------------------------------------------- /flags/png16px/JE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/JE.png -------------------------------------------------------------------------------- /flags/png16px/JM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/JM.png -------------------------------------------------------------------------------- /flags/png16px/JO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/JO.png -------------------------------------------------------------------------------- /flags/png16px/JP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/JP.png -------------------------------------------------------------------------------- /flags/png16px/KG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/KG.png -------------------------------------------------------------------------------- /flags/png16px/KH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/KH.png -------------------------------------------------------------------------------- /flags/png16px/KI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/KI.png -------------------------------------------------------------------------------- /flags/png16px/KM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/KM.png -------------------------------------------------------------------------------- /flags/png16px/KN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/KN.png -------------------------------------------------------------------------------- /flags/png16px/KP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/KP.png -------------------------------------------------------------------------------- /flags/png16px/KR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/KR.png -------------------------------------------------------------------------------- /flags/png16px/KW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/KW.png -------------------------------------------------------------------------------- /flags/png16px/KY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/KY.png -------------------------------------------------------------------------------- /flags/png16px/KZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/KZ.png -------------------------------------------------------------------------------- /flags/png16px/LA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/LA.png -------------------------------------------------------------------------------- /flags/png16px/LB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/LB.png -------------------------------------------------------------------------------- /flags/png16px/LC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/LC.png -------------------------------------------------------------------------------- /flags/png16px/LI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/LI.png -------------------------------------------------------------------------------- /flags/png16px/LK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/LK.png -------------------------------------------------------------------------------- /flags/png16px/LR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/LR.png -------------------------------------------------------------------------------- /flags/png16px/LS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/LS.png -------------------------------------------------------------------------------- /flags/png16px/LT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/LT.png -------------------------------------------------------------------------------- /flags/png16px/LU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/LU.png -------------------------------------------------------------------------------- /flags/png16px/LV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/LV.png -------------------------------------------------------------------------------- /flags/png16px/LY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/LY.png -------------------------------------------------------------------------------- /flags/png16px/MA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/MA.png -------------------------------------------------------------------------------- /flags/png16px/MC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/MC.png -------------------------------------------------------------------------------- /flags/png16px/MD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/MD.png -------------------------------------------------------------------------------- /flags/png16px/ME.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/ME.png -------------------------------------------------------------------------------- /flags/png16px/MF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/MF.png -------------------------------------------------------------------------------- /flags/png16px/MG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/MG.png -------------------------------------------------------------------------------- /flags/png16px/MH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/MH.png -------------------------------------------------------------------------------- /flags/png16px/MK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/MK.png -------------------------------------------------------------------------------- /flags/png16px/ML.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/ML.png -------------------------------------------------------------------------------- /flags/png16px/MM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/MM.png -------------------------------------------------------------------------------- /flags/png16px/MN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/MN.png -------------------------------------------------------------------------------- /flags/png16px/MO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/MO.png -------------------------------------------------------------------------------- /flags/png16px/MP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/MP.png -------------------------------------------------------------------------------- /flags/png16px/MQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/MQ.png -------------------------------------------------------------------------------- /flags/png16px/MR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/MR.png -------------------------------------------------------------------------------- /flags/png16px/MS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/MS.png -------------------------------------------------------------------------------- /flags/png16px/MU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/MU.png -------------------------------------------------------------------------------- /flags/png16px/MV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/MV.png -------------------------------------------------------------------------------- /flags/png16px/MW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/MW.png -------------------------------------------------------------------------------- /flags/png16px/MX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/MX.png -------------------------------------------------------------------------------- /flags/png16px/MY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/MY.png -------------------------------------------------------------------------------- /flags/png16px/MZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/MZ.png -------------------------------------------------------------------------------- /flags/png16px/NA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/NA.png -------------------------------------------------------------------------------- /flags/png16px/NC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/NC.png -------------------------------------------------------------------------------- /flags/png16px/NE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/NE.png -------------------------------------------------------------------------------- /flags/png16px/NF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/NF.png -------------------------------------------------------------------------------- /flags/png16px/NG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/NG.png -------------------------------------------------------------------------------- /flags/png16px/NI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/NI.png -------------------------------------------------------------------------------- /flags/png16px/NL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/NL.png -------------------------------------------------------------------------------- /flags/png16px/NO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/NO.png -------------------------------------------------------------------------------- /flags/png16px/NP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/NP.png -------------------------------------------------------------------------------- /flags/png16px/NR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/NR.png -------------------------------------------------------------------------------- /flags/png16px/NU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/NU.png -------------------------------------------------------------------------------- /flags/png16px/NZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/NZ.png -------------------------------------------------------------------------------- /flags/png16px/OM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/OM.png -------------------------------------------------------------------------------- /flags/png16px/PA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/PA.png -------------------------------------------------------------------------------- /flags/png16px/PE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/PE.png -------------------------------------------------------------------------------- /flags/png16px/PF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/PF.png -------------------------------------------------------------------------------- /flags/png16px/PG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/PG.png -------------------------------------------------------------------------------- /flags/png16px/PH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/PH.png -------------------------------------------------------------------------------- /flags/png16px/PK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/PK.png -------------------------------------------------------------------------------- /flags/png16px/PL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/PL.png -------------------------------------------------------------------------------- /flags/png16px/PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/PM.png -------------------------------------------------------------------------------- /flags/png16px/PN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/PN.png -------------------------------------------------------------------------------- /flags/png16px/PR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/PR.png -------------------------------------------------------------------------------- /flags/png16px/PS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/PS.png -------------------------------------------------------------------------------- /flags/png16px/PT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/PT.png -------------------------------------------------------------------------------- /flags/png16px/PW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/PW.png -------------------------------------------------------------------------------- /flags/png16px/PY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/PY.png -------------------------------------------------------------------------------- /flags/png16px/QA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/QA.png -------------------------------------------------------------------------------- /flags/png16px/RE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/RE.png -------------------------------------------------------------------------------- /flags/png16px/RO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/RO.png -------------------------------------------------------------------------------- /flags/png16px/RS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/RS.png -------------------------------------------------------------------------------- /flags/png16px/RU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/RU.png -------------------------------------------------------------------------------- /flags/png16px/RW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/RW.png -------------------------------------------------------------------------------- /flags/png16px/SA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/SA.png -------------------------------------------------------------------------------- /flags/png16px/SB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/SB.png -------------------------------------------------------------------------------- /flags/png16px/SC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/SC.png -------------------------------------------------------------------------------- /flags/png16px/SD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/SD.png -------------------------------------------------------------------------------- /flags/png16px/SE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/SE.png -------------------------------------------------------------------------------- /flags/png16px/SG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/SG.png -------------------------------------------------------------------------------- /flags/png16px/SH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/SH.png -------------------------------------------------------------------------------- /flags/png16px/SI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/SI.png -------------------------------------------------------------------------------- /flags/png16px/SJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/SJ.png -------------------------------------------------------------------------------- /flags/png16px/SK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/SK.png -------------------------------------------------------------------------------- /flags/png16px/SL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/SL.png -------------------------------------------------------------------------------- /flags/png16px/SM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/SM.png -------------------------------------------------------------------------------- /flags/png16px/SN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/SN.png -------------------------------------------------------------------------------- /flags/png16px/SO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/SO.png -------------------------------------------------------------------------------- /flags/png16px/SR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/SR.png -------------------------------------------------------------------------------- /flags/png16px/SS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/SS.png -------------------------------------------------------------------------------- /flags/png16px/ST.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/ST.png -------------------------------------------------------------------------------- /flags/png16px/SV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/SV.png -------------------------------------------------------------------------------- /flags/png16px/SX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/SX.png -------------------------------------------------------------------------------- /flags/png16px/SY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/SY.png -------------------------------------------------------------------------------- /flags/png16px/SZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/SZ.png -------------------------------------------------------------------------------- /flags/png16px/TC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/TC.png -------------------------------------------------------------------------------- /flags/png16px/TD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/TD.png -------------------------------------------------------------------------------- /flags/png16px/TF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/TF.png -------------------------------------------------------------------------------- /flags/png16px/TG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/TG.png -------------------------------------------------------------------------------- /flags/png16px/TH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/TH.png -------------------------------------------------------------------------------- /flags/png16px/TJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/TJ.png -------------------------------------------------------------------------------- /flags/png16px/TK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/TK.png -------------------------------------------------------------------------------- /flags/png16px/TL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/TL.png -------------------------------------------------------------------------------- /flags/png16px/TM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/TM.png -------------------------------------------------------------------------------- /flags/png16px/TN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/TN.png -------------------------------------------------------------------------------- /flags/png16px/TO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/TO.png -------------------------------------------------------------------------------- /flags/png16px/TR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/TR.png -------------------------------------------------------------------------------- /flags/png16px/TT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/TT.png -------------------------------------------------------------------------------- /flags/png16px/TV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/TV.png -------------------------------------------------------------------------------- /flags/png16px/TW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/TW.png -------------------------------------------------------------------------------- /flags/png16px/TZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/TZ.png -------------------------------------------------------------------------------- /flags/png16px/UA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/UA.png -------------------------------------------------------------------------------- /flags/png16px/UG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/UG.png -------------------------------------------------------------------------------- /flags/png16px/UM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/UM.png -------------------------------------------------------------------------------- /flags/png16px/US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/US.png -------------------------------------------------------------------------------- /flags/png16px/UY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/UY.png -------------------------------------------------------------------------------- /flags/png16px/UZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/UZ.png -------------------------------------------------------------------------------- /flags/png16px/VA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/VA.png -------------------------------------------------------------------------------- /flags/png16px/VC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/VC.png -------------------------------------------------------------------------------- /flags/png16px/VE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/VE.png -------------------------------------------------------------------------------- /flags/png16px/VG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/VG.png -------------------------------------------------------------------------------- /flags/png16px/VI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/VI.png -------------------------------------------------------------------------------- /flags/png16px/VN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/VN.png -------------------------------------------------------------------------------- /flags/png16px/VU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/VU.png -------------------------------------------------------------------------------- /flags/png16px/WF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/WF.png -------------------------------------------------------------------------------- /flags/png16px/WS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/WS.png -------------------------------------------------------------------------------- /flags/png16px/XK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/XK.png -------------------------------------------------------------------------------- /flags/png16px/YE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/YE.png -------------------------------------------------------------------------------- /flags/png16px/ZA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/ZA.png -------------------------------------------------------------------------------- /flags/png16px/ZM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png16px/ZM.png -------------------------------------------------------------------------------- /flags/png32px/AD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/AD.png -------------------------------------------------------------------------------- /flags/png32px/AE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/AE.png -------------------------------------------------------------------------------- /flags/png32px/AF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/AF.png -------------------------------------------------------------------------------- /flags/png32px/AG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/AG.png -------------------------------------------------------------------------------- /flags/png32px/AI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/AI.png -------------------------------------------------------------------------------- /flags/png32px/AL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/AL.png -------------------------------------------------------------------------------- /flags/png32px/AM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/AM.png -------------------------------------------------------------------------------- /flags/png32px/AO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/AO.png -------------------------------------------------------------------------------- /flags/png32px/AQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/AQ.png -------------------------------------------------------------------------------- /flags/png32px/AR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/AR.png -------------------------------------------------------------------------------- /flags/png32px/AS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/AS.png -------------------------------------------------------------------------------- /flags/png32px/AT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/AT.png -------------------------------------------------------------------------------- /flags/png32px/AU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/AU.png -------------------------------------------------------------------------------- /flags/png32px/AW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/AW.png -------------------------------------------------------------------------------- /flags/png32px/AX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/AX.png -------------------------------------------------------------------------------- /flags/png32px/AZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/AZ.png -------------------------------------------------------------------------------- /flags/png32px/BA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/BA.png -------------------------------------------------------------------------------- /flags/png32px/BB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/BB.png -------------------------------------------------------------------------------- /flags/png32px/BD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/BD.png -------------------------------------------------------------------------------- /flags/png32px/BE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/BE.png -------------------------------------------------------------------------------- /flags/png32px/BF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/BF.png -------------------------------------------------------------------------------- /flags/png32px/BG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/BG.png -------------------------------------------------------------------------------- /flags/png32px/BH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/BH.png -------------------------------------------------------------------------------- /flags/png32px/BI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/BI.png -------------------------------------------------------------------------------- /flags/png32px/BJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/BJ.png -------------------------------------------------------------------------------- /flags/png32px/BL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/BL.png -------------------------------------------------------------------------------- /flags/png32px/BM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/BM.png -------------------------------------------------------------------------------- /flags/png32px/BN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/BN.png -------------------------------------------------------------------------------- /flags/png32px/BO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/BO.png -------------------------------------------------------------------------------- /flags/png32px/BR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/BR.png -------------------------------------------------------------------------------- /flags/png32px/BS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/BS.png -------------------------------------------------------------------------------- /flags/png32px/BT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/BT.png -------------------------------------------------------------------------------- /flags/png32px/BV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/BV.png -------------------------------------------------------------------------------- /flags/png32px/BW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/BW.png -------------------------------------------------------------------------------- /flags/png32px/BY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/BY.png -------------------------------------------------------------------------------- /flags/png32px/BZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/BZ.png -------------------------------------------------------------------------------- /flags/png32px/CA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/CA.png -------------------------------------------------------------------------------- /flags/png32px/CC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/CC.png -------------------------------------------------------------------------------- /flags/png32px/CD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/CD.png -------------------------------------------------------------------------------- /flags/png32px/CF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/CF.png -------------------------------------------------------------------------------- /flags/png32px/CG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/CG.png -------------------------------------------------------------------------------- /flags/png32px/CH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/CH.png -------------------------------------------------------------------------------- /flags/png32px/CI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/CI.png -------------------------------------------------------------------------------- /flags/png32px/CK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/CK.png -------------------------------------------------------------------------------- /flags/png32px/CL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/CL.png -------------------------------------------------------------------------------- /flags/png32px/CM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/CM.png -------------------------------------------------------------------------------- /flags/png32px/CN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/CN.png -------------------------------------------------------------------------------- /flags/png32px/CO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/CO.png -------------------------------------------------------------------------------- /flags/png32px/CR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/CR.png -------------------------------------------------------------------------------- /flags/png32px/CU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/CU.png -------------------------------------------------------------------------------- /flags/png32px/CV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/CV.png -------------------------------------------------------------------------------- /flags/png32px/CW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/CW.png -------------------------------------------------------------------------------- /flags/png32px/CX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/CX.png -------------------------------------------------------------------------------- /flags/png32px/CY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/CY.png -------------------------------------------------------------------------------- /flags/png32px/CZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/CZ.png -------------------------------------------------------------------------------- /flags/png32px/DE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/DE.png -------------------------------------------------------------------------------- /flags/png32px/DJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/DJ.png -------------------------------------------------------------------------------- /flags/png32px/DK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/DK.png -------------------------------------------------------------------------------- /flags/png32px/DM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/DM.png -------------------------------------------------------------------------------- /flags/png32px/DO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/DO.png -------------------------------------------------------------------------------- /flags/png32px/DZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/DZ.png -------------------------------------------------------------------------------- /flags/png32px/EC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/EC.png -------------------------------------------------------------------------------- /flags/png32px/EE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/EE.png -------------------------------------------------------------------------------- /flags/png32px/EG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/EG.png -------------------------------------------------------------------------------- /flags/png32px/EH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/EH.png -------------------------------------------------------------------------------- /flags/png32px/ER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/ER.png -------------------------------------------------------------------------------- /flags/png32px/ES.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/ES.png -------------------------------------------------------------------------------- /flags/png32px/ET.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/ET.png -------------------------------------------------------------------------------- /flags/png32px/FI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/FI.png -------------------------------------------------------------------------------- /flags/png32px/FJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/FJ.png -------------------------------------------------------------------------------- /flags/png32px/FK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/FK.png -------------------------------------------------------------------------------- /flags/png32px/FM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/FM.png -------------------------------------------------------------------------------- /flags/png32px/FO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/FO.png -------------------------------------------------------------------------------- /flags/png32px/FR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/FR.png -------------------------------------------------------------------------------- /flags/png32px/GA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/GA.png -------------------------------------------------------------------------------- /flags/png32px/GB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/GB.png -------------------------------------------------------------------------------- /flags/png32px/GD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/GD.png -------------------------------------------------------------------------------- /flags/png32px/GE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/GE.png -------------------------------------------------------------------------------- /flags/png32px/GF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/GF.png -------------------------------------------------------------------------------- /flags/png32px/GG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/GG.png -------------------------------------------------------------------------------- /flags/png32px/GH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/GH.png -------------------------------------------------------------------------------- /flags/png32px/GI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/GI.png -------------------------------------------------------------------------------- /flags/png32px/GL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/GL.png -------------------------------------------------------------------------------- /flags/png32px/GM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/GM.png -------------------------------------------------------------------------------- /flags/png32px/GN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/GN.png -------------------------------------------------------------------------------- /flags/png32px/GP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/GP.png -------------------------------------------------------------------------------- /flags/png32px/GQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/GQ.png -------------------------------------------------------------------------------- /flags/png32px/GR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/GR.png -------------------------------------------------------------------------------- /flags/png32px/GS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/GS.png -------------------------------------------------------------------------------- /flags/png32px/GT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/GT.png -------------------------------------------------------------------------------- /flags/png32px/GU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/GU.png -------------------------------------------------------------------------------- /flags/png32px/GW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/GW.png -------------------------------------------------------------------------------- /flags/png32px/GY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/GY.png -------------------------------------------------------------------------------- /flags/png32px/HK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/HK.png -------------------------------------------------------------------------------- /flags/png32px/HM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/HM.png -------------------------------------------------------------------------------- /flags/png32px/HN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/HN.png -------------------------------------------------------------------------------- /flags/png32px/HR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/HR.png -------------------------------------------------------------------------------- /flags/png32px/HT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/HT.png -------------------------------------------------------------------------------- /flags/png32px/HU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/HU.png -------------------------------------------------------------------------------- /flags/png32px/ID.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/ID.png -------------------------------------------------------------------------------- /flags/png32px/IE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/IE.png -------------------------------------------------------------------------------- /flags/png32px/IL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/IL.png -------------------------------------------------------------------------------- /flags/png32px/IM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/IM.png -------------------------------------------------------------------------------- /flags/png32px/IN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/IN.png -------------------------------------------------------------------------------- /flags/png32px/IO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/IO.png -------------------------------------------------------------------------------- /flags/png32px/IQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/IQ.png -------------------------------------------------------------------------------- /flags/png32px/IR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/IR.png -------------------------------------------------------------------------------- /flags/png32px/IS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/IS.png -------------------------------------------------------------------------------- /flags/png32px/IT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/IT.png -------------------------------------------------------------------------------- /flags/png32px/JE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/JE.png -------------------------------------------------------------------------------- /flags/png32px/JM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/JM.png -------------------------------------------------------------------------------- /flags/png32px/JO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/JO.png -------------------------------------------------------------------------------- /flags/png32px/JP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/JP.png -------------------------------------------------------------------------------- /flags/png32px/KG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/KG.png -------------------------------------------------------------------------------- /flags/png32px/KH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/KH.png -------------------------------------------------------------------------------- /flags/png32px/KI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/KI.png -------------------------------------------------------------------------------- /flags/png32px/KM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/KM.png -------------------------------------------------------------------------------- /flags/png32px/KN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/KN.png -------------------------------------------------------------------------------- /flags/png32px/KP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/KP.png -------------------------------------------------------------------------------- /flags/png32px/KR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/KR.png -------------------------------------------------------------------------------- /flags/png32px/KW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/KW.png -------------------------------------------------------------------------------- /flags/png32px/KY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/KY.png -------------------------------------------------------------------------------- /flags/png32px/KZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/KZ.png -------------------------------------------------------------------------------- /flags/png32px/LA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/LA.png -------------------------------------------------------------------------------- /flags/png32px/LB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/LB.png -------------------------------------------------------------------------------- /flags/png32px/LC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/LC.png -------------------------------------------------------------------------------- /flags/png32px/LI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/LI.png -------------------------------------------------------------------------------- /flags/png32px/LK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/LK.png -------------------------------------------------------------------------------- /flags/png32px/LR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/LR.png -------------------------------------------------------------------------------- /flags/png32px/LS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/LS.png -------------------------------------------------------------------------------- /flags/png32px/LT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/LT.png -------------------------------------------------------------------------------- /flags/png32px/LU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/LU.png -------------------------------------------------------------------------------- /flags/png32px/LV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/LV.png -------------------------------------------------------------------------------- /flags/png32px/LY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/LY.png -------------------------------------------------------------------------------- /flags/png32px/MA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/MA.png -------------------------------------------------------------------------------- /flags/png32px/MC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/MC.png -------------------------------------------------------------------------------- /flags/png32px/MD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/MD.png -------------------------------------------------------------------------------- /flags/png32px/ME.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/ME.png -------------------------------------------------------------------------------- /flags/png32px/MF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/MF.png -------------------------------------------------------------------------------- /flags/png32px/MG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/MG.png -------------------------------------------------------------------------------- /flags/png32px/MH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/MH.png -------------------------------------------------------------------------------- /flags/png32px/MK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/MK.png -------------------------------------------------------------------------------- /flags/png32px/ML.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/ML.png -------------------------------------------------------------------------------- /flags/png32px/MM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/MM.png -------------------------------------------------------------------------------- /flags/png32px/MN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/MN.png -------------------------------------------------------------------------------- /flags/png32px/MO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/MO.png -------------------------------------------------------------------------------- /flags/png32px/MP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/MP.png -------------------------------------------------------------------------------- /flags/png32px/MQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/MQ.png -------------------------------------------------------------------------------- /flags/png32px/MR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/MR.png -------------------------------------------------------------------------------- /flags/png32px/MS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/MS.png -------------------------------------------------------------------------------- /flags/png32px/MU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/MU.png -------------------------------------------------------------------------------- /flags/png32px/MV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/MV.png -------------------------------------------------------------------------------- /flags/png32px/MW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/MW.png -------------------------------------------------------------------------------- /flags/png32px/MX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/MX.png -------------------------------------------------------------------------------- /flags/png32px/MY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/MY.png -------------------------------------------------------------------------------- /flags/png32px/MZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/MZ.png -------------------------------------------------------------------------------- /flags/png32px/NA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/NA.png -------------------------------------------------------------------------------- /flags/png32px/NC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/NC.png -------------------------------------------------------------------------------- /flags/png32px/NE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/NE.png -------------------------------------------------------------------------------- /flags/png32px/NF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/NF.png -------------------------------------------------------------------------------- /flags/png32px/NG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/NG.png -------------------------------------------------------------------------------- /flags/png32px/NI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/NI.png -------------------------------------------------------------------------------- /flags/png32px/NL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/NL.png -------------------------------------------------------------------------------- /flags/png32px/NO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/NO.png -------------------------------------------------------------------------------- /flags/png32px/NP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/NP.png -------------------------------------------------------------------------------- /flags/png32px/NR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/NR.png -------------------------------------------------------------------------------- /flags/png32px/NU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/NU.png -------------------------------------------------------------------------------- /flags/png32px/NZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/NZ.png -------------------------------------------------------------------------------- /flags/png32px/OM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/OM.png -------------------------------------------------------------------------------- /flags/png32px/PA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/PA.png -------------------------------------------------------------------------------- /flags/png32px/PE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/PE.png -------------------------------------------------------------------------------- /flags/png32px/PF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/PF.png -------------------------------------------------------------------------------- /flags/png32px/PG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/PG.png -------------------------------------------------------------------------------- /flags/png32px/PH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/PH.png -------------------------------------------------------------------------------- /flags/png32px/PK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/PK.png -------------------------------------------------------------------------------- /flags/png32px/PL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/PL.png -------------------------------------------------------------------------------- /flags/png32px/PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/PM.png -------------------------------------------------------------------------------- /flags/png32px/PN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/PN.png -------------------------------------------------------------------------------- /flags/png32px/PR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/PR.png -------------------------------------------------------------------------------- /flags/png32px/PS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/PS.png -------------------------------------------------------------------------------- /flags/png32px/PT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/PT.png -------------------------------------------------------------------------------- /flags/png32px/PW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/PW.png -------------------------------------------------------------------------------- /flags/png32px/PY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/PY.png -------------------------------------------------------------------------------- /flags/png32px/QA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/QA.png -------------------------------------------------------------------------------- /flags/png32px/RE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/RE.png -------------------------------------------------------------------------------- /flags/png32px/RO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/RO.png -------------------------------------------------------------------------------- /flags/png32px/RS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/RS.png -------------------------------------------------------------------------------- /flags/png32px/RU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/RU.png -------------------------------------------------------------------------------- /flags/png32px/RW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/RW.png -------------------------------------------------------------------------------- /flags/png32px/SA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/SA.png -------------------------------------------------------------------------------- /flags/png32px/SB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/SB.png -------------------------------------------------------------------------------- /flags/png32px/SC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/SC.png -------------------------------------------------------------------------------- /flags/png32px/SD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/SD.png -------------------------------------------------------------------------------- /flags/png32px/SE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/SE.png -------------------------------------------------------------------------------- /flags/png32px/SG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/SG.png -------------------------------------------------------------------------------- /flags/png32px/SH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/SH.png -------------------------------------------------------------------------------- /flags/png32px/SI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/SI.png -------------------------------------------------------------------------------- /flags/png32px/SJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/SJ.png -------------------------------------------------------------------------------- /flags/png32px/SK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/SK.png -------------------------------------------------------------------------------- /flags/png32px/SL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/SL.png -------------------------------------------------------------------------------- /flags/png32px/SM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/SM.png -------------------------------------------------------------------------------- /flags/png32px/SN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/SN.png -------------------------------------------------------------------------------- /flags/png32px/SO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/SO.png -------------------------------------------------------------------------------- /flags/png32px/SR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/SR.png -------------------------------------------------------------------------------- /flags/png32px/SS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/SS.png -------------------------------------------------------------------------------- /flags/png32px/ST.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/ST.png -------------------------------------------------------------------------------- /flags/png32px/SV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/SV.png -------------------------------------------------------------------------------- /flags/png32px/SX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/SX.png -------------------------------------------------------------------------------- /flags/png32px/SY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/SY.png -------------------------------------------------------------------------------- /flags/png32px/SZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/SZ.png -------------------------------------------------------------------------------- /flags/png32px/TC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/TC.png -------------------------------------------------------------------------------- /flags/png32px/TD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/TD.png -------------------------------------------------------------------------------- /flags/png32px/TF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/TF.png -------------------------------------------------------------------------------- /flags/png32px/TG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/TG.png -------------------------------------------------------------------------------- /flags/png32px/TH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/TH.png -------------------------------------------------------------------------------- /flags/png32px/TJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/TJ.png -------------------------------------------------------------------------------- /flags/png32px/TK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/TK.png -------------------------------------------------------------------------------- /flags/png32px/TL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/TL.png -------------------------------------------------------------------------------- /flags/png32px/TM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/TM.png -------------------------------------------------------------------------------- /flags/png32px/TN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/TN.png -------------------------------------------------------------------------------- /flags/png32px/TO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/TO.png -------------------------------------------------------------------------------- /flags/png32px/TR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/TR.png -------------------------------------------------------------------------------- /flags/png32px/TT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/TT.png -------------------------------------------------------------------------------- /flags/png32px/TV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/TV.png -------------------------------------------------------------------------------- /flags/png32px/TW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/TW.png -------------------------------------------------------------------------------- /flags/png32px/TZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/TZ.png -------------------------------------------------------------------------------- /flags/png32px/UA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/UA.png -------------------------------------------------------------------------------- /flags/png32px/UG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/UG.png -------------------------------------------------------------------------------- /flags/png32px/UM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/UM.png -------------------------------------------------------------------------------- /flags/png32px/US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/US.png -------------------------------------------------------------------------------- /flags/png32px/UY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/UY.png -------------------------------------------------------------------------------- /flags/png32px/UZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/UZ.png -------------------------------------------------------------------------------- /flags/png32px/VA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/VA.png -------------------------------------------------------------------------------- /flags/png32px/VC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/VC.png -------------------------------------------------------------------------------- /flags/png32px/VE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/VE.png -------------------------------------------------------------------------------- /flags/png32px/VG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/VG.png -------------------------------------------------------------------------------- /flags/png32px/VI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/VI.png -------------------------------------------------------------------------------- /flags/png32px/VN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/VN.png -------------------------------------------------------------------------------- /flags/png32px/VU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/VU.png -------------------------------------------------------------------------------- /flags/png32px/WF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/WF.png -------------------------------------------------------------------------------- /flags/png32px/WS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/WS.png -------------------------------------------------------------------------------- /flags/png32px/XK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/XK.png -------------------------------------------------------------------------------- /flags/png32px/YE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/YE.png -------------------------------------------------------------------------------- /flags/png32px/ZA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/ZA.png -------------------------------------------------------------------------------- /flags/png32px/ZM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/png32px/ZM.png -------------------------------------------------------------------------------- /flags/ru.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/ru.ico -------------------------------------------------------------------------------- /flags/scripts/run.cmd: -------------------------------------------------------------------------------- 1 | npm run build-pngs -- 32: -------------------------------------------------------------------------------- /flags/set1_32/ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/ad.png -------------------------------------------------------------------------------- /flags/set1_32/ae.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/ae.png -------------------------------------------------------------------------------- /flags/set1_32/af.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/af.png -------------------------------------------------------------------------------- /flags/set1_32/ag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/ag.png -------------------------------------------------------------------------------- /flags/set1_32/ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/ai.png -------------------------------------------------------------------------------- /flags/set1_32/al.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/al.png -------------------------------------------------------------------------------- /flags/set1_32/am.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/am.png -------------------------------------------------------------------------------- /flags/set1_32/an.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/an.png -------------------------------------------------------------------------------- /flags/set1_32/ao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/ao.png -------------------------------------------------------------------------------- /flags/set1_32/aq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/aq.png -------------------------------------------------------------------------------- /flags/set1_32/ar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/ar.png -------------------------------------------------------------------------------- /flags/set1_32/as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/as.png -------------------------------------------------------------------------------- /flags/set1_32/at.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/at.png -------------------------------------------------------------------------------- /flags/set1_32/au.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/au.png -------------------------------------------------------------------------------- /flags/set1_32/aw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/aw.png -------------------------------------------------------------------------------- /flags/set1_32/ax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/ax.png -------------------------------------------------------------------------------- /flags/set1_32/az.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/az.png -------------------------------------------------------------------------------- /flags/set1_32/ba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/ba.png -------------------------------------------------------------------------------- /flags/set1_32/bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/bb.png -------------------------------------------------------------------------------- /flags/set1_32/bd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/bd.png -------------------------------------------------------------------------------- /flags/set1_32/be.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/be.png -------------------------------------------------------------------------------- /flags/set1_32/bf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/bf.png -------------------------------------------------------------------------------- /flags/set1_32/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/bg.png -------------------------------------------------------------------------------- /flags/set1_32/bh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/bh.png -------------------------------------------------------------------------------- /flags/set1_32/bi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/bi.png -------------------------------------------------------------------------------- /flags/set1_32/bj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/bj.png -------------------------------------------------------------------------------- /flags/set1_32/bl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/bl.png -------------------------------------------------------------------------------- /flags/set1_32/bm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/bm.png -------------------------------------------------------------------------------- /flags/set1_32/bn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/bn.png -------------------------------------------------------------------------------- /flags/set1_32/bo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/bo.png -------------------------------------------------------------------------------- /flags/set1_32/br.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/br.png -------------------------------------------------------------------------------- /flags/set1_32/bs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/bs.png -------------------------------------------------------------------------------- /flags/set1_32/bt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/bt.png -------------------------------------------------------------------------------- /flags/set1_32/bv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/bv.png -------------------------------------------------------------------------------- /flags/set1_32/bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/bw.png -------------------------------------------------------------------------------- /flags/set1_32/by.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/by.png -------------------------------------------------------------------------------- /flags/set1_32/bz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/bz.png -------------------------------------------------------------------------------- /flags/set1_32/ca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/ca.png -------------------------------------------------------------------------------- /flags/set1_32/cc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/cc.png -------------------------------------------------------------------------------- /flags/set1_32/cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/cd.png -------------------------------------------------------------------------------- /flags/set1_32/cf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/cf.png -------------------------------------------------------------------------------- /flags/set1_32/cg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/cg.png -------------------------------------------------------------------------------- /flags/set1_32/ch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/ch.png -------------------------------------------------------------------------------- /flags/set1_32/ci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/ci.png -------------------------------------------------------------------------------- /flags/set1_32/ck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/ck.png -------------------------------------------------------------------------------- /flags/set1_32/cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/cl.png -------------------------------------------------------------------------------- /flags/set1_32/cm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/cm.png -------------------------------------------------------------------------------- /flags/set1_32/cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/cn.png -------------------------------------------------------------------------------- /flags/set1_32/co.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/co.png -------------------------------------------------------------------------------- /flags/set1_32/cr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/cr.png -------------------------------------------------------------------------------- /flags/set1_32/cu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/cu.png -------------------------------------------------------------------------------- /flags/set1_32/cv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/cv.png -------------------------------------------------------------------------------- /flags/set1_32/cw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/cw.png -------------------------------------------------------------------------------- /flags/set1_32/cx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/cx.png -------------------------------------------------------------------------------- /flags/set1_32/cy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/cy.png -------------------------------------------------------------------------------- /flags/set1_32/cz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/cz.png -------------------------------------------------------------------------------- /flags/set1_32/de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/de.png -------------------------------------------------------------------------------- /flags/set1_32/dj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/dj.png -------------------------------------------------------------------------------- /flags/set1_32/dk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/dk.png -------------------------------------------------------------------------------- /flags/set1_32/dm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/dm.png -------------------------------------------------------------------------------- /flags/set1_32/do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/do.png -------------------------------------------------------------------------------- /flags/set1_32/dz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/dz.png -------------------------------------------------------------------------------- /flags/set1_32/ec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/ec.png -------------------------------------------------------------------------------- /flags/set1_32/ee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/ee.png -------------------------------------------------------------------------------- /flags/set1_32/eg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/eg.png -------------------------------------------------------------------------------- /flags/set1_32/eh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/eh.png -------------------------------------------------------------------------------- /flags/set1_32/en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/en.png -------------------------------------------------------------------------------- /flags/set1_32/er.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/er.png -------------------------------------------------------------------------------- /flags/set1_32/es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/es.png -------------------------------------------------------------------------------- /flags/set1_32/et.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/et.png -------------------------------------------------------------------------------- /flags/set1_32/eu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/eu.png -------------------------------------------------------------------------------- /flags/set1_32/fi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/fi.png -------------------------------------------------------------------------------- /flags/set1_32/fj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/fj.png -------------------------------------------------------------------------------- /flags/set1_32/fk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/fk.png -------------------------------------------------------------------------------- /flags/set1_32/fm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/fm.png -------------------------------------------------------------------------------- /flags/set1_32/fo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/fo.png -------------------------------------------------------------------------------- /flags/set1_32/fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/fr.png -------------------------------------------------------------------------------- /flags/set1_32/ga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/ga.png -------------------------------------------------------------------------------- /flags/set1_32/gb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/gb.png -------------------------------------------------------------------------------- /flags/set1_32/gd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/gd.png -------------------------------------------------------------------------------- /flags/set1_32/ge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/ge.png -------------------------------------------------------------------------------- /flags/set1_32/gf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/gf.png -------------------------------------------------------------------------------- /flags/set1_32/gg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/gg.png -------------------------------------------------------------------------------- /flags/set1_32/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/gh.png -------------------------------------------------------------------------------- /flags/set1_32/gi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/gi.png -------------------------------------------------------------------------------- /flags/set1_32/gl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/gl.png -------------------------------------------------------------------------------- /flags/set1_32/gm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/gm.png -------------------------------------------------------------------------------- /flags/set1_32/gn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/gn.png -------------------------------------------------------------------------------- /flags/set1_32/gp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/gp.png -------------------------------------------------------------------------------- /flags/set1_32/gq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/gq.png -------------------------------------------------------------------------------- /flags/set1_32/gr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/gr.png -------------------------------------------------------------------------------- /flags/set1_32/gs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/gs.png -------------------------------------------------------------------------------- /flags/set1_32/gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/gt.png -------------------------------------------------------------------------------- /flags/set1_32/gu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/gu.png -------------------------------------------------------------------------------- /flags/set1_32/gw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/gw.png -------------------------------------------------------------------------------- /flags/set1_32/gy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/gy.png -------------------------------------------------------------------------------- /flags/set1_32/hk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/hk.png -------------------------------------------------------------------------------- /flags/set1_32/hm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/hm.png -------------------------------------------------------------------------------- /flags/set1_32/hn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/hn.png -------------------------------------------------------------------------------- /flags/set1_32/hr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/hr.png -------------------------------------------------------------------------------- /flags/set1_32/ht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/ht.png -------------------------------------------------------------------------------- /flags/set1_32/hu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/hu.png -------------------------------------------------------------------------------- /flags/set1_32/id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/id.png -------------------------------------------------------------------------------- /flags/set1_32/ie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/ie.png -------------------------------------------------------------------------------- /flags/set1_32/il.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/il.png -------------------------------------------------------------------------------- /flags/set1_32/im.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/im.png -------------------------------------------------------------------------------- /flags/set1_32/in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/in.png -------------------------------------------------------------------------------- /flags/set1_32/io.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/io.png -------------------------------------------------------------------------------- /flags/set1_32/iq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/iq.png -------------------------------------------------------------------------------- /flags/set1_32/ir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/ir.png -------------------------------------------------------------------------------- /flags/set1_32/is.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/is.png -------------------------------------------------------------------------------- /flags/set1_32/it.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/it.png -------------------------------------------------------------------------------- /flags/set1_32/je.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/je.png -------------------------------------------------------------------------------- /flags/set1_32/jm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/jm.png -------------------------------------------------------------------------------- /flags/set1_32/jo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/jo.png -------------------------------------------------------------------------------- /flags/set1_32/jp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/jp.png -------------------------------------------------------------------------------- /flags/set1_32/ke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/ke.png -------------------------------------------------------------------------------- /flags/set1_32/kg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/kg.png -------------------------------------------------------------------------------- /flags/set1_32/kh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/kh.png -------------------------------------------------------------------------------- /flags/set1_32/ki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/ki.png -------------------------------------------------------------------------------- /flags/set1_32/km.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/km.png -------------------------------------------------------------------------------- /flags/set1_32/kn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/kn.png -------------------------------------------------------------------------------- /flags/set1_32/kp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/kp.png -------------------------------------------------------------------------------- /flags/set1_32/kr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/kr.png -------------------------------------------------------------------------------- /flags/set1_32/kw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/kw.png -------------------------------------------------------------------------------- /flags/set1_32/ky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/ky.png -------------------------------------------------------------------------------- /flags/set1_32/kz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/kz.png -------------------------------------------------------------------------------- /flags/set1_32/la.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/la.png -------------------------------------------------------------------------------- /flags/set1_32/lb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/lb.png -------------------------------------------------------------------------------- /flags/set1_32/lc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/lc.png -------------------------------------------------------------------------------- /flags/set1_32/li.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/li.png -------------------------------------------------------------------------------- /flags/set1_32/lk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/lk.png -------------------------------------------------------------------------------- /flags/set1_32/lr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/lr.png -------------------------------------------------------------------------------- /flags/set1_32/ls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/ls.png -------------------------------------------------------------------------------- /flags/set1_32/lt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/lt.png -------------------------------------------------------------------------------- /flags/set1_32/lu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/lu.png -------------------------------------------------------------------------------- /flags/set1_32/lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/lv.png -------------------------------------------------------------------------------- /flags/set1_32/ly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/ly.png -------------------------------------------------------------------------------- /flags/set1_32/ma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/ma.png -------------------------------------------------------------------------------- /flags/set1_32/mc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/mc.png -------------------------------------------------------------------------------- /flags/set1_32/md.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/md.png -------------------------------------------------------------------------------- /flags/set1_32/me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/me.png -------------------------------------------------------------------------------- /flags/set1_32/mf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/mf.png -------------------------------------------------------------------------------- /flags/set1_32/mg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/mg.png -------------------------------------------------------------------------------- /flags/set1_32/mh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/mh.png -------------------------------------------------------------------------------- /flags/set1_32/mk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/mk.png -------------------------------------------------------------------------------- /flags/set1_32/ml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/ml.png -------------------------------------------------------------------------------- /flags/set1_32/mm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/mm.png -------------------------------------------------------------------------------- /flags/set1_32/mn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/mn.png -------------------------------------------------------------------------------- /flags/set1_32/mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/mo.png -------------------------------------------------------------------------------- /flags/set1_32/mp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/mp.png -------------------------------------------------------------------------------- /flags/set1_32/mq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/mq.png -------------------------------------------------------------------------------- /flags/set1_32/mr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/mr.png -------------------------------------------------------------------------------- /flags/set1_32/ms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/ms.png -------------------------------------------------------------------------------- /flags/set1_32/mt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/mt.png -------------------------------------------------------------------------------- /flags/set1_32/mu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/mu.png -------------------------------------------------------------------------------- /flags/set1_32/mv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/mv.png -------------------------------------------------------------------------------- /flags/set1_32/mw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/mw.png -------------------------------------------------------------------------------- /flags/set1_32/mx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/mx.png -------------------------------------------------------------------------------- /flags/set1_32/my.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/my.png -------------------------------------------------------------------------------- /flags/set1_32/mz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/mz.png -------------------------------------------------------------------------------- /flags/set1_32/na.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/na.png -------------------------------------------------------------------------------- /flags/set1_32/nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/nc.png -------------------------------------------------------------------------------- /flags/set1_32/nd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/nd.png -------------------------------------------------------------------------------- /flags/set1_32/ne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/ne.png -------------------------------------------------------------------------------- /flags/set1_32/nf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/nf.png -------------------------------------------------------------------------------- /flags/set1_32/ng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/ng.png -------------------------------------------------------------------------------- /flags/set1_32/ni.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/ni.png -------------------------------------------------------------------------------- /flags/set1_32/nl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/nl.png -------------------------------------------------------------------------------- /flags/set1_32/no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/no.png -------------------------------------------------------------------------------- /flags/set1_32/np.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/np.png -------------------------------------------------------------------------------- /flags/set1_32/nr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/nr.png -------------------------------------------------------------------------------- /flags/set1_32/nu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/nu.png -------------------------------------------------------------------------------- /flags/set1_32/nz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/nz.png -------------------------------------------------------------------------------- /flags/set1_32/om.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/om.png -------------------------------------------------------------------------------- /flags/set1_32/pa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/pa.png -------------------------------------------------------------------------------- /flags/set1_32/pe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/pe.png -------------------------------------------------------------------------------- /flags/set1_32/pf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/pf.png -------------------------------------------------------------------------------- /flags/set1_32/pg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/pg.png -------------------------------------------------------------------------------- /flags/set1_32/ph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/ph.png -------------------------------------------------------------------------------- /flags/set1_32/pk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/pk.png -------------------------------------------------------------------------------- /flags/set1_32/pl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/pl.png -------------------------------------------------------------------------------- /flags/set1_32/pm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/pm.png -------------------------------------------------------------------------------- /flags/set1_32/pn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/pn.png -------------------------------------------------------------------------------- /flags/set1_32/pr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/pr.png -------------------------------------------------------------------------------- /flags/set1_32/ps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/ps.png -------------------------------------------------------------------------------- /flags/set1_32/pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/pt.png -------------------------------------------------------------------------------- /flags/set1_32/pw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/pw.png -------------------------------------------------------------------------------- /flags/set1_32/py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/py.png -------------------------------------------------------------------------------- /flags/set1_32/qa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/qa.png -------------------------------------------------------------------------------- /flags/set1_32/re.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/re.png -------------------------------------------------------------------------------- /flags/set1_32/ro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/ro.png -------------------------------------------------------------------------------- /flags/set1_32/rs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/rs.png -------------------------------------------------------------------------------- /flags/set1_32/ru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/ru.png -------------------------------------------------------------------------------- /flags/set1_32/rw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/rw.png -------------------------------------------------------------------------------- /flags/set1_32/sa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/sa.png -------------------------------------------------------------------------------- /flags/set1_32/sb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/sb.png -------------------------------------------------------------------------------- /flags/set1_32/sc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/sc.png -------------------------------------------------------------------------------- /flags/set1_32/sd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/sd.png -------------------------------------------------------------------------------- /flags/set1_32/se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/se.png -------------------------------------------------------------------------------- /flags/set1_32/sg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/sg.png -------------------------------------------------------------------------------- /flags/set1_32/sh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/sh.png -------------------------------------------------------------------------------- /flags/set1_32/si.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/si.png -------------------------------------------------------------------------------- /flags/set1_32/sj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/sj.png -------------------------------------------------------------------------------- /flags/set1_32/sk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/sk.png -------------------------------------------------------------------------------- /flags/set1_32/sl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/sl.png -------------------------------------------------------------------------------- /flags/set1_32/sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/sm.png -------------------------------------------------------------------------------- /flags/set1_32/sn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/sn.png -------------------------------------------------------------------------------- /flags/set1_32/so.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/so.png -------------------------------------------------------------------------------- /flags/set1_32/sr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/sr.png -------------------------------------------------------------------------------- /flags/set1_32/ss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/ss.png -------------------------------------------------------------------------------- /flags/set1_32/st.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/st.png -------------------------------------------------------------------------------- /flags/set1_32/sv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/sv.png -------------------------------------------------------------------------------- /flags/set1_32/sw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/sw.png -------------------------------------------------------------------------------- /flags/set1_32/sy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/sy.png -------------------------------------------------------------------------------- /flags/set1_32/sz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/sz.png -------------------------------------------------------------------------------- /flags/set1_32/tc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/tc.png -------------------------------------------------------------------------------- /flags/set1_32/td.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/td.png -------------------------------------------------------------------------------- /flags/set1_32/tf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/tf.png -------------------------------------------------------------------------------- /flags/set1_32/tg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/tg.png -------------------------------------------------------------------------------- /flags/set1_32/th.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/th.png -------------------------------------------------------------------------------- /flags/set1_32/tj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/tj.png -------------------------------------------------------------------------------- /flags/set1_32/tk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/tk.png -------------------------------------------------------------------------------- /flags/set1_32/tl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/tl.png -------------------------------------------------------------------------------- /flags/set1_32/tm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/tm.png -------------------------------------------------------------------------------- /flags/set1_32/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/tn.png -------------------------------------------------------------------------------- /flags/set1_32/to.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/to.png -------------------------------------------------------------------------------- /flags/set1_32/tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/tr.png -------------------------------------------------------------------------------- /flags/set1_32/tt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/tt.png -------------------------------------------------------------------------------- /flags/set1_32/tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/tv.png -------------------------------------------------------------------------------- /flags/set1_32/tw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/tw.png -------------------------------------------------------------------------------- /flags/set1_32/tz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/tz.png -------------------------------------------------------------------------------- /flags/set1_32/ua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/ua.png -------------------------------------------------------------------------------- /flags/set1_32/ug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/ug.png -------------------------------------------------------------------------------- /flags/set1_32/um.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/um.png -------------------------------------------------------------------------------- /flags/set1_32/us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/us.png -------------------------------------------------------------------------------- /flags/set1_32/uy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/uy.png -------------------------------------------------------------------------------- /flags/set1_32/uz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/uz.png -------------------------------------------------------------------------------- /flags/set1_32/va.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/va.png -------------------------------------------------------------------------------- /flags/set1_32/vc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/vc.png -------------------------------------------------------------------------------- /flags/set1_32/ve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/ve.png -------------------------------------------------------------------------------- /flags/set1_32/vg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/vg.png -------------------------------------------------------------------------------- /flags/set1_32/vi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/vi.png -------------------------------------------------------------------------------- /flags/set1_32/vn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/vn.png -------------------------------------------------------------------------------- /flags/set1_32/vu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/vu.png -------------------------------------------------------------------------------- /flags/set1_32/wa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/wa.png -------------------------------------------------------------------------------- /flags/set1_32/wf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/wf.png -------------------------------------------------------------------------------- /flags/set1_32/ws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/ws.png -------------------------------------------------------------------------------- /flags/set1_32/yc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/yc.png -------------------------------------------------------------------------------- /flags/set1_32/ye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/ye.png -------------------------------------------------------------------------------- /flags/set1_32/yt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/yt.png -------------------------------------------------------------------------------- /flags/set1_32/za.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/za.png -------------------------------------------------------------------------------- /flags/set1_32/zm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/zm.png -------------------------------------------------------------------------------- /flags/set1_32/zw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/set1_32/zw.png -------------------------------------------------------------------------------- /flags/us.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/flags/us.ico -------------------------------------------------------------------------------- /localization/.gitignore: -------------------------------------------------------------------------------- 1 | *.pot 2 | flat.txt 3 | .last_name -------------------------------------------------------------------------------- /localization/collect_messages.cmd: -------------------------------------------------------------------------------- 1 | "./gnuwin32/xgettext.exe" -d ss -s --keyword=_ --keyword=LOC -o "./messages.pot" --from-code=utf-8 -C "../src/*.cpp" "../src/*.h" "../src/gui2/*.h" "../src/gui2/*.cpp" "../src/gui2/Notificator/*.h" "../src/gui2/Notificator/*.cpp" -------------------------------------------------------------------------------- /localization/gnuwin32/libexpat.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/localization/gnuwin32/libexpat.dll -------------------------------------------------------------------------------- /localization/gnuwin32/libgettextlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/localization/gnuwin32/libgettextlib.dll -------------------------------------------------------------------------------- /localization/gnuwin32/libgettextpo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/localization/gnuwin32/libgettextpo.dll -------------------------------------------------------------------------------- /localization/gnuwin32/libgettextsrc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/localization/gnuwin32/libgettextsrc.dll -------------------------------------------------------------------------------- /localization/gnuwin32/libiconv2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/localization/gnuwin32/libiconv2.dll -------------------------------------------------------------------------------- /localization/gnuwin32/libintl3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/localization/gnuwin32/libintl3.dll -------------------------------------------------------------------------------- /localization/gnuwin32/msgfmt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/localization/gnuwin32/msgfmt.exe -------------------------------------------------------------------------------- /localization/gnuwin32/msginit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/localization/gnuwin32/msginit.exe -------------------------------------------------------------------------------- /localization/gnuwin32/xgettext.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/localization/gnuwin32/xgettext.exe -------------------------------------------------------------------------------- /localization/he.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/localization/he.mo -------------------------------------------------------------------------------- /localization/init.cmd: -------------------------------------------------------------------------------- 1 | "./gnuwin32/msginit" --input=messages.pot --output=%1.po --locale=%1 -------------------------------------------------------------------------------- /localization/ru.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/localization/ru.mo -------------------------------------------------------------------------------- /publish.py: -------------------------------------------------------------------------------- 1 | import subprocess 2 | import sys 3 | 4 | # Получаем все аргументы, кроме имени скрипта 5 | args = sys.argv[1:] 6 | args.append('/publish') 7 | 8 | # Запускаем второй скрипт с аргументами 9 | subprocess.run(['python', 'build.py'] + args) -------------------------------------------------------------------------------- /src/libtools/core/inc_all.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "core.h" 3 | #include "winAutoCleanBase.h" 4 | #include "Errors.h" 5 | #include "WinInfo.h" 6 | #include "Logger.h" -------------------------------------------------------------------------------- /src/libtools/utils/ImageHandler.h: -------------------------------------------------------------------------------- 1 | namespace Images { 2 | 3 | // Обертка над Image, позволяющая получить изображение нужно размера. 4 | class ImageHandler { 5 | virtual Image GetImage(Vec_i2 desire_size) = 0; 6 | }; 7 | class ImageHandlerBundle { 8 | }; 9 | class ImageHandlerSVG { 10 | }; 11 | } 12 | -------------------------------------------------------------------------------- /src/old/bb.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/src/old/bb.ico -------------------------------------------------------------------------------- /src/old/gui/inc_all.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "common.h" 3 | #include "TrayIcon.h" 4 | #include "simpletabs.h" 5 | #include "button.h" -------------------------------------------------------------------------------- /src/old/myres.rc: -------------------------------------------------------------------------------- 1 | appicon ICON "app.ico" 2 | 3 | #include "../flags/flag_res16.rc" 4 | #include "../flags/flag_res32.rc" 5 | 6 | lang_ru MOFILE "../../localization/ru.mo" 7 | lang_he MOFILE "../../localization/he.mo" 8 | 9 | #define wxUSE_DPI_AWARE_MANIFEST 2 10 | #include "../../../wxWidgets/include/wx/msw/wx.rc" // relative path for VS editor -------------------------------------------------------------------------------- /src/res/Play-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/src/res/Play-Regular.ttf -------------------------------------------------------------------------------- /src/res/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aegel5/SimpleSwitcher/9c8c8ced31deb2621a43fcb8c4a15d0a12504158/src/res/app.ico -------------------------------------------------------------------------------- /src/res/res.rc: -------------------------------------------------------------------------------- 1 | 101 ICON "app.ico" 2 | lang_Russian RCDATA "../../localization/ru.mo" 3 | lang_Hebrew RCDATA "../../localization/he.mo" 4 | font2 RCDATA "Play-Regular.ttf" 5 | -------------------------------------------------------------------------------- /src/ver.h: -------------------------------------------------------------------------------- 1 | namespace details { 2 | static const char* SW_VERSION = "6.503"; 3 | } 4 | 5 | inline const char* GET_SW_VERSION() { 6 | #ifdef PUBLIC_RELEASE 7 | return details::SW_VERSION; 8 | #endif 9 | static std::string ver{ details::SW_VERSION + "_U"s }; 10 | return ver.c_str(); 11 | } 12 | --------------------------------------------------------------------------------