qrc_occqt.cpp 126 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782
  1. /****************************************************************************
  2. ** Resource object code
  3. **
  4. ** Created by: The Resource Compiler for Qt version 6.6.0
  5. **
  6. ** WARNING! All changes made in this file will be lost!
  7. *****************************************************************************/
  8. static const unsigned char qt_resource_data[] = {
  9. // E:/vs/occQt-master/occQt-master/Resources/fuse.png
  10. 0x0,0x0,0x3,0xad,
  11. 0x89,
  12. 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
  13. 0x0,0x0,0x20,0x0,0x0,0x0,0x20,0x8,0x2,0x0,0x0,0x0,0xfc,0x18,0xed,0xa3,
  14. 0x0,0x0,0x0,0x6,0x62,0x4b,0x47,0x44,0x0,0xff,0x0,0xff,0x0,0xff,0xa0,0xbd,
  15. 0xa7,0x93,0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xe,0xc4,0x0,0x0,
  16. 0xe,0xc4,0x1,0x95,0x2b,0xe,0x1b,0x0,0x0,0x3,0x4d,0x49,0x44,0x41,0x54,0x48,
  17. 0x89,0x95,0x56,0x3b,0xae,0x1d,0x45,0x10,0x3d,0xa7,0xa7,0xdf,0xdb,0xcb,0x8b,0xde,
  18. 0x2e,0x8,0x10,0xb,0xf0,0x1e,0x90,0x2d,0xb1,0x0,0x62,0x16,0x80,0x40,0x6c,0x82,
  19. 0x1c,0x21,0x79,0x29,0x10,0x23,0x87,0x96,0x1c,0xcd,0x54,0x1d,0x82,0xfa,0x4c,0xdf,
  20. 0xb9,0xd7,0x96,0xdd,0xc1,0x4c,0x4d,0x75,0x4d,0x7d,0x4e,0x7d,0xba,0xf9,0xfa,0xfa,
  21. 0x3a,0xc6,0x0,0xe0,0xee,0x2b,0xf1,0xe5,0xcf,0xaf,0x97,0x1f,0xa8,0x15,0xdc,0x26,
  22. 0x2e,0x5a,0x62,0x85,0xc0,0x37,0xc9,0xcf,0xde,0x76,0x77,0x92,0x66,0x16,0x7b,0x92,
  23. 0x82,0xdf,0x9c,0x20,0x82,0xb3,0xfe,0xb5,0xaa,0x5b,0x39,0x41,0xcc,0x78,0x99,0x99,
  24. 0xa4,0x30,0x40,0x72,0xfd,0x8d,0xa4,0xa4,0xa6,0x8f,0xe3,0x68,0x3a,0xfc,0xd8,0xb6,
  25. 0x2d,0xbc,0xb9,0xb7,0x31,0xc6,0x98,0xed,0xaf,0x99,0xfd,0xf8,0xeb,0xdf,0x92,0x0,
  26. 0xb5,0x72,0x40,0xf5,0xc4,0x2d,0x33,0x4c,0xf0,0xb7,0xb7,0xdf,0x85,0xa2,0x87,0x30,
  27. 0xba,0xfb,0x6c,0x34,0xcc,0xec,0xdf,0xf,0x9f,0xc2,0x41,0x72,0x8,0x80,0x1c,0xab,
  28. 0x62,0xe,0x5,0x87,0x23,0xb6,0xe6,0x9c,0x1,0x57,0x44,0x8f,0x47,0x2b,0xd,0x4,
  29. 0x4a,0xfb,0x7e,0x1c,0x2e,0x0,0xd2,0xd1,0x20,0x74,0x88,0xa4,0x90,0x11,0x59,0x70,
  30. 0xa4,0xc3,0xcc,0xb6,0x6d,0xb,0xc9,0x0,0x73,0x7d,0xa6,0x81,0x88,0xc5,0xdd,0x21,
  31. 0x79,0xf8,0x28,0x80,0x90,0x4b,0x0,0x89,0xfc,0xc1,0x25,0x88,0xa4,0xb,0x69,0x5a,
  32. 0x72,0xf7,0x76,0x3f,0x34,0xae,0x4f,0x92,0xb3,0x13,0x8,0x40,0x70,0xb9,0x87,0xe7,
  33. 0x72,0x25,0xa1,0x8a,0xa0,0x62,0x41,0xed,0xa,0xbe,0xc4,0xf7,0x0,0x22,0x49,0x37,
  34. 0x6,0x20,0xa1,0x6b,0x26,0x88,0x8a,0x17,0x92,0x57,0x7e,0x15,0xe8,0x49,0x37,0xb9,
  35. 0x7f,0xb4,0x24,0xcd,0xb5,0xa,0x1,0x48,0x46,0xc,0xb9,0x23,0x72,0x69,0xf9,0xc4,
  36. 0x0,0x1,0x39,0x38,0x6,0xdc,0x35,0x0,0x7,0xb6,0xcd,0x6b,0x91,0x6c,0x55,0x9d,
  37. 0x92,0x84,0x28,0x16,0x0,0x73,0x87,0x4b,0x30,0x9,0x24,0xe4,0x4,0xb2,0x70,0xe0,
  38. 0xc,0x87,0xdd,0x8c,0x4,0x9c,0x80,0xcc,0x3d,0xca,0xaf,0xd5,0x85,0x97,0x51,0xb5,
  39. 0x69,0x0,0x4b,0xcb,0xc0,0xbd,0xa3,0x91,0xc2,0x61,0xde,0x43,0xdc,0x5b,0x72,0x7f,
  40. 0xf7,0xfb,0xfb,0xb9,0x65,0xc6,0x3,0xbb,0x90,0xf9,0xe3,0xa7,0x1f,0xe6,0x9c,0x58,
  41. 0xcb,0x34,0x45,0xea,0xa3,0xca,0xe4,0xcc,0x6d,0xf3,0x93,0x90,0x76,0xd3,0x3f,0xff,
  42. 0x7d,0xc,0x6,0xc1,0xd0,0x40,0x70,0xce,0x1c,0x27,0x63,0x8c,0xb9,0xb8,0xac,0x70,
  43. 0x22,0x14,0xd4,0x70,0x80,0x54,0x4f,0x5c,0x8,0x1,0xdc,0xcd,0xd1,0xee,0xa5,0x7d,
  44. 0x9,0x59,0xbe,0x58,0xa7,0x69,0xd6,0xa4,0x2b,0x5a,0x3b,0x3b,0xc9,0x95,0x61,0x35,
  45. 0xa7,0x88,0xf4,0xea,0x33,0xf2,0xd9,0x58,0xd,0xd1,0x92,0x6a,0x55,0xe1,0x9f,0xb1,
  46. 0x94,0xb2,0x25,0xd6,0x0,0x29,0x2,0xbe,0x97,0x3f,0x91,0xc6,0x99,0x64,0x20,0x3,
  47. 0xab,0x54,0xe2,0x5c,0x4,0x43,0x5d,0x8f,0xbe,0x33,0x15,0xb8,0x97,0xd7,0x38,0x27,
  48. 0xc7,0x6d,0x92,0xe5,0x50,0x44,0xd,0xd4,0x80,0x8c,0x49,0x21,0x37,0x8c,0x1,0x77,
  49. 0xe,0xca,0x95,0xbb,0xfd,0x79,0x95,0x1f,0xad,0x76,0xae,0x39,0x90,0xe4,0xe6,0xd1,
  50. 0xa4,0xac,0x2c,0xf5,0x68,0x96,0x19,0x0,0x99,0x9a,0xae,0xcf,0xab,0xbc,0x96,0xa9,
  51. 0x31,0xa3,0x9,0x97,0x4a,0x97,0xbb,0x88,0x98,0x13,0x27,0x1a,0x91,0x68,0x82,0x20,
  52. 0xdc,0x9d,0x59,0x96,0x11,0xc6,0x23,0x79,0x9,0x7d,0x1e,0xa0,0xba,0xee,0xaf,0x5f,
  53. 0xde,0x98,0x59,0x64,0xff,0x6c,0x6f,0xb3,0xef,0x7f,0xfe,0x93,0x8a,0xe9,0xe4,0x39,
  54. 0x68,0x6f,0x7,0x51,0xba,0x1c,0xd3,0x57,0x30,0x86,0x61,0xcf,0x13,0x2d,0xdc,0xdf,
  55. 0xb6,0xed,0xf9,0xf9,0xb9,0xcb,0xab,0x6d,0xec,0xfb,0x3e,0xa9,0xdd,0xbc,0x61,0x24,
  56. 0x89,0xea,0x19,0x56,0x2d,0x9d,0x34,0x89,0xe5,0xa0,0x3a,0x73,0x30,0xc6,0x88,0xff,
  57. 0xd7,0x72,0x8c,0x39,0xa3,0xaa,0x3b,0xc9,0x9,0x7a,0xb5,0x77,0x77,0x64,0x0,0x93,
  58. 0x2d,0x27,0x39,0x6f,0xcb,0x54,0x52,0x8c,0xa7,0xd6,0xbe,0x5a,0x32,0x33,0xc8,0xf3,
  59. 0x20,0x42,0x22,0xed,0x55,0x9f,0x45,0xd0,0x13,0xa7,0xac,0xe6,0x9e,0x6f,0x73,0x3d,
  60. 0xde,0x22,0x8e,0xe0,0xf4,0xdd,0x22,0x8d,0x79,0xa2,0xdf,0x5,0xdf,0x29,0x58,0xe3,
  61. 0x48,0x27,0x97,0x3b,0xc0,0x99,0x83,0xfb,0x3,0x6f,0xcd,0x44,0xb8,0x9e,0x63,0xbc,
  62. 0xeb,0xa5,0xca,0x46,0x3d,0x87,0x6a,0x1a,0xc5,0x22,0x39,0x5a,0x4b,0x6b,0x7c,0x7c,
  63. 0x3f,0x68,0xbd,0xd5,0x17,0x81,0x97,0x9a,0x83,0xa5,0xab,0x17,0xe7,0xae,0x6,0xd6,
  64. 0xf3,0xa7,0x41,0x4b,0xec,0x99,0xe,0x32,0x83,0x4e,0x9d,0xac,0x96,0x8,0xf,0x32,
  65. 0x27,0x75,0xfe,0xf0,0xe5,0xe5,0x65,0xb5,0x71,0xce,0xa5,0xea,0x94,0xe3,0x38,0xf6,
  66. 0x7d,0x3f,0x8e,0xc3,0x97,0xe3,0xe8,0x73,0x8b,0xe4,0x18,0x63,0xce,0xf9,0xf4,0xf4,
  67. 0x34,0xe7,0xbc,0xde,0x2a,0x2e,0xd1,0x84,0xb1,0x6d,0xdb,0x50,0xc9,0xbf,0x17,0xbe,
  68. 0x5c,0x2c,0x43,0x32,0xd6,0x79,0x64,0xae,0x72,0x97,0x32,0x8d,0x7b,0x67,0xd8,0x58,
  69. 0xc5,0x2e,0x57,0x85,0x2f,0xf0,0xff,0x7,0x74,0x7a,0xed,0xc3,0xaf,0x4c,0xbd,0xc1,
  70. 0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
  71. // E:/vs/occQt-master/occQt-master/Resources/box.png
  72. 0x0,0x0,0x2,0x38,
  73. 0x89,
  74. 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
  75. 0x0,0x0,0x20,0x0,0x0,0x0,0x20,0x8,0x6,0x0,0x0,0x0,0x73,0x7a,0x7a,0xf4,
  76. 0x0,0x0,0x1,0xff,0x49,0x44,0x41,0x54,0x78,0xda,0xed,0x97,0xcb,0x2f,0x3,0x41,
  77. 0x1c,0xc7,0xfd,0x2d,0x2e,0x4e,0x12,0x8f,0xa8,0x28,0xa9,0xd4,0xb3,0xf,0xa5,0x44,
  78. 0x22,0xc4,0xc1,0xbf,0x41,0xfc,0xf,0x1c,0x3c,0xe,0x28,0x12,0x1a,0xd,0x95,0x78,
  79. 0x47,0xb5,0x14,0x55,0xad,0x2e,0x4a,0xd5,0x33,0x88,0x52,0x8f,0xea,0x7a,0x5c,0x9a,
  80. 0x34,0x3d,0xfc,0x74,0x26,0x69,0x93,0xda,0xa9,0x25,0x99,0xd9,0x5e,0x4c,0xf2,0xb9,
  81. 0xed,0xcc,0xf7,0xf3,0x9b,0x9d,0x9d,0x9d,0xc9,0x82,0xc,0xb7,0x2c,0xb1,0x7,0x3c,
  82. 0x1e,0xe,0xb2,0x73,0x72,0x41,0x5d,0xa7,0xa7,0x86,0x4a,0xdb,0x0,0xfd,0x3,0x83,
  83. 0xe2,0x2,0x56,0xab,0xd,0x5a,0x5a,0xdb,0x99,0x54,0x5e,0x58,0x5c,0xf6,0xb3,0x80,
  84. 0xd3,0xe9,0x4,0x65,0xb5,0x9a,0x49,0xf8,0xe1,0xc9,0x25,0x14,0x14,0x97,0xa6,0x17,
  85. 0x40,0x95,0x2b,0x6b,0x34,0xcc,0xc2,0xa7,0x17,0xd7,0x21,0x5f,0x96,0x46,0x60,0x6f,
  86. 0xcf,0xc3,0x6c,0xda,0x13,0xe1,0x69,0x5,0x1c,0xe,0x7,0x5e,0x70,0xac,0xc3,0x89,
  87. 0x2,0x76,0xfb,0x26,0xb4,0xb5,0x77,0x48,0x12,0x2e,0x10,0x40,0xef,0xbc,0xb2,0x56,
  88. 0xcb,0x24,0xdc,0xeb,0xbf,0x82,0x99,0xa5,0xd,0x1,0x29,0x2,0x1a,0x5d,0x23,0xb8,
  89. 0xe,0xfc,0xd4,0xc3,0xef,0x1e,0x9e,0xc1,0xbc,0x6c,0x27,0x92,0x22,0x50,0x15,0xaf,
  90. 0x3e,0xf8,0x14,0x82,0xdb,0xc0,0x23,0x15,0x2,0xc1,0x17,0x3c,0x38,0x2a,0xea,0x57,
  91. 0x2,0x15,0xf1,0x4f,0xe,0x75,0xbc,0xb8,0xe,0x50,0x1,0x8d,0x85,0x9a,0xfb,0xf0,
  92. 0x14,0xe6,0x56,0xb7,0x88,0x8,0x4,0xd0,0x74,0x5d,0xde,0xdc,0x53,0x21,0x21,0xc0,
  93. 0x1d,0x9d,0xc1,0xbc,0x65,0x9b,0x88,0x24,0x2,0xfb,0xc7,0xe7,0xb0,0xb0,0xe6,0x20,
  94. 0x22,0x10,0x60,0xb1,0x6,0x90,0xc0,0xa2,0x75,0x87,0x8,0x53,0x81,0xfb,0xc7,0x50,
  95. 0x52,0x60,0xc9,0xe6,0x24,0x22,0x10,0x78,0xe,0xf1,0xd8,0x9c,0x6,0x4f,0x2f,0xe1,
  96. 0xe4,0x6,0xb4,0xbc,0xbe,0x4b,0x44,0x32,0x81,0x95,0xd,0x17,0x11,0x49,0x4,0xd0,
  97. 0x2e,0x68,0xd9,0x74,0x13,0x11,0x8,0xbc,0xf2,0x1f,0xb8,0x23,0xd,0x42,0xe1,0xf7,
  98. 0xbf,0xb,0x84,0xdf,0x3e,0xf1,0x2c,0xd0,0xe0,0x5f,0x40,0x4c,0xa0,0x7f,0x7c,0x16,
  99. 0xf2,0x8b,0xe4,0x99,0x11,0xe8,0x19,0x9a,0x8a,0xff,0xfa,0x35,0x30,0x65,0x32,0x49,
  100. 0x2f,0x80,0x2a,0xaf,0x52,0x69,0x61,0xc4,0x60,0x80,0x68,0x34,0x2a,0xad,0x40,0xef,
  101. 0xb0,0x9,0xf2,0xa,0x4b,0xc0,0x68,0x34,0x26,0xc3,0x25,0x13,0xe8,0x1b,0x33,0x43,
  102. 0x7d,0x53,0x33,0x18,0x46,0x47,0x21,0x12,0x89,0x8,0x6f,0x46,0x2c,0x5,0x12,0x95,
  103. 0x4f,0x4c,0x4c,0xa6,0x54,0x2e,0x89,0x0,0xfa,0xed,0x6a,0x74,0x7a,0x5c,0x39,0x29,
  104. 0x3c,0x29,0x80,0xe,0xa4,0xe8,0x3c,0x80,0x24,0x68,0xf0,0xf6,0xfe,0x89,0x8f,0x63,
  105. 0xb5,0x6a,0x1d,0x5e,0x70,0xdf,0xa7,0x5d,0x20,0xd0,0xd9,0xd5,0xd,0x32,0x79,0x39,
  106. 0x14,0x95,0x28,0xa8,0x21,0x57,0x28,0x71,0x78,0x2c,0x16,0x13,0xbf,0x1d,0xf3,0x3c,
  107. 0xf,0x5e,0xaf,0x37,0x7e,0x13,0xf6,0x50,0x81,0xe3,0x38,0xf0,0xf9,0x7c,0xa2,0xe1,
  108. 0xa8,0x7d,0x1,0x9f,0x2d,0x1e,0x54,0x18,0xa2,0x5b,0xfc,0x0,0x0,0x0,0x0,0x49,
  109. 0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
  110. // E:/vs/occQt-master/occQt-master/Resources/fillet.png
  111. 0x0,0x0,0x3,0xa1,
  112. 0x89,
  113. 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
  114. 0x0,0x0,0x20,0x0,0x0,0x0,0x20,0x8,0x2,0x0,0x0,0x0,0xfc,0x18,0xed,0xa3,
  115. 0x0,0x0,0x0,0x6,0x62,0x4b,0x47,0x44,0x0,0xff,0x0,0xff,0x0,0xff,0xa0,0xbd,
  116. 0xa7,0x93,0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xe,0xc4,0x0,0x0,
  117. 0xe,0xc4,0x1,0x95,0x2b,0xe,0x1b,0x0,0x0,0x3,0x41,0x49,0x44,0x41,0x54,0x48,
  118. 0x89,0xbd,0x96,0x4f,0x48,0x54,0x51,0x14,0xc6,0xbf,0xfb,0xfe,0x36,0xbd,0xb0,0xb0,
  119. 0x37,0x13,0x4d,0x69,0x66,0x4e,0x60,0x21,0xc,0x41,0xb,0xb3,0x32,0xa,0x49,0xcb,
  120. 0x3f,0x41,0xd9,0xaa,0x4d,0x41,0x25,0x2e,0xa,0x92,0xa8,0x21,0x5a,0xb8,0x12,0x2a,
  121. 0x29,0x9,0xa2,0x55,0xbb,0x16,0x61,0x44,0x44,0x52,0xe0,0xa2,0x44,0x34,0x5a,0x8c,
  122. 0x10,0x14,0x16,0x66,0x4e,0x9a,0xa0,0xc2,0x80,0x85,0x32,0xe9,0xbc,0x7b,0x4f,0x8b,
  123. 0x37,0x3a,0x6f,0x66,0x5e,0x91,0xcf,0xec,0xf0,0x18,0x86,0x99,0xcb,0xf9,0x9d,0xef,
  124. 0xfb,0xce,0x85,0xc7,0x88,0x8,0x2b,0x59,0xd2,0x8a,0x76,0xff,0x1f,0x0,0x25,0xf7,
  125. 0xa7,0xee,0x9e,0x37,0x4f,0xdf,0xc6,0x1e,0x7e,0x32,0x92,0x24,0x1,0x30,0xb4,0xd4,
  126. 0x99,0x6,0x74,0x7d,0xf8,0xf8,0xd9,0xb5,0x4b,0x4f,0xf7,0x33,0x55,0x55,0x5d,0xff,
  127. 0x62,0xce,0xc,0x62,0xa3,0x63,0xed,0x8f,0xfa,0x3a,0x87,0xb4,0xe6,0x5d,0xb4,0x63,
  128. 0x77,0x79,0xc5,0xf6,0xf5,0xce,0xa3,0x25,0x17,0xbb,0x67,0x1f,0xd4,0xba,0x76,0xd9,
  129. 0x73,0xa0,0xe6,0x77,0x8c,0x34,0x20,0x36,0x3a,0xd6,0x74,0xaf,0x57,0xf2,0x17,0x9f,
  130. 0x3e,0x58,0x58,0x14,0x58,0x9d,0x7b,0x74,0x73,0x9e,0xcf,0x3,0x23,0x9d,0x41,0xfb,
  131. 0xa3,0x3e,0x98,0x5b,0x2f,0x35,0x94,0x14,0xf8,0x57,0xb,0x20,0x77,0xb7,0xbe,0xfd,
  132. 0x48,0x7c,0xee,0xa8,0x32,0xce,0x3c,0x77,0x5,0xf4,0xbf,0x7e,0x51,0x59,0x55,0x9f,
  133. 0x4c,0x26,0xdd,0x1,0xdd,0x3d,0x6f,0x3a,0x87,0xb4,0x53,0x95,0x5,0xab,0x54,0x89,
  134. 0xb,0x12,0x82,0x88,0x5c,0x16,0xd8,0x3,0x23,0x5,0x78,0xfa,0x36,0x76,0xa4,0xbc,
  135. 0x38,0x68,0xfa,0x2c,0x22,0x41,0x24,0x88,0xb8,0xb0,0xbf,0x64,0x4b,0x59,0x2a,0x43,
  136. 0x2,0x30,0x33,0x33,0xf3,0xf0,0x93,0xb1,0x73,0x4b,0x9e,0xc5,0x89,0xb,0xb2,0x4,
  137. 0x59,0x82,0x4,0x81,0xdb,0x30,0x91,0xad,0x64,0x49,0xc,0x5,0x0,0xe7,0x3c,0x49,
  138. 0xd2,0x26,0xd3,0x67,0x11,0x91,0x60,0x12,0x23,0x99,0x31,0x91,0xfa,0x84,0xc4,0x40,
  139. 0x82,0x6,0x86,0xa7,0x7b,0x7,0xe3,0x2f,0x6,0x26,0x2d,0x4e,0x0,0xc,0x4d,0x31,
  140. 0x34,0x25,0xd0,0xf4,0x72,0xea,0x7e,0xb5,0x2b,0x63,0x31,0x73,0x5,0x80,0x65,0x59,
  141. 0x0,0x7c,0x9a,0xcc,0x5,0x88,0x91,0xcc,0x20,0x18,0x14,0x6,0x92,0x20,0x1,0x93,
  142. 0xd3,0x73,0x9d,0xfd,0xe3,0xaf,0xde,0x4d,0x56,0x6d,0x53,0x2e,0x57,0xe8,0x5,0x6b,
  143. 0x25,0x43,0x63,0x8b,0xbd,0x1e,0x77,0xbd,0xca,0x5,0x6c,0xdc,0x60,0x2,0x48,0x24,
  144. 0x12,0x29,0x80,0x3d,0x91,0x25,0x52,0xad,0x5,0x83,0x2c,0x81,0x88,0xc9,0xa0,0xc9,
  145. 0xef,0x73,0x77,0xbb,0x86,0xf5,0xe4,0xec,0xb5,0xca,0x55,0x9b,0xf2,0x96,0x76,0xed,
  146. 0x6d,0x97,0xd2,0x37,0x99,0xb,0x22,0xdb,0x10,0xc6,0x88,0x48,0x62,0x20,0xe0,0x71,
  147. 0xff,0xb8,0x9e,0x9c,0x3d,0xb3,0x4b,0xf3,0xa9,0xec,0xf7,0xad,0xfe,0x54,0xe9,0xa1,
  148. 0x2c,0x22,0x8b,0x84,0x25,0xc0,0x89,0xb8,0x20,0x4e,0x34,0x30,0xfc,0xbd,0x6f,0x30,
  149. 0x7e,0xac,0x54,0xf5,0xdc,0x3d,0xd,0x38,0xfc,0xf3,0xc9,0xd9,0xdb,0x51,0x4e,0xe0,
  150. 0x44,0x96,0x10,0x16,0xc1,0x12,0xf4,0x7e,0x64,0xfa,0x50,0x11,0x5b,0xaa,0x33,0xee,
  151. 0x80,0xe1,0xd8,0xd8,0x97,0x1b,0x15,0xe7,0x6e,0x47,0x39,0xd1,0x2,0x86,0xba,0xa2,
  152. 0x13,0xa5,0x7e,0x79,0x39,0xdd,0xe1,0xb4,0x88,0x1,0x23,0x37,0x2a,0xce,0xdf,0x89,
  153. 0x72,0x1,0xdb,0x22,0x2e,0x50,0xb8,0x4e,0x66,0x1e,0xca,0x15,0x0,0xc6,0xc0,0xd8,
  154. 0xc8,0xcd,0xbd,0x4d,0x1d,0x51,0x41,0x10,0x4,0x0,0x6b,0x74,0xc9,0xb,0xc0,0x81,
  155. 0x70,0x28,0x58,0xa8,0xd8,0xad,0x7d,0x4d,0x1d,0x51,0x21,0x60,0x68,0xa,0x63,0xf0,
  156. 0xf0,0xc0,0x21,0x41,0x71,0xa,0x58,0xac,0xaf,0xed,0xfb,0xb6,0xb4,0xf4,0x1a,0x9a,
  157. 0x92,0x29,0xf7,0x6f,0x8b,0xc1,0x55,0x41,0xe6,0x1c,0xa3,0xed,0xfb,0x9d,0xb2,0x3c,
  158. 0x87,0xe0,0xcc,0x20,0xfb,0x99,0xba,0x5f,0xed,0xc9,0x21,0xe6,0x54,0xe0,0xb4,0xc8,
  159. 0xc5,0xd,0x4f,0xe,0x65,0x64,0x20,0x1,0x50,0x14,0xe5,0xfa,0x95,0xb,0xb5,0xd,
  160. 0x27,0x73,0xa7,0xf0,0x6a,0x51,0x66,0x6,0x3e,0x9f,0xaf,0xac,0xac,0x2c,0xd2,0xd2,
  161. 0x7c,0xb4,0xa1,0x31,0x63,0x19,0x3c,0x3,0xb2,0x42,0x56,0x55,0xd5,0x34,0xcd,0x70,
  162. 0x38,0x1c,0x69,0x69,0x3e,0x52,0xdf,0xe8,0x9c,0x62,0xf9,0x6b,0x2a,0xd9,0x63,0xea,
  163. 0xba,0xee,0xf7,0xfb,0xc3,0xe1,0x70,0x5b,0xeb,0xd5,0x9a,0xba,0x13,0xb,0x41,0xff,
  164. 0xbb,0x2d,0xb2,0x19,0x81,0x40,0x20,0x14,0xa,0xb5,0xb5,0x46,0x6a,0xea,0x8e,0xa7,
  165. 0x2c,0x5a,0xf6,0x16,0x65,0xdc,0x64,0x5d,0xd7,0x4d,0xd3,0xc,0x85,0x4a,0xda,0x5a,
  166. 0x23,0xd5,0xb5,0xc7,0x3d,0x2b,0x80,0xeb,0x9a,0xda,0xa5,0x69,0x9a,0x69,0x9a,0x0,
  167. 0xda,0x5a,0x23,0x7b,0xe,0xd4,0xfc,0xf5,0x62,0x66,0xd7,0xd6,0xc2,0x60,0x2a,0x45,
  168. 0xd7,0xd7,0xf7,0xf9,0xf9,0xf9,0x78,0x3c,0x3e,0x31,0x31,0x91,0x48,0x24,0x3c,0x74,
  169. 0x97,0x65,0x39,0x3f,0x3f,0x3f,0x18,0xc,0x1a,0x86,0xf1,0xb,0x82,0xc,0x88,0xfe,
  170. 0xdc,0x50,0xf7,0x83,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
  171. // E:/vs/occQt-master/occQt-master/Resources/common.png
  172. 0x0,0x0,0x3,0xbc,
  173. 0x89,
  174. 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
  175. 0x0,0x0,0x20,0x0,0x0,0x0,0x20,0x8,0x2,0x0,0x0,0x0,0xfc,0x18,0xed,0xa3,
  176. 0x0,0x0,0x0,0x6,0x62,0x4b,0x47,0x44,0x0,0xff,0x0,0xff,0x0,0xff,0xa0,0xbd,
  177. 0xa7,0x93,0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xe,0xc4,0x0,0x0,
  178. 0xe,0xc4,0x1,0x95,0x2b,0xe,0x1b,0x0,0x0,0x3,0x5c,0x49,0x44,0x41,0x54,0x48,
  179. 0x89,0x8d,0x55,0x3d,0x8e,0x26,0x45,0xc,0x7d,0xae,0xaa,0x3e,0xcc,0x44,0x13,0x23,
  180. 0xd0,0xa,0x21,0x44,0xc4,0x29,0x20,0x40,0x44,0x44,0x9c,0x3,0x71,0x0,0x8e,0x41,
  181. 0x40,0x0,0x42,0xbb,0x2,0x71,0x8,0x62,0x52,0x18,0x81,0x60,0x76,0xdb,0xf6,0x23,
  182. 0x70,0x95,0xdb,0xdd,0xdf,0xec,0x40,0x7,0xad,0x52,0xfd,0xf8,0xd9,0xcf,0xf6,0xb3,
  183. 0xdc,0xdf,0xdf,0xb7,0xd6,0x0,0xb8,0x7b,0x6b,0xcd,0xdd,0x1,0xc4,0x4e,0x6e,0x3e,
  184. 0xb3,0xf8,0xcf,0xfb,0x23,0x2f,0x1,0x30,0xb3,0xb8,0x6d,0x66,0xb1,0x1f,0xeb,0x38,
  185. 0x25,0x79,0xd9,0x49,0xeb,0x9,0x56,0xad,0xc5,0x85,0x91,0x6f,0x48,0x92,0x4,0xa0,
  186. 0xaa,0x79,0x43,0x44,0x48,0xc6,0x3f,0x37,0x5b,0x6b,0xb1,0x29,0x22,0xbd,0xf7,0xb0,
  187. 0x58,0xed,0x6,0x4c,0xec,0x8c,0x38,0x23,0x69,0x66,0x3f,0xbe,0xfc,0x89,0x0,0x90,
  188. 0xb6,0x4,0xe0,0xf9,0x9f,0x9b,0x10,0xc8,0xfb,0x2f,0xde,0xad,0xfc,0x24,0x4c,0x5,
  189. 0x1b,0x11,0x7b,0x0,0xfc,0xfd,0xf8,0x48,0x12,0x10,0x11,0x10,0x0,0xcf,0x16,0x33,
  190. 0xe,0x11,0x90,0x22,0x8,0x26,0x33,0x44,0x11,0xc1,0xcd,0x37,0xe2,0x8d,0xbb,0x9b,
  191. 0x99,0xaa,0x72,0x6,0x50,0x70,0x64,0x66,0x0,0x90,0x23,0x18,0x40,0x0,0x33,0xeb,
  192. 0xbd,0x5f,0x30,0x2a,0x99,0x22,0x72,0x44,0xe0,0xee,0x66,0x4e,0x32,0xc9,0xa8,0xfe,
  193. 0x8b,0xcc,0x78,0x12,0x42,0x9a,0x54,0x2a,0xc2,0x6e,0x5a,0xf,0x24,0x92,0xa3,0x86,
  194. 0xa3,0x66,0x71,0xe3,0x30,0xb7,0x3c,0x12,0x0,0xd3,0xc7,0x75,0xe4,0x92,0xce,0xdd,
  195. 0x92,0x93,0x48,0x57,0x80,0x3c,0x9b,0xa6,0x27,0xdd,0xa7,0xc0,0xe3,0xb4,0xba,0x99,
  196. 0x0,0xb7,0x60,0x23,0xab,0x93,0xa4,0xb9,0xd3,0xc,0xad,0x61,0xc6,0x7e,0xae,0x9f,
  197. 0xd6,0x68,0xc6,0xe5,0x76,0x6b,0x4d,0x44,0xe2,0x5f,0x81,0xab,0x7f,0x22,0x32,0xaa,
  198. 0x77,0xb6,0xef,0x4e,0x8a,0xd9,0x4c,0xa8,0x80,0xe4,0xc7,0x1f,0x7d,0x90,0x85,0x98,
  199. 0xb6,0xc6,0x18,0xbd,0xf7,0x6d,0xdb,0x22,0x79,0x35,0xa0,0xba,0x40,0x56,0x51,0xfe,
  200. 0xb9,0x4e,0x8,0xc2,0x21,0x4d,0xc6,0x18,0x63,0x9c,0x98,0x4,0xd0,0x5a,0xeb,0xbd,
  201. 0xf7,0xde,0x13,0x20,0x12,0x1e,0x48,0xe1,0x50,0x54,0xd7,0x39,0x7,0x6a,0x5c,0xe9,
  202. 0x9,0x9f,0xe0,0xc,0x67,0xbf,0xfc,0xe6,0xd5,0x1,0xbd,0x48,0xfb,0xfa,0xf3,0xf,
  203. 0x45,0xe4,0xd5,0xcf,0xbf,0x5c,0xe0,0x5,0xf2,0xe2,0xbd,0x77,0x2,0xe3,0x14,0x81,
  204. 0xb9,0x79,0x20,0x2c,0xda,0x65,0x75,0xf5,0xaf,0xbf,0x3d,0x68,0x29,0x4a,0x0,0x63,
  205. 0x89,0xd2,0x3f,0x8f,0x8f,0x80,0x9c,0x7b,0x9d,0xd9,0x83,0xa3,0x36,0xa1,0xba,0xbb,
  206. 0x1a,0x6e,0x5a,0xc6,0xdd,0x5f,0xef,0xbb,0xaa,0x7,0x75,0x2,0x21,0xb8,0x8d,0xae,
  207. 0xaa,0x22,0xa2,0x6a,0x41,0x6c,0x2,0xa4,0x16,0xcd,0x8,0x8e,0x2a,0xda,0xcd,0xdc,
  208. 0x8e,0x7c,0x96,0x23,0xd7,0xdd,0x7c,0x16,0x96,0x87,0xad,0x29,0x8f,0x9c,0xed,0x59,
  209. 0x3e,0x77,0x86,0xbe,0x21,0xfa,0x20,0x9d,0x55,0x53,0x33,0x3f,0x95,0xe6,0xc2,0x73,
  210. 0x53,0xdd,0xd,0xa5,0xfe,0x1a,0xdb,0x74,0xcb,0x3,0xea,0x89,0xf6,0x9c,0x49,0xce,
  211. 0xda,0xda,0x55,0xe9,0xe4,0x12,0x4b,0x80,0xf4,0xe9,0xda,0xfe,0xe6,0xb5,0xfb,0x7c,
  212. 0x33,0x31,0x7c,0xd6,0xee,0xae,0xf6,0x8c,0xde,0x8d,0x24,0x44,0x44,0xcc,0xcc,0xdd,
  213. 0x81,0xa3,0x7b,0xd5,0xf6,0x78,0xe3,0xb6,0x47,0x4,0xd9,0x7c,0x1d,0x3d,0x1e,0x9a,
  214. 0x19,0xcf,0xf9,0x97,0xd6,0xb1,0x44,0x7b,0x4,0x59,0x1,0xf0,0xc5,0x67,0x9f,0xec,
  215. 0xfb,0x9e,0x12,0x16,0x4a,0xd9,0x7b,0x7,0xf0,0xc3,0x57,0x9f,0xaa,0x6a,0x54,0x3d,
  216. 0x80,0x31,0x46,0x1c,0x99,0x99,0xa9,0x3a,0x67,0xe6,0x25,0x44,0xeb,0x68,0xa7,0x95,
  217. 0x83,0x30,0x97,0x5,0x10,0xee,0xb7,0xd6,0x42,0x9,0x32,0x76,0x77,0xcf,0x6b,0x58,
  218. 0x93,0x6a,0xb5,0x67,0x28,0x3d,0x1,0x34,0x93,0xbc,0x3f,0x29,0x4a,0x6d,0x29,0xbd,
  219. 0x7c,0x8,0x83,0xbb,0x7f,0xfb,0xdd,0xf7,0x73,0x50,0x94,0x72,0x4,0x40,0xe7,0xc3,
  220. 0x9f,0x7f,0xa5,0xca,0xc6,0xb,0x4a,0x3b,0x49,0x45,0xf0,0x53,0x2d,0xd6,0x64,0x86,
  221. 0x9b,0xbf,0xff,0xf1,0x30,0x7d,0xac,0x2d,0x22,0x80,0xc3,0x72,0x7a,0x2c,0xe4,0xde,
  222. 0xca,0xc8,0xc,0xa3,0x49,0x42,0xbe,0x4f,0x81,0x23,0x69,0x66,0x6f,0x4c,0x5d,0x23,
  223. 0xc9,0x87,0xab,0x15,0xec,0xcc,0xe4,0x31,0x2a,0xc6,0x6d,0x6d,0xd5,0x67,0xcc,0x81,
  224. 0x5a,0x7a,0xf0,0xc9,0xaf,0x2,0xb4,0xc2,0xc7,0xd1,0x7,0xd5,0x91,0x5b,0x8c,0xd5,
  225. 0x83,0x97,0x2c,0x94,0x19,0x5d,0xf6,0x43,0x65,0x8f,0x4e,0xbe,0xb8,0x7f,0x59,0xa0,
  226. 0xf4,0x20,0x8a,0x16,0x5d,0x23,0x28,0x65,0x5a,0xdf,0x8e,0xb,0xfb,0x17,0xa2,0x12,
  227. 0x60,0xf5,0xe0,0xd9,0xeb,0xa2,0xf,0x97,0x1c,0x1c,0x85,0x73,0x77,0x77,0xc7,0xb7,
  228. 0xc,0xd5,0x2c,0x71,0x55,0xdd,0xf7,0x5d,0x55,0x53,0xc2,0x9e,0xf9,0x7a,0xef,0x63,
  229. 0x8c,0x6d,0xdb,0x62,0x22,0x8d,0x4b,0x25,0xdc,0x92,0x3,0xa0,0xb5,0xb6,0x6d,0x5b,
  230. 0xe8,0xfb,0x6d,0xe5,0x9c,0x88,0x12,0x69,0xeb,0x8b,0x20,0x4e,0x33,0xf9,0xc9,0xc7,
  231. 0x22,0x32,0xc6,0x78,0x9b,0xd1,0xe7,0xf7,0x49,0xb6,0x3a,0xf,0x92,0x96,0xba,0xa8,
  232. 0x74,0x5d,0x16,0xff,0xe7,0xfe,0xbf,0x38,0x25,0x14,0x6f,0x8c,0xbb,0x48,0x96,0x0,
  233. 0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
  234. // E:/vs/occQt-master/occQt-master/Resources/Zoom.png
  235. 0x0,0x0,0x4,0x82,
  236. 0x89,
  237. 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
  238. 0x0,0x0,0x20,0x0,0x0,0x0,0x20,0x8,0x2,0x0,0x0,0x0,0xfc,0x18,0xed,0xa3,
  239. 0x0,0x0,0x0,0x6,0x62,0x4b,0x47,0x44,0x0,0xff,0x0,0xff,0x0,0xff,0xa0,0xbd,
  240. 0xa7,0x93,0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xe,0xc4,0x0,0x0,
  241. 0xe,0xc4,0x1,0x95,0x2b,0xe,0x1b,0x0,0x0,0x4,0x22,0x49,0x44,0x41,0x54,0x48,
  242. 0x89,0xdd,0x96,0x4d,0x4c,0xdb,0x66,0x18,0xc7,0x5f,0xdb,0xb1,0xf3,0x45,0x12,0xc7,
  243. 0x69,0x89,0x9b,0x40,0x59,0x1a,0x50,0x58,0x4a,0xa0,0x6c,0x20,0x4,0xd3,0x4,0x83,
  244. 0xb2,0x22,0x55,0x1d,0x87,0xad,0x97,0x55,0x93,0x56,0x89,0xdc,0x76,0x1b,0xbd,0x72,
  245. 0x99,0xd4,0xee,0x30,0x69,0xfd,0x60,0xad,0x4a,0xa5,0x55,0x13,0x5c,0xba,0xa,0x10,
  246. 0x68,0x7,0xa4,0xdd,0xb6,0x6a,0x87,0x66,0x1c,0xd0,0x4a,0x60,0x90,0xb4,0x21,0x24,
  247. 0x4d,0x4d,0xbe,0x1d,0x1c,0x7f,0xc4,0xf6,0xbb,0x43,0xa7,0x96,0x12,0x18,0x9,0x13,
  248. 0x87,0xed,0xb9,0xd9,0xef,0xfb,0xff,0xff,0xf4,0x7f,0x1e,0x7f,0xbc,0x88,0x28,0x8a,
  249. 0xe0,0x28,0x4b,0x3,0x21,0x3c,0x52,0x0,0x7a,0xa4,0xee,0xff,0xb,0x40,0xd5,0x33,
  250. 0x50,0x14,0x25,0x14,0xa,0x25,0x12,0x89,0x3c,0x9b,0x57,0x14,0xa5,0xc6,0x58,0x43,
  251. 0xd3,0xb4,0xd7,0xeb,0xd5,0x68,0x34,0x7b,0x3,0xaa,0x72,0x5f,0x5f,0x5f,0x9f,0x9c,
  252. 0x9c,0xc,0x3f,0x7b,0x9a,0x78,0xfe,0x3c,0x97,0xcf,0x23,0x0,0x90,0x56,0xab,0xd3,
  253. 0xe9,0x74,0xbb,0x4e,0xf9,0xfd,0x7e,0x87,0xc3,0x51,0x2e,0x41,0x78,0x9e,0xaf,0xc4,
  254. 0x9a,0xe3,0xb8,0xb9,0xb9,0xb9,0xf1,0xdb,0xdf,0x69,0xd,0x35,0xb8,0xe5,0x78,0xbd,
  255. 0xa7,0xe5,0x78,0x5d,0x3d,0x2,0x1,0x13,0xdf,0x88,0xad,0xfe,0x41,0x94,0x38,0x42,
  256. 0xa3,0xb9,0x73,0xfb,0x8e,0xdd,0x6e,0x3f,0x24,0x60,0x72,0x6a,0x72,0x6a,0x6a,0x4a,
  257. 0xc4,0x74,0xad,0x1f,0x9c,0x3f,0xd3,0xf5,0x3e,0x65,0x31,0xeb,0x9,0x1c,0x41,0x40,
  258. 0x49,0x51,0x92,0xa9,0xcc,0xc2,0x83,0xef,0x95,0x4c,0xac,0xf3,0x9d,0x77,0xaf,0x8c,
  259. 0x5e,0x41,0x10,0x64,0xa7,0xb0,0xa2,0x16,0xad,0xad,0xad,0x4d,0xdc,0x9b,0xc0,0x8c,
  260. 0xd4,0xc7,0x5f,0x8c,0x35,0xba,0x4e,0x5a,0x74,0xf8,0xce,0x55,0xeb,0x49,0x27,0x7e,
  261. 0xf1,0xb3,0xf9,0xfb,0xb7,0x9e,0x45,0x22,0xd9,0x6c,0x96,0xa2,0xa8,0x37,0x0,0x95,
  262. 0xc,0x79,0x66,0x66,0xe6,0x58,0x2d,0x4d,0xb7,0xf5,0x35,0xbb,0x1a,0xc,0x5a,0xac,
  263. 0x5c,0x62,0x20,0x70,0x5c,0x83,0x4a,0x92,0x94,0xcd,0x66,0xad,0x56,0x6b,0x75,0x9,
  264. 0x64,0x59,0xde,0x8c,0x6d,0x1a,0x2c,0xb6,0xd6,0x33,0x1d,0x28,0xae,0x63,0x55,0x0,
  265. 0x11,0xc,0x41,0x0,0x2,0x55,0xd,0x2,0x9,0xa0,0x20,0x50,0xd,0xaf,0x3e,0x51,
  266. 0x24,0x61,0x93,0x61,0xa,0x85,0xc2,0x2e,0xf9,0xc1,0x0,0x14,0x45,0x9,0x9c,0x40,
  267. 0x5,0x4e,0x10,0x24,0x51,0x45,0x9,0x54,0x45,0x60,0x9,0x42,0x20,0x3,0x54,0x82,
  268. 0x98,0x8,0x11,0x91,0x4d,0xff,0xb2,0x30,0xb,0xc5,0x22,0x4e,0xe0,0x7a,0xbd,0x7e,
  269. 0xb7,0xbc,0x12,0x40,0x5f,0x5f,0x5f,0xea,0x45,0xec,0xb7,0xf9,0x1f,0xf2,0xd1,0x55,
  270. 0x8d,0x2c,0x10,0x50,0xd1,0x42,0xc5,0x8,0x25,0x50,0x48,0x3e,0xfe,0xf9,0xa7,0x7b,
  271. 0x5f,0x7d,0x9,0x24,0x3e,0x99,0x4a,0x9e,0xf6,0x9e,0x76,0xb9,0x5c,0x55,0x27,0x0,
  272. 0x0,0xf8,0x7c,0xbe,0xd4,0x56,0x92,0x20,0x88,0xd9,0xfb,0xd7,0xf5,0xe6,0x63,0x75,
  273. 0x6f,0x35,0x62,0x18,0x96,0x88,0x45,0xb,0x59,0x46,0x2a,0xe6,0x4b,0x5c,0x96,0xe5,
  274. 0x5,0x49,0x94,0xfc,0x7e,0x3f,0x8e,0xe3,0xbb,0xb4,0x15,0xd,0x99,0xe3,0xb8,0xce,
  275. 0x8e,0xce,0x99,0xe9,0x87,0xb4,0xe3,0x84,0xeb,0x94,0x3b,0xc8,0x44,0x54,0xa8,0x62,
  276. 0x18,0x56,0x28,0x6c,0xb3,0x2c,0xb,0x20,0xd0,0xeb,0xb4,0x17,0x3e,0xb9,0xe8,0x72,
  277. 0xb9,0xca,0xdd,0xe,0x4e,0xc0,0x71,0x5c,0x20,0x10,0x8,0xad,0xff,0xa9,0xd7,0x82,
  278. 0x58,0x74,0x43,0x10,0x4b,0x94,0xcd,0xf6,0x72,0x49,0x96,0x65,0x49,0x10,0xdf,0xeb,
  279. 0xe9,0xe9,0xef,0xef,0x17,0x45,0x91,0xe7,0x79,0xa3,0xd1,0x58,0x1d,0x40,0x55,0xd5,
  280. 0xbb,0x13,0x77,0x7f,0x7d,0xf4,0x88,0x49,0x32,0x92,0x82,0x5e,0xfb,0xfa,0x1b,0x8a,
  281. 0xa2,0x16,0x17,0x17,0x39,0x8e,0x33,0x99,0x4c,0x1e,0x8f,0x67,0x68,0x68,0xc8,0x66,
  282. 0xb3,0xad,0xac,0xac,0x4,0x83,0x41,0x82,0x20,0xca,0x1d,0xe,0x0,0xcc,0xcf,0xcf,
  283. 0x3f,0xfe,0x3d,0x50,0x7f,0xb2,0x1e,0x27,0x70,0xa8,0xa2,0x76,0xbb,0xbd,0xa9,0xa9,
  284. 0x69,0x78,0x78,0x18,0x45,0x5f,0x3f,0x1d,0x92,0x24,0x25,0x12,0x9,0x9a,0xa6,0xcb,
  285. 0x7,0x0,0xfe,0x79,0x6,0xd3,0xd3,0xd3,0xd3,0xb3,0x33,0x76,0xda,0x5e,0x28,0x14,
  286. 0x98,0xc4,0x8b,0xae,0xae,0xae,0x62,0xb1,0xb8,0xb4,0xb4,0x14,0xa,0x85,0x68,0x9a,
  287. 0x26,0x49,0x12,0x45,0xd1,0x6c,0x36,0x1b,0x8f,0xc7,0x75,0x3a,0x5d,0x4b,0x4b,0xcb,
  288. 0x9e,0x56,0xfb,0x26,0x58,0x5e,0x5e,0x7e,0xf0,0xf0,0x47,0xfb,0x9,0x3b,0xc7,0x15,
  289. 0x63,0x9b,0xf1,0x3a,0x67,0x5d,0x6f,0x6f,0xaf,0xd7,0xeb,0x65,0x18,0x26,0x9d,0x4e,
  290. 0x87,0xc3,0xe1,0x57,0x3b,0x2d,0x16,0x4b,0x7b,0x7b,0xbb,0xc9,0x64,0xda,0xd3,0x7,
  291. 0xd9,0xde,0xde,0x2e,0xbf,0x1b,0x8,0x4,0xbe,0xbd,0x71,0x9d,0x76,0xd0,0x45,0xae,
  292. 0x18,0x89,0x44,0xb4,0x38,0x71,0xe9,0xd3,0x4b,0x6d,0x6d,0x6d,0x1e,0x8f,0x7,0x0,
  293. 0xc0,0xb2,0x6c,0x26,0x93,0x11,0x4,0x1,0xc3,0x30,0x8a,0xa2,0xac,0x56,0xeb,0xce,
  294. 0x8e,0x1d,0x9c,0x20,0x97,0xcb,0xdd,0x1a,0x1f,0xb7,0x58,0x49,0x9e,0x17,0xd2,0xe9,
  295. 0xb4,0x2c,0x95,0x3e,0x3a,0x7f,0x81,0x24,0xc9,0xda,0xda,0xda,0x97,0x1b,0xcc,0x66,
  296. 0xb3,0xd9,0x6c,0xde,0xcf,0xf1,0x0,0x40,0x34,0x1a,0xbd,0x7a,0xed,0x2a,0x49,0x91,
  297. 0xaa,0xaa,0xc6,0xe3,0xf1,0xd4,0x56,0xf2,0xf2,0xe7,0x97,0x1b,0x1a,0x1a,0xba,0xbb,
  298. 0xbb,0xd,0x6,0x43,0x85,0xa6,0x6f,0x0,0x76,0x4e,0x46,0x92,0xa4,0x1b,0x37,0x6f,
  299. 0x2a,0x50,0x81,0x0,0xb2,0x2c,0x9b,0xda,0x4a,0x9e,0x1d,0x38,0xeb,0x76,0xbb,0x5b,
  300. 0x5b,0x5b,0xf5,0x7a,0xfd,0xe1,0xe,0x38,0xaf,0x7b,0x7,0x21,0x1c,0x1b,0x1b,0x5b,
  301. 0x5d,0xd,0x6a,0x75,0xfa,0x74,0x3a,0xf3,0x34,0x14,0x3e,0xf7,0xe1,0xb9,0x81,0x81,
  302. 0x81,0x9e,0x9e,0x1e,0x92,0x24,0xf,0x61,0xfd,0x77,0x82,0x9d,0x0,0x9e,0xe7,0x83,
  303. 0x4f,0x96,0x44,0x49,0x94,0x65,0xd5,0xfb,0xb6,0x77,0x70,0x70,0xd0,0xe7,0xf3,0xed,
  304. 0xf7,0x37,0xaf,0x3a,0x1,0x8a,0xa2,0xa3,0xa3,0xa3,0xee,0xc6,0xe6,0xd8,0xc6,0x66,
  305. 0x9d,0xc3,0x39,0x32,0x32,0xd2,0xd1,0xd1,0x51,0xfe,0xf9,0xad,0xb6,0x10,0x96,0x65,
  306. 0x5f,0x5d,0x28,0x8a,0xb2,0xb0,0xb0,0x90,0xcb,0xe5,0x9a,0x9b,0x9b,0x7d,0x3e,0xdf,
  307. 0x9e,0xaf,0xfe,0xbf,0x2,0x1c,0x45,0xfd,0xf7,0x8f,0x8e,0x7f,0x1,0xc5,0x9d,0xe9,
  308. 0x73,0xcf,0xb0,0x34,0xe0,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,
  309. 0x82,
  310. // E:/vs/occQt-master/occQt-master/Resources/loft.png
  311. 0x0,0x0,0x6,0x94,
  312. 0x89,
  313. 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
  314. 0x0,0x0,0x20,0x0,0x0,0x0,0x20,0x8,0x2,0x0,0x0,0x0,0xfc,0x18,0xed,0xa3,
  315. 0x0,0x0,0x0,0x6,0x62,0x4b,0x47,0x44,0x0,0xff,0x0,0xff,0x0,0xff,0xa0,0xbd,
  316. 0xa7,0x93,0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xe,0xc4,0x0,0x0,
  317. 0xe,0xc4,0x1,0x95,0x2b,0xe,0x1b,0x0,0x0,0x6,0x34,0x49,0x44,0x41,0x54,0x48,
  318. 0x89,0xb5,0x96,0x5b,0x6c,0x5c,0x57,0x15,0x86,0xff,0xb5,0xf7,0x3e,0xe7,0xcc,0x7d,
  319. 0x3c,0xb6,0xc7,0x8e,0xdd,0x4,0x2b,0x21,0x38,0x37,0x5,0x4f,0xd3,0xd4,0xb1,0x72,
  320. 0x69,0x14,0x45,0x5,0x57,0xa,0xa4,0x82,0x34,0x49,0x1b,0x6e,0x2f,0x55,0x2a,0x41,
  321. 0xa0,0x5,0xd4,0xa8,0x4,0x41,0x24,0xfa,0x50,0x4,0xf,0xd0,0x4,0xd1,0x82,0x2a,
  322. 0x2e,0xa,0x24,0xa1,0x41,0xbc,0xa4,0xb4,0x42,0x28,0x42,0x6d,0xa9,0x44,0x55,0xd4,
  323. 0x90,0x2a,0xf4,0xc2,0xcd,0x8e,0xe9,0xd8,0xa6,0x76,0x6c,0x67,0xec,0x99,0x33,0xe7,
  324. 0xec,0xbd,0x16,0xf,0xe3,0xb8,0xa9,0x9b,0x38,0xa1,0x15,0x5b,0xeb,0x65,0xa4,0xa5,
  325. 0xff,0xdb,0xff,0xfa,0xd7,0x3e,0x1a,0x12,0x11,0xfc,0x3f,0x8f,0x89,0x63,0xbb,0xe7,
  326. 0xc8,0x8b,0xa7,0x5f,0x1e,0x26,0x90,0x40,0xf0,0xfe,0x71,0x84,0x86,0xd4,0x8e,0x9b,
  327. 0x3b,0x4e,0x1e,0xe8,0x35,0x61,0x18,0x3e,0x75,0x76,0xe4,0xd8,0x43,0x5b,0x2c,0x33,
  328. 0x33,0x4,0xef,0xcb,0x12,0x11,0x8,0xa4,0x14,0x8c,0x52,0x9f,0x7e,0xe4,0xf9,0x30,
  329. 0xc,0x8d,0xb5,0x96,0x8,0x9e,0xa2,0xa4,0x36,0x91,0x13,0x27,0x62,0x1d,0xbf,0x37,
  330. 0x4,0x1,0x46,0x2b,0x4d,0xe4,0x6b,0xb2,0x22,0x44,0xb0,0xd6,0x1a,0x0,0x8a,0xc8,
  331. 0xb1,0xa4,0x13,0x5a,0x6b,0x89,0x59,0x94,0x82,0x65,0x7e,0xf,0x0,0xa3,0x94,0xa7,
  332. 0x95,0xa7,0x8,0x40,0x3d,0x66,0x45,0x4,0xc0,0x0,0x60,0x11,0x10,0x1,0x68,0x49,
  333. 0x7a,0xd3,0x91,0xb,0x89,0x42,0x4b,0xfc,0x3f,0x4e,0x4a,0x11,0x25,0x8c,0x4a,0x18,
  334. 0x95,0xf1,0xf5,0x54,0xdd,0x2,0xb3,0xa,0x6,0x80,0x8,0x44,0x84,0x19,0xbe,0xd1,
  335. 0x79,0xad,0x74,0x64,0x41,0x88,0x1c,0xdf,0xf8,0xa4,0x14,0xc1,0xd7,0x2a,0xed,0xeb,
  336. 0x8c,0x6f,0x34,0x11,0x87,0x56,0x64,0x36,0x4b,0x3,0x40,0x58,0x9c,0xb0,0x13,0x89,
  337. 0x1d,0xb7,0xa7,0x8d,0x2,0x48,0x30,0x3,0xc4,0x7c,0x43,0x36,0x88,0xe0,0x29,0x95,
  338. 0xf6,0x74,0xd6,0x37,0x2d,0x49,0x3d,0x3a,0x63,0x1d,0x8b,0x13,0x16,0xbe,0xec,0x0,
  339. 0x80,0x75,0xb0,0x2c,0x75,0xc7,0x44,0xd4,0x9a,0xd4,0x4,0x8,0x50,0x8b,0xe1,0xae,
  340. 0x87,0x20,0x40,0x2b,0x4a,0x7a,0x3a,0x17,0x98,0x62,0xca,0x8,0x50,0x77,0x6c,0x59,
  341. 0xac,0x9b,0x6d,0x98,0x5,0x88,0x48,0xec,0x38,0xb2,0x5c,0x89,0xb8,0x33,0xed,0xc7,
  342. 0x2,0x6,0x4,0xa8,0x5b,0x76,0xb,0x22,0x34,0x51,0x60,0x54,0x36,0x30,0xb9,0x84,
  343. 0x4e,0x7b,0xa6,0x3c,0x13,0x45,0x96,0x63,0xc7,0x73,0xcb,0x7e,0x19,0x0,0x58,0xe6,
  344. 0xba,0xe3,0x5a,0xec,0xea,0xec,0xda,0x92,0xbe,0x48,0x24,0x22,0x4,0x89,0x1c,0xae,
  345. 0x65,0x43,0x11,0xf9,0x9a,0x32,0xbe,0xce,0x7,0xba,0x2d,0xe9,0xcf,0x58,0x57,0xb7,
  346. 0x1c,0x39,0xb6,0x57,0xc4,0x67,0xe6,0xba,0x2d,0x23,0x72,0x1c,0x33,0x6a,0x31,0xe7,
  347. 0x3,0x34,0x25,0x34,0xcf,0x6,0xe5,0xae,0x1a,0xc6,0xdc,0xe8,0x73,0x81,0x6e,0x4a,
  348. 0x68,0xa3,0x11,0xd6,0x5c,0xe4,0xc4,0xbe,0xb3,0xf7,0x6d,0x0,0x1,0x2c,0xa8,0x5b,
  349. 0x17,0x3a,0x5d,0x8d,0x39,0xe7,0x1b,0xeb,0x84,0x1,0xa1,0xab,0x84,0x31,0x37,0xfa,
  350. 0x6c,0xa0,0x73,0xbe,0xce,0xfb,0xe6,0x52,0xe4,0xea,0x2c,0xb1,0x73,0xc,0x28,0x22,
  351. 0x45,0xef,0x4,0x68,0x22,0xad,0x21,0x40,0xcc,0x1c,0x39,0x89,0x1c,0x8b,0xe8,0x7c,
  352. 0xc2,0xb0,0x88,0x88,0x90,0x48,0xe8,0xf8,0xca,0x7,0xae,0x15,0x25,0xb4,0xca,0xf8,
  353. 0x2a,0xe7,0xa9,0x7c,0xc2,0xb0,0xc0,0x32,0xcf,0x5d,0x5f,0x11,0x79,0x7a,0x1e,0x40,
  354. 0x43,0x93,0x22,0x8,0x33,0x22,0xcb,0x91,0xe3,0xc8,0x72,0x3a,0xd0,0x19,0xdf,0x73,
  355. 0x2,0x27,0xe0,0x8,0x91,0x92,0xc6,0xe6,0x11,0xe0,0x69,0x95,0xf4,0x75,0xc6,0xd3,
  356. 0x69,0xdf,0xb,0xb4,0xaa,0xd6,0x5d,0xec,0x24,0x72,0xe2,0x4,0x4,0xd1,0x8a,0x48,
  357. 0xe6,0x3b,0x50,0x4a,0x11,0x11,0x18,0xb0,0x22,0x11,0x23,0x12,0x9,0x58,0x52,0x9e,
  358. 0xa,0x9d,0xaa,0xc,0xf,0x9f,0x3e,0xf5,0xeb,0xbf,0xfd,0xf5,0xd5,0x72,0xf9,0x4d,
  359. 0x0,0x9d,0x9d,0x37,0x2d,0x5f,0xb5,0xf2,0x63,0xbb,0x76,0x15,0x97,0x74,0xa6,0x3d,
  360. 0x65,0x59,0x62,0x91,0x88,0xc5,0x32,0xb,0x44,0x37,0x3e,0x78,0xf3,0x32,0xd0,0x8a,
  361. 0x14,0x41,0x11,0x89,0x48,0xec,0x24,0x76,0x62,0x99,0x23,0xa7,0x92,0x1e,0x3d,0xf6,
  362. 0xfd,0xa3,0xaf,0x9c,0x3b,0xf7,0xe0,0x57,0x1f,0x58,0xf9,0xa5,0xcf,0x67,0x33,0x49,
  363. 0x0,0x95,0xe9,0xea,0xab,0xaf,0xbf,0xf1,0xc8,0x37,0xbf,0xd1,0x53,0x2a,0x1d,0x3a,
  364. 0xf8,0xe5,0xc8,0x89,0x15,0x89,0x59,0x58,0x4,0x20,0x4d,0x4,0x25,0x24,0xb3,0x8,
  365. 0x75,0xd9,0x1,0x34,0x51,0x3,0xc3,0x90,0xc8,0x71,0xdd,0x49,0xe8,0xdc,0xbe,0xcf,
  366. 0xdc,0x5b,0x5a,0xbb,0xe6,0xc4,0xb1,0x27,0x7a,0xd6,0xae,0x86,0xc8,0xc4,0xd4,0xf4,
  367. 0xc5,0xc9,0x8a,0x75,0xbc,0xaa,0xbb,0xfb,0xd8,0x4f,0x7e,0xbc,0x7a,0x45,0xf7,0xa7,
  368. 0x3e,0x7b,0x6f,0xcd,0xba,0xba,0xe3,0xd8,0x9,0x40,0xa,0xa2,0x15,0x69,0x45,0x7a,
  369. 0x7e,0xc8,0x8a,0x1a,0xd1,0x2b,0x22,0x88,0x58,0x96,0x9a,0xe3,0x9f,0x3d,0xf6,0xf8,
  370. 0xbe,0xbb,0x77,0x6f,0xd9,0xb4,0x71,0x74,0x6c,0xb2,0x5e,0x8f,0xa3,0xd8,0xce,0x3d,
  371. 0x1f,0x22,0xf2,0x3d,0xd3,0xb7,0x61,0x43,0xa5,0x52,0xf9,0xe1,0xa3,0x3f,0xd8,0xbb,
  372. 0x7f,0x7f,0xcc,0x2,0x40,0x29,0x82,0x8,0x98,0x48,0xe1,0x6d,0x7,0x3b,0xd6,0x75,
  373. 0xa4,0x3c,0xdd,0x50,0xd7,0xa,0x44,0xb0,0xc2,0x23,0xc3,0xa3,0x7f,0x7a,0xe1,0x8f,
  374. 0xa5,0x9e,0x9e,0xf1,0xc9,0x4b,0xb5,0xb0,0xce,0xc2,0xc6,0x28,0xcf,0xd3,0x8d,0x32,
  375. 0x46,0xb1,0x70,0x64,0xed,0xad,0xbd,0xbd,0xcf,0x3f,0xf7,0x5c,0xb9,0x3c,0x1a,0x39,
  376. 0x96,0xc6,0xf5,0x89,0xb4,0x22,0xdf,0xa8,0x1d,0xeb,0x3a,0x0,0x28,0x22,0x2a,0x15,
  377. 0xc6,0xfb,0xbf,0x7e,0x26,0x9b,0x30,0x81,0x69,0x24,0x4d,0x22,0xf4,0xd4,0x89,0xe3,
  378. 0x3b,0x77,0xee,0x14,0x90,0x67,0xcc,0x2,0x95,0xcf,0xe5,0x3e,0xfa,0x91,0xdb,0x7f,
  379. 0x7b,0xf2,0x38,0xb,0x1c,0xb,0x1,0x81,0x51,0x6d,0x69,0xbf,0xff,0xd0,0x99,0x52,
  380. 0x61,0x9c,0x88,0x94,0xe7,0x79,0x7b,0x37,0xad,0x38,0xb4,0xdd,0xdb,0x76,0xf0,0xf7,
  381. 0xc5,0x94,0xdf,0x9e,0xf1,0x89,0xc0,0x90,0xa1,0x81,0x81,0xbe,0xd,0xbd,0xc6,0xe8,
  382. 0xeb,0xd6,0x6d,0xb7,0x6d,0x1e,0x1a,0x18,0x60,0x61,0x0,0xcd,0x49,0x6f,0x71,0x36,
  383. 0xb8,0xe5,0x81,0x67,0xe,0x6d,0xf7,0xf6,0x6e,0x5a,0xe1,0x79,0x9e,0x9,0x82,0xa0,
  384. 0x58,0x6c,0xdb,0xdd,0xe7,0xb8,0x7e,0xae,0x74,0xff,0xd3,0xe7,0x8f,0xdc,0xb1,0xa6,
  385. 0x35,0xfd,0xfa,0xc5,0xea,0xe0,0xe0,0x40,0xb1,0xb5,0x59,0xeb,0xcb,0xf,0xe6,0xda,
  386. 0xa7,0x73,0x51,0xfb,0x85,0xb,0x83,0x8a,0xa8,0xbb,0x39,0x69,0x59,0xba,0xee,0x3b,
  387. 0xfd,0xd0,0x66,0xbb,0xbb,0x6f,0x75,0xb1,0xd8,0x16,0x4,0x81,0x31,0x46,0x67,0xb3,
  388. 0x59,0x22,0xba,0x67,0x9b,0x4a,0xf1,0xb,0x6b,0xe,0x3c,0x7d,0xfe,0xc8,0x1d,0xb7,
  389. 0x76,0xe4,0x0,0x18,0x6d,0x6e,0x4,0x0,0x4f,0x0,0x94,0xda,0x33,0x93,0xa1,0xed,
  390. 0xba,0xef,0xf4,0xb7,0x36,0x5e,0xba,0x73,0xdb,0xc6,0xf6,0xf6,0x45,0x99,0x4c,0xc6,
  391. 0x18,0x6d,0x0,0x18,0xa3,0xb3,0xd9,0x8c,0xd6,0x37,0xdd,0xd5,0xbf,0x95,0xf0,0x6c,
  392. 0x83,0xf1,0xa1,0xf,0x2e,0x9b,0xa9,0xce,0x34,0x17,0xa,0xd7,0xd5,0x1f,0x7d,0xeb,
  393. 0x3f,0xcb,0x96,0x2d,0x6d,0xa8,0x3f,0xbc,0xb1,0xb2,0xab,0x7f,0x6b,0xb1,0xd8,0x96,
  394. 0x4a,0x25,0x1b,0x97,0xa3,0xb9,0xcd,0x63,0xe6,0x6a,0xb5,0x36,0x36,0xf6,0xd6,0x4b,
  395. 0x67,0xcf,0xdd,0x73,0x2a,0xfe,0xda,0xea,0x7f,0x2d,0x5f,0xda,0xf5,0xc9,0x3b,0x3f,
  396. 0x7e,0x5d,0xc0,0x2f,0x4e,0x3c,0x59,0x1e,0x19,0x79,0xf8,0xfc,0xd2,0x5f,0xee,0xf2,
  397. 0xd6,0x97,0x3e,0xdc,0xda,0x5a,0x4c,0xa5,0x92,0x4a,0xcd,0xee,0x29,0x5d,0xf9,0x37,
  398. 0x88,0x99,0xc3,0xb0,0x3e,0x31,0x71,0xf1,0xc5,0x97,0x5e,0x3e,0xf8,0xcc,0x74,0xd7,
  399. 0xe0,0xc9,0x27,0x8f,0xff,0x3c,0x9d,0x4e,0x2d,0xa0,0x3e,0x5d,0x99,0xde,0xbd,0xef,
  400. 0x73,0x83,0x5d,0x7b,0xbe,0xdd,0x9f,0xe9,0x5d,0x7f,0x73,0xa1,0xd0,0x9c,0x48,0x4,
  401. 0x73,0xea,0x0,0xf4,0xe1,0xc3,0x87,0xe7,0x7e,0x10,0x91,0x31,0xc6,0xf7,0x83,0xd6,
  402. 0x96,0xc2,0xaa,0xe4,0xf8,0x70,0x18,0x8c,0xbf,0xf9,0x8f,0x75,0xa5,0x1e,0xdf,0x33,
  403. 0x5a,0xa9,0x77,0x97,0xb3,0xf6,0xf1,0x27,0x7e,0x1a,0x26,0xda,0xbe,0xb0,0x7d,0x71,
  404. 0x5f,0xef,0x2d,0xcd,0xcd,0x2d,0xf3,0xd4,0xe7,0x3b,0x68,0x1c,0x11,0xa9,0xd7,0xa3,
  405. 0x89,0x89,0x8b,0xe5,0x72,0xf9,0x3b,0x8f,0xfe,0x68,0xe5,0xf2,0xa5,0x5f,0xb9,0xff,
  406. 0x40,0x36,0x9b,0x9e,0xd7,0x56,0xa9,0x4c,0x7f,0xf7,0x7b,0x47,0x5f,0xfb,0xfb,0x3f,
  407. 0x1f,0xfc,0xe2,0xfe,0xce,0xce,0xce,0x42,0xa1,0x39,0x8,0x7c,0x22,0x9a,0xd7,0x76,
  408. 0x15,0x40,0x83,0x61,0xad,0x9d,0x9c,0x9c,0x1c,0x1a,0x1a,0x3a,0x7a,0xfc,0x77,0x23,
  409. 0x6f,0xfc,0x79,0xcf,0x5d,0x9f,0xd8,0xba,0x65,0x73,0xb1,0xb5,0x85,0x14,0x8d,0x8d,
  410. 0x8d,0x9f,0xf9,0xc3,0xb3,0xbf,0x3a,0xf5,0x9b,0xf6,0xee,0xf5,0x7,0xee,0xbe,0x7d,
  411. 0xc9,0x92,0x25,0x4d,0x4d,0x4d,0xc6,0x98,0x77,0xab,0x5f,0x13,0xd0,0x38,0x71,0x6c,
  412. 0x27,0x27,0x27,0x86,0x87,0x87,0xcf,0x9e,0xfd,0xcb,0x2b,0xe7,0x5f,0x2b,0x8f,0x8c,
  413. 0xe,0x5e,0xf8,0x37,0x80,0xae,0xf,0x2c,0xee,0x5c,0xd4,0xbe,0x76,0xcd,0xca,0x52,
  414. 0xa9,0xa7,0xa3,0xa3,0xa3,0xa9,0xa9,0xe0,0x79,0xe6,0x5a,0x22,0xb,0x1,0x1a,0x8c,
  415. 0x5a,0xad,0x56,0xa9,0x5c,0x9a,0x9a,0x9a,0xaa,0x56,0xab,0xcc,0xc,0x40,0x29,0x95,
  416. 0x4a,0xa5,0xf2,0xf9,0x7c,0x36,0x9b,0x4b,0x26,0x93,0xb,0xa8,0x3,0xf8,0x2f,0x1e,
  417. 0xc7,0x42,0x72,0xba,0xfd,0x91,0x75,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,
  418. 0x42,0x60,0x82,
  419. // E:/vs/occQt-master/occQt-master/Resources/torus.png
  420. 0x0,0x0,0x8,0x80,
  421. 0x89,
  422. 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
  423. 0x0,0x0,0x20,0x0,0x0,0x0,0x20,0x8,0x2,0x0,0x0,0x0,0xfc,0x18,0xed,0xa3,
  424. 0x0,0x0,0x0,0x6,0x62,0x4b,0x47,0x44,0x0,0xff,0x0,0xff,0x0,0xff,0xa0,0xbd,
  425. 0xa7,0x93,0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xe,0xc4,0x0,0x0,
  426. 0xe,0xc4,0x1,0x95,0x2b,0xe,0x1b,0x0,0x0,0x8,0x20,0x49,0x44,0x41,0x54,0x48,
  427. 0x89,0xb5,0x56,0x69,0x70,0x14,0xc7,0x19,0xed,0xe9,0xee,0x99,0xd9,0x6b,0xf6,0xd0,
  428. 0xb1,0xbb,0x5a,0xb1,0xab,0x3,0x1d,0x80,0xb0,0xc2,0x29,0x4,0xd8,0xe,0x87,0x1,
  429. 0x3b,0x4e,0xb9,0x52,0x24,0x71,0x71,0x38,0xb6,0x2b,0x9,0xb1,0x13,0x57,0x39,0xa9,
  430. 0x72,0xa5,0x88,0x21,0x1,0x41,0xe5,0xac,0x54,0xfc,0xc3,0x55,0x4e,0xc5,0x26,0xae,
  431. 0x1c,0xe5,0x44,0x3e,0x62,0x3b,0x84,0x43,0xd8,0x8e,0xb,0x93,0x60,0xe,0x49,0x18,
  432. 0x19,0x13,0x90,0x90,0x40,0xb0,0x5a,0xad,0xa4,0x95,0xf6,0xd0,0xce,0xec,0x9c,0xdd,
  433. 0x33,0xf9,0xd1,0x94,0x82,0x49,0x50,0xf2,0x27,0xef,0x6f,0x4f,0xbf,0xd7,0xfd,0xfa,
  434. 0xfb,0xe6,0x7d,0x9c,0xe3,0x38,0xe0,0xff,0x9,0x3c,0xfb,0xb2,0xe3,0x38,0x5d,0xc7,
  435. 0x8e,0x5d,0xb8,0xf0,0x8f,0x54,0x7a,0x6c,0x2a,0x5b,0xb0,0x8,0x5,0x0,0xf0,0x18,
  436. 0x55,0x94,0x7,0xe7,0xc4,0xaa,0x5a,0x5b,0x5b,0x1e,0xb8,0xff,0x7e,0x8e,0xe3,0x66,
  437. 0x61,0xe0,0xee,0x74,0x83,0x6c,0x36,0xfb,0xca,0x1f,0x3a,0xcf,0xf4,0xf6,0x79,0x5c,
  438. 0xae,0xda,0xba,0xda,0xe6,0xa6,0xc6,0xa6,0xe6,0xc6,0x50,0x20,0x40,0x29,0xcd,0x4c,
  439. 0x4e,0x5d,0xb9,0x32,0x34,0x70,0x65,0x30,0x95,0x1a,0x35,0x4d,0xb3,0x7d,0xf9,0xa2,
  440. 0x47,0xb6,0x6f,0x2d,0x2f,0x2f,0xff,0x5f,0x5,0x6c,0xdb,0x3e,0x72,0xb4,0xeb,0x8f,
  441. 0xaf,0xbf,0x1d,0xae,0xac,0x78,0xf8,0x4b,0x9b,0x5b,0xef,0x6a,0xe1,0x31,0x46,0x8,
  442. 0x72,0x1c,0xe7,0x38,0xe,0xa5,0xb6,0x45,0x88,0x69,0x9a,0xba,0x6e,0xa8,0x9a,0x3e,
  443. 0x70,0x65,0xf0,0xe8,0xb1,0x77,0x73,0xd9,0xdc,0xf6,0x2d,0x9b,0x1f,0xfc,0xdc,0x3,
  444. 0x10,0xc2,0xff,0x22,0x40,0x29,0xed,0xd8,0xff,0xa3,0xa1,0x6b,0x23,0x8f,0x3d,0xba,
  445. 0x65,0xcd,0x3d,0x77,0xbb,0x5c,0xa2,0x6d,0xdb,0xb6,0xed,0xcc,0x7c,0xc6,0x71,0x1c,
  446. 0x84,0x1c,0x84,0x50,0xd7,0xd,0x55,0xd3,0x94,0x92,0x2a,0x2b,0xa5,0x33,0x67,0x7b,
  447. 0x8e,0x1f,0x3f,0x51,0x57,0x53,0xdd,0xb1,0x67,0x37,0x42,0xe8,0x8e,0x2,0x94,0xd2,
  448. 0xbd,0xfb,0x7e,0x98,0x2f,0x2a,0x4f,0x3f,0xf5,0x64,0x73,0xe3,0x5c,0x4a,0x29,0xa1,
  449. 0xb6,0x6d,0xdb,0xa5,0x92,0x6a,0x98,0xa6,0x6d,0xdb,0x10,0x42,0x51,0x10,0xbc,0x5e,
  450. 0xf,0x84,0x10,0x23,0x88,0x10,0x92,0x95,0x52,0x51,0x56,0x8a,0x45,0x79,0xf0,0xea,
  451. 0xf0,0xa1,0xc3,0x87,0x23,0x15,0x65,0xfb,0xf6,0x7e,0xff,0x56,0x8d,0x7f,0x9,0x30,
  452. 0xf6,0xf4,0xd8,0xe4,0xfe,0x7d,0xbb,0xab,0xab,0xa2,0x84,0x50,0xd3,0xb2,0xa6,0xb2,
  453. 0xb9,0x7c,0xa1,0xa8,0x28,0x25,0xc3,0x30,0xa9,0x4d,0x11,0x44,0xa2,0x28,0xf8,0x7c,
  454. 0xde,0x50,0xd0,0x5f,0x51,0x5e,0x26,0xf0,0x3c,0xc6,0x48,0xd5,0xb4,0xc2,0xb4,0x5c,
  455. 0x98,0x2e,0x26,0x47,0x46,0x3b,0x3b,0x5f,0x4b,0xcc,0x89,0xde,0xaa,0x81,0x3a,0x3a,
  456. 0x3a,0x0,0x0,0x8e,0xe3,0x1c,0x3a,0x74,0xf8,0x6c,0x6f,0xdf,0x9e,0xdd,0x3b,0x13,
  457. 0xf1,0x6a,0x8b,0x90,0x62,0x51,0x19,0x49,0xa5,0x47,0x52,0x63,0xe9,0xb1,0x9,0xa5,
  458. 0xa4,0xea,0xba,0x61,0x18,0xa6,0xae,0x1b,0x4a,0x49,0xcd,0xe5,0xb,0x9a,0xa6,0x9b,
  459. 0xa6,0xc5,0xf3,0x3c,0xcf,0x63,0x97,0x28,0x72,0x1c,0x67,0xdb,0x36,0xc6,0x28,0x1c,
  460. 0x89,0x74,0xf7,0x9c,0xc3,0x10,0x34,0x37,0x37,0xb1,0xea,0xba,0x59,0xa6,0x99,0xcc,
  461. 0x64,0xe7,0x1b,0x7,0x1f,0x7f,0x6c,0x5b,0x7d,0x5d,0x8d,0x65,0x91,0x62,0x51,0x49,
  462. 0x8e,0xa4,0x53,0xe9,0x31,0xd3,0xb4,0x0,0x0,0xaa,0xaa,0x5d,0xb8,0x70,0x3e,0x33,
  463. 0x39,0x25,0xcb,0x25,0x0,0x80,0x24,0x79,0x2b,0x2b,0x2b,0x96,0x2f,0x5b,0x6e,0x59,
  464. 0x24,0x11,0x8f,0x5,0xfc,0x92,0xe4,0xf3,0x5a,0x96,0x65,0x18,0x66,0x75,0x75,0xd5,
  465. 0xca,0x95,0xab,0x3a,0xdf,0x38,0xd8,0xde,0xde,0x1e,0x89,0x84,0x6f,0xde,0x80,0x52,
  466. 0xfa,0xe2,0x81,0x97,0xa9,0x3,0xbe,0xfa,0xe8,0x76,0x84,0xa0,0x61,0x5a,0x23,0xa9,
  467. 0x74,0x32,0x35,0xca,0xd8,0x4f,0x9f,0x39,0xd5,0xdb,0xd3,0x83,0x20,0xd7,0xda,0xd2,
  468. 0x7c,0xf7,0xca,0xb6,0x85,0x2d,0x4d,0x5e,0xb7,0x38,0x3a,0x3a,0x76,0xee,0x7c,0xdf,
  469. 0xc8,0xe8,0xe8,0xdc,0xfa,0x7a,0xbf,0x5f,0x42,0x10,0x22,0x88,0x8,0x21,0x96,0x45,
  470. 0x3c,0x3e,0xef,0xe0,0xe0,0xd0,0x68,0x2a,0xb9,0x62,0x45,0x1b,0x84,0x10,0x3,0x0,
  471. 0x4c,0xd3,0xec,0x39,0xf7,0xc9,0x77,0xbe,0xfd,0x4d,0xaf,0xd7,0x63,0x98,0xd6,0x54,
  472. 0x36,0x97,0x99,0xcc,0x32,0xf6,0xc3,0x87,0xe,0x1,0xe0,0x7c,0x65,0xeb,0x17,0xeb,
  473. 0xeb,0xeb,0x7d,0x3e,0x1f,0xcf,0xf3,0x0,0x0,0xcb,0xb2,0x14,0x45,0x19,0x18,0x18,
  474. 0xf8,0xd3,0xc1,0xae,0x5f,0x3c,0xf7,0xfc,0xbe,0x8e,0x5d,0xd1,0x48,0xd8,0xe5,0x12,
  475. 0x5d,0x2e,0x51,0x14,0x5,0x81,0xe7,0xd7,0xac,0xf9,0xec,0xc1,0x83,0x87,0x4c,0xd3,
  476. 0x74,0xbb,0xdd,0xd0,0x71,0x9c,0xa3,0x5d,0x5d,0x82,0x80,0x5b,0xe6,0xcf,0xb3,0x6d,
  477. 0xdb,0xb6,0xed,0x7c,0xa1,0x98,0x2f,0x4c,0x3,0x0,0xce,0x9c,0x3d,0x8d,0x31,0xf7,
  478. 0xc4,0xd7,0x1f,0x5d,0xba,0x74,0x69,0x22,0x91,0x88,0x46,0xa3,0xe1,0x70,0x38,0x1c,
  479. 0xe,0x47,0xa3,0xd1,0x78,0x3c,0xde,0xd6,0xd6,0xb6,0xe3,0xf1,0x6d,0x80,0xb3,0x5f,
  480. 0xfa,0xf5,0x6f,0xd8,0x46,0x81,0x81,0xe7,0xab,0xab,0xab,0x0,0xc7,0x1d,0xed,0xea,
  481. 0x72,0x1c,0x7,0x12,0x42,0x3e,0xb9,0x78,0x79,0xee,0xdc,0x7a,0x81,0xe7,0x6d,0xdb,
  482. 0x29,0x95,0x54,0x45,0x29,0x31,0xdf,0x87,0x87,0x93,0x5b,0x1f,0xde,0xdc,0xd0,0xd0,
  483. 0x50,0x59,0x59,0x29,0x49,0x92,0x28,0x8a,0x18,0x63,0x8c,0xb1,0x28,0x8a,0x92,0x24,
  484. 0x85,0xc3,0xe1,0x5,0xb,0x16,0x7c,0xe1,0xf3,0xf7,0x5f,0xee,0x1f,0xbc,0x32,0x78,
  485. 0xd5,0xb6,0x1d,0x1e,0x63,0x1e,0x63,0x8c,0x11,0xc7,0x71,0xf1,0xea,0xea,0x4f,0x2e,
  486. 0x5e,0x26,0x84,0x40,0xcb,0xb2,0xc6,0xc6,0x33,0xad,0xb,0x5b,0x10,0x82,0x8e,0xe3,
  487. 0x18,0xa6,0x69,0x18,0x26,0x0,0xa0,0xf7,0x5c,0x77,0xb8,0x3c,0x30,0x7f,0xfe,0xfc,
  488. 0x60,0x30,0xc8,0x9c,0xf9,0x54,0xfb,0x70,0x9c,0x20,0x8,0xa1,0x50,0x68,0xc9,0x92,
  489. 0xc5,0xa1,0xa0,0xef,0x95,0xce,0x57,0x1d,0xc7,0x41,0x8,0x32,0x0,0x0,0xe2,0x35,
  490. 0xf1,0xb1,0xf1,0x8c,0x65,0x59,0x90,0x10,0x52,0x98,0x96,0x13,0x35,0x9,0x56,0x55,
  491. 0xb6,0x6d,0x53,0x9b,0x2,0x0,0x8a,0x85,0xe2,0xdd,0xab,0x56,0xcc,0xf8,0xfe,0x1f,
  492. 0xc1,0xf3,0x7c,0x20,0x10,0x58,0xdc,0xda,0x32,0x35,0x99,0x65,0xaa,0xc,0x0,0x80,
  493. 0x58,0x55,0xb4,0x30,0xad,0x10,0x42,0x20,0xa5,0xd4,0x22,0x34,0x14,0xc,0xb0,0x8e,
  494. 0x83,0x10,0x22,0x88,0x0,0x0,0x45,0xa5,0xb4,0x64,0xc9,0x62,0x97,0xcb,0x75,0x27,
  495. 0x76,0xc6,0x28,0x8a,0x62,0xdb,0xf2,0x65,0xd3,0x45,0x85,0x35,0x13,0x3,0x0,0x20,
  496. 0x18,0xc,0x5a,0x84,0x50,0x4a,0xa1,0x6d,0xdb,0x6c,0x8d,0x52,0x9b,0xe3,0x38,0x51,
  497. 0x10,0x44,0x51,0x60,0xfb,0x99,0xe9,0xb3,0x8,0xb0,0x4b,0xb8,0xdd,0x6e,0x76,0x70,
  498. 0x4a,0xd9,0x63,0xdb,0x0,0x0,0xdb,0xa6,0xac,0xfb,0x20,0x0,0x0,0x23,0x38,0x39,
  499. 0x95,0xb5,0x8,0x81,0x90,0xf3,0x7a,0x3d,0x3e,0x9f,0x17,0x0,0xe0,0x97,0x3c,0xfd,
  500. 0xfd,0x3,0xb3,0xb3,0x33,0x7c,0x74,0xbe,0x2f,0x10,0x90,0x20,0xe4,0x2c,0x42,0x2c,
  501. 0x42,0x8,0xa1,0x0,0x80,0xc9,0xa9,0x2c,0x82,0x1c,0xb3,0x4,0xfa,0x25,0xef,0xd0,
  502. 0xd0,0x55,0xd3,0x34,0xd9,0x13,0x85,0x82,0xfe,0x50,0x30,0x10,0xc,0x6,0xdf,0x7d,
  503. 0xff,0xb8,0x65,0x59,0xb3,0xb3,0xeb,0xba,0xde,0x73,0xae,0x2f,0x1a,0xae,0x84,0x10,
  504. 0x9a,0xc,0x96,0x5,0x0,0x98,0x98,0x98,0xf0,0x4b,0x5e,0x8,0x21,0x44,0x8,0x85,
  505. 0x2b,0xcb,0x2e,0xf5,0xf,0xe8,0xba,0xa1,0xeb,0x6,0x46,0xb0,0xa2,0xbc,0x2c,0x5c,
  506. 0x59,0xbe,0x62,0x45,0x7b,0x32,0x35,0xd1,0xf7,0xf1,0xc7,0xb3,0x64,0xaa,0xe3,0x38,
  507. 0x27,0x3f,0xfc,0x30,0x3d,0x3e,0xb5,0xe3,0x6b,0x8f,0xb3,0xed,0x86,0x61,0x32,0x8b,
  508. 0x92,0xc9,0x64,0xb8,0xb2,0xc,0x21,0x4,0x31,0xc6,0x4d,0x8d,0xd,0x37,0xae,0xdf,
  509. 0x50,0x35,0x5d,0xd5,0x34,0x84,0x90,0xc0,0xf3,0x55,0xd1,0x70,0x73,0x63,0x43,0x63,
  510. 0x43,0xdd,0x6f,0x7f,0xdf,0x99,0x4c,0x26,0xef,0x24,0x30,0x3c,0x7c,0xfd,0xf5,0x37,
  511. 0xff,0xb2,0x64,0xd1,0x5d,0x75,0xb5,0x9,0x55,0xd3,0x54,0x4d,0xd7,0x74,0x1d,0x0,
  512. 0x60,0x59,0x56,0x26,0x33,0xd9,0xdc,0xd4,0x88,0x31,0x86,0x3c,0xcf,0xaf,0x5f,0xb7,
  513. 0x96,0x10,0x7a,0xa9,0x7f,0x80,0xa5,0x7,0xc6,0xc8,0xef,0xf7,0x25,0xe2,0xb1,0x47,
  514. 0xb6,0x6d,0x35,0xd,0xeb,0x7,0x1d,0x3f,0xee,0xed,0xed,0xbd,0xed,0x1e,0x8e,0xe3,
  515. 0x74,0x77,0x77,0xef,0xdd,0xff,0x53,0xe0,0xc0,0xdd,0xdf,0x7b,0x46,0x56,0x4a,0x4a,
  516. 0x49,0x2d,0xa9,0x2a,0xfb,0xc1,0x5c,0xbb,0x36,0x4c,0x9,0x5d,0xb7,0x76,0xd,0xcf,
  517. 0xf3,0x18,0x63,0xec,0xf1,0x78,0xe6,0x37,0xd7,0x77,0x75,0xbd,0x53,0x5b,0x93,0x40,
  518. 0x8,0x41,0xc8,0x79,0xdc,0xee,0x80,0x5f,0x72,0xbb,0x5d,0x7b,0xf6,0x3c,0x7b,0xe0,
  519. 0xe5,0xdf,0xfd,0xec,0xb9,0x17,0x22,0x95,0x65,0xcb,0x96,0x2c,0xfa,0x4c,0xeb,0x5d,
  520. 0x82,0xc0,0x7f,0x74,0xbe,0xef,0x4c,0xf7,0x47,0x99,0xa9,0xdc,0xa2,0xd6,0x96,0x5d,
  521. 0x3b,0x9f,0x51,0x35,0xad,0x28,0x2b,0x4c,0x3,0x0,0x40,0x29,0xed,0xe9,0xe9,0x5d,
  522. 0xd0,0x5c,0xef,0xf1,0x78,0x30,0xc6,0x9c,0xe3,0x38,0x9a,0xa6,0xf5,0xf7,0xf7,0xff,
  523. 0xe4,0xe7,0xcf,0x6f,0xda,0xb8,0x7e,0xd5,0xca,0x76,0xbf,0x5f,0xf2,0x4b,0x3e,0xc9,
  524. 0xe7,0x9d,0x49,0xb4,0xa1,0xa1,0xab,0x6f,0xfd,0xf9,0xf0,0x48,0x2a,0x95,0x2f,0x14,
  525. 0x1,0x0,0x65,0xc1,0x40,0x6d,0x4d,0x7c,0xdb,0x96,0x2f,0xd7,0xd5,0xd5,0xcc,0x24,
  526. 0x5a,0xa1,0x28,0xb3,0x8a,0xb8,0x78,0xf1,0xd2,0x7,0x1f,0x9c,0x78,0xf6,0xbb,0x4f,
  527. 0xcf,0x9b,0x37,0xcf,0xed,0x76,0x63,0x0,0x80,0x20,0x8,0x73,0xe6,0xcc,0xb9,0x6f,
  528. 0xed,0xea,0xe3,0x27,0x4e,0x46,0x63,0xb1,0xda,0x44,0x9c,0x52,0x6a,0x59,0x96,0xc7,
  529. 0xed,0x66,0x99,0x3c,0x7f,0x5e,0xf3,0xae,0x9d,0x4d,0xcc,0x9c,0x5b,0x33,0x39,0x97,
  530. 0x2f,0x30,0x57,0x8b,0xb2,0xc2,0xd8,0x33,0x99,0xa9,0xbf,0xfd,0xfd,0xe4,0x7d,0x6b,
  531. 0x57,0xc7,0xe3,0x71,0x41,0x10,0x0,0x0,0x10,0x0,0x80,0x10,0x92,0x24,0x69,0xd3,
  532. 0xc6,0xd,0xe5,0x41,0xe9,0xb5,0x57,0xdf,0x48,0x8f,0x8d,0xe7,0xf2,0x85,0x6c,0xae,
  533. 0x90,0xcd,0xe5,0xb3,0xb9,0x7c,0x49,0xd5,0x8,0x21,0x0,0x38,0x1c,0x7,0x0,0x70,
  534. 0x8,0x21,0x25,0x55,0x63,0x4b,0xd9,0x5c,0x21,0x97,0x2f,0xe4,0xb,0xd3,0x8c,0x3d,
  535. 0x9b,0xcd,0xbd,0xf9,0xd6,0xdb,0xe1,0x8a,0xd0,0xa6,0x8d,0x1b,0x7c,0x3e,0x1f,0x4b,
  536. 0xcd,0x9b,0x99,0xec,0x38,0x8e,0xa2,0x28,0xe9,0x74,0xfa,0x85,0x5f,0xbd,0x54,0x94,
  537. 0x8d,0x87,0x1e,0x7a,0x30,0x16,0x8b,0xba,0x5d,0x2e,0x51,0x14,0x4,0x41,0xe0,0x31,
  538. 0x86,0xf0,0xe6,0xd8,0x62,0xdb,0x37,0xc7,0x16,0xc3,0x30,0x35,0x5d,0x67,0xaf,0xca,
  539. 0xce,0x7e,0xe4,0xc8,0x51,0xc9,0x27,0x3e,0xf5,0xe4,0x37,0x62,0xb1,0x98,0xcf,0xe7,
  540. 0x63,0x3f,0xa5,0x4f,0x85,0xbe,0x2c,0xcb,0xe3,0xe3,0xe3,0xbf,0x7c,0xf1,0xc0,0x78,
  541. 0xa6,0x70,0xef,0x3d,0xab,0x5b,0x5b,0x17,0x42,0x8,0x59,0xb2,0xdf,0x2a,0xc0,0xe6,
  542. 0x1,0x56,0xef,0xc,0x1f,0x5f,0xb8,0x78,0xfc,0xf8,0x89,0x39,0xb1,0x8a,0x6f,0x3d,
  543. 0xb1,0x23,0x1a,0x8d,0x4a,0x92,0x34,0x13,0xfa,0xb7,0x8f,0x2d,0xb2,0x2c,0x4f,0x4c,
  544. 0x4c,0xbc,0xf7,0xde,0xfb,0x27,0x4e,0xf5,0x4,0x3,0x81,0x75,0xeb,0xd6,0x54,0x57,
  545. 0xc7,0xee,0xd4,0x7,0x84,0xd2,0x1b,0x37,0x92,0x27,0x4f,0x9e,0x92,0xe5,0xe2,0xbd,
  546. 0x2b,0x97,0x6f,0xd8,0xb0,0x3e,0x12,0x89,0xdc,0xca,0x7e,0xbb,0x0,0xd3,0x50,0x55,
  547. 0x35,0x9b,0xcd,0x26,0x93,0xc9,0x63,0xef,0xfc,0x75,0x70,0x78,0x44,0xe0,0xf9,0x58,
  548. 0xac,0xba,0x2a,0x16,0x89,0x46,0x22,0xa1,0x50,0x8,0x0,0x90,0xcf,0x17,0x26,0x32,
  549. 0xe3,0xa9,0x91,0xf4,0xd8,0xd8,0x38,0x21,0x56,0x63,0x7d,0x62,0xd3,0xc6,0xf5,0x89,
  550. 0x44,0xa2,0xac,0xac,0xcc,0xeb,0xf5,0xce,0x36,0x78,0xcd,0x34,0x91,0x61,0x18,0xb2,
  551. 0x2c,0x17,0xa,0x85,0xe9,0xe9,0xe9,0xd3,0x67,0xba,0xaf,0xdf,0x48,0xe6,0xf3,0x45,
  552. 0x59,0x55,0x9,0xb1,0x1,0x0,0x18,0x43,0xc9,0xe3,0x9,0x85,0xfc,0xb5,0x35,0x89,
  553. 0x95,0xed,0x6d,0x81,0x40,0x20,0x18,0xc,0xb2,0xc8,0xfb,0xf7,0x41,0xf8,0x8e,0xc3,
  554. 0x2f,0xa5,0xd4,0x34,0x4d,0x4d,0xd3,0x4a,0xa5,0x92,0xaa,0xaa,0xba,0xae,0x9b,0xa6,
  555. 0x49,0x29,0x5,0x0,0x20,0x84,0x4,0x41,0x70,0xb9,0x5c,0x1e,0x8f,0xc7,0xeb,0xf5,
  556. 0xba,0xdd,0x6e,0x41,0x10,0x6e,0x3b,0xf8,0xc,0xfe,0x9,0x99,0x58,0x95,0x4e,0xb2,
  557. 0x6,0xef,0x24,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
  558. // E:/vs/occQt-master/occQt-master/Resources/cylinder.png
  559. 0x0,0x0,0x3,0xec,
  560. 0x89,
  561. 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
  562. 0x0,0x0,0x20,0x0,0x0,0x0,0x20,0x8,0x2,0x0,0x0,0x0,0xfc,0x18,0xed,0xa3,
  563. 0x0,0x0,0x0,0x6,0x62,0x4b,0x47,0x44,0x0,0xff,0x0,0xff,0x0,0xff,0xa0,0xbd,
  564. 0xa7,0x93,0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xe,0xc4,0x0,0x0,
  565. 0xe,0xc4,0x1,0x95,0x2b,0xe,0x1b,0x0,0x0,0x3,0x8c,0x49,0x44,0x41,0x54,0x48,
  566. 0x89,0xdd,0x56,0xdf,0x6b,0x5b,0x55,0x1c,0x3f,0xdf,0xef,0x39,0xb7,0x49,0xd3,0x34,
  567. 0x69,0x9a,0x2e,0x59,0xe7,0x82,0xb4,0xdb,0xac,0xd6,0x6,0x2d,0x15,0xb,0x22,0xe,
  568. 0xa7,0xd8,0x4e,0x84,0x81,0x85,0xcd,0x7,0xd9,0x64,0xbe,0xfa,0x2a,0x88,0x2f,0xa2,
  569. 0x4f,0x32,0x4,0x7,0xfa,0x30,0x70,0x82,0xfe,0x7,0xea,0x83,0x32,0x61,0xb0,0xa1,
  570. 0xe2,0x8f,0xea,0x5c,0xd3,0xd9,0x65,0xab,0xd5,0x8d,0xb0,0x34,0x4d,0xd3,0xe6,0x26,
  571. 0xb7,0x37,0xb9,0xb9,0x3f,0xbe,0x5f,0x1f,0x12,0xb7,0x35,0x6b,0xa0,0xb6,0xe9,0x1e,
  572. 0xfc,0xf2,0xe5,0xc2,0x3d,0xf7,0x9c,0xcf,0xe7,0x9e,0xcf,0xf7,0x7e,0xbe,0xf7,0x0,
  573. 0x33,0x8b,0x9d,0xc,0xdc,0x51,0x74,0x21,0x84,0xba,0x77,0x88,0x88,0xbe,0x39,0x77,
  574. 0xee,0xda,0x9f,0xb,0x2b,0xab,0x7a,0x6e,0x79,0xb9,0xe6,0xd8,0x35,0xcb,0xbe,0x95,
  575. 0xcd,0x36,0x4d,0x4b,0x24,0x12,0x81,0x4e,0xbf,0xdf,0xe7,0x8f,0xf5,0xf5,0x46,0xc2,
  576. 0xa1,0x87,0x6,0x7,0x27,0x27,0x5e,0x40,0x6c,0x7e,0x63,0xb8,0x2d,0x11,0x11,0x9d,
  577. 0xfd,0xec,0xf3,0xeb,0xb,0x37,0xae,0xa4,0xd3,0x7e,0xbf,0x7f,0x6c,0x6c,0x74,0x7c,
  578. 0x74,0xac,0x7f,0xf7,0xae,0x5d,0x7d,0xd1,0x4e,0x9f,0x2f,0x1c,0xa,0x35,0xad,0x2c,
  579. 0x1b,0x86,0x65,0xd9,0xab,0x25,0x3d,0xbb,0x98,0xfb,0x61,0x7a,0xfa,0x97,0x9f,0x7f,
  580. 0x75,0xec,0xda,0xc8,0xf0,0xf0,0xc3,0xfb,0x7,0x4e,0x9e,0x38,0x7e,0x9b,0x9,0x98,
  581. 0x99,0x88,0xce,0x9c,0xfd,0xf4,0xdb,0x8b,0xdf,0x7,0x83,0xc1,0x93,0xc7,0x5f,0x1d,
  582. 0x7f,0xfc,0xb1,0xae,0xae,0xc0,0x16,0xd4,0xa8,0x59,0xd6,0x8f,0x97,0x7e,0xff,0xe8,
  583. 0xcc,0x27,0xcc,0x7c,0xf8,0xd9,0x67,0x5e,0x7f,0xed,0x4,0x22,0xa,0xd7,0x75,0xdf,
  584. 0x7a,0xe7,0xbd,0x89,0xa9,0xa3,0xbf,0xcd,0x5e,0x71,0x1c,0x97,0x3c,0x6f,0xfb,0x39,
  585. 0xf3,0xc7,0xdc,0xe4,0xd4,0xb1,0x77,0xdf,0x3f,0xe5,0xba,0xae,0x30,0xc,0xe3,0xf9,
  586. 0x23,0x53,0x57,0xe7,0xff,0x72,0x1c,0xb7,0x8d,0x99,0x5d,0x5a,0x9a,0x7c,0xf9,0x98,
  587. 0x61,0x18,0xca,0xb6,0x6d,0xd3,0x34,0x87,0x6,0x1f,0x74,0x3c,0x6f,0xb,0xb2,0xb4,
  588. 0x8a,0xfe,0x58,0xcc,0x58,0x33,0x6c,0xdb,0x56,0xf5,0x22,0x1b,0x66,0x35,0x18,0xf0,
  589. 0xbb,0x1e,0x6d,0xdf,0x16,0x0,0xa0,0x24,0x92,0xe7,0x9,0x21,0x98,0xb9,0x51,0xeb,
  590. 0xf9,0xcc,0xad,0xb5,0xaa,0x85,0x12,0x51,0xa2,0x40,0x24,0x21,0xfe,0x6b,0x32,0x0,
  591. 0x20,0x48,0x25,0xa5,0x92,0x24,0x4,0x4a,0x59,0x47,0xfe,0xd7,0x7,0x4c,0x4b,0x2b,
  592. 0xc5,0xde,0x70,0xb0,0xbb,0xab,0x4b,0x22,0x76,0x48,0x45,0x44,0xcc,0xec,0x31,0xd7,
  593. 0xf7,0xc4,0xcc,0xc0,0x4c,0x42,0xa0,0x10,0xc,0x50,0xbf,0xd6,0x43,0x2,0xd4,0x3f,
  594. 0x4a,0x22,0x62,0x22,0xd0,0x94,0xbc,0xcb,0xbf,0xeb,0x8c,0xe6,0xba,0x44,0x1e,0x39,
  595. 0x8e,0x63,0xd9,0x36,0x33,0x68,0x8,0x4a,0x29,0xa5,0x29,0x4,0x54,0xf2,0xce,0x1a,
  596. 0x66,0x26,0x21,0x98,0x99,0x89,0xc9,0x23,0x97,0x89,0x99,0x1,0x40,0xa2,0x54,0x12,
  597. 0x51,0xc0,0xdd,0x98,0x1b,0x38,0x59,0xb0,0xf0,0x3c,0xae,0x56,0x2b,0x95,0xaa,0x55,
  598. 0xb1,0x2c,0x44,0x54,0xa,0x25,0x48,0x29,0x25,0x4a,0x54,0xa,0x51,0xa0,0x94,0x52,
  599. 0x4a,0xd9,0x18,0x47,0x0,0x25,0x15,0x80,0x10,0x82,0xd7,0xa3,0x8b,0x56,0xbd,0x8,
  600. 0xa0,0x6d,0x1d,0xb0,0x75,0xb3,0x6b,0x53,0x1b,0xdc,0xf1,0x6e,0xba,0x8e,0x0,0xa0,
  601. 0x59,0xc1,0xcd,0x7,0xdc,0xa3,0xfe,0x6,0x4,0xdb,0x8d,0x8d,0x28,0xee,0xaf,0x44,
  602. 0xf7,0x97,0x80,0xb6,0xb,0xb0,0xb9,0xe7,0x9b,0x9,0x40,0x6c,0x6d,0x9b,0xff,0x73,
  603. 0xd,0xda,0x4b,0x40,0x3b,0x76,0xfa,0x6a,0x10,0xe4,0xf2,0xf9,0xf6,0xe2,0xce,0x5d,
  604. 0x9f,0x6f,0x10,0x0,0x40,0xf2,0xd1,0xe1,0x2f,0xbe,0xfc,0xca,0x30,0xcd,0xa6,0x49,
  605. 0x2c,0xb6,0xb8,0x2f,0xbd,0x5c,0x3a,0x75,0xfa,0xe3,0xa7,0xc6,0x9f,0x4,0x0,0xd4,
  606. 0x34,0xed,0x95,0x23,0x2f,0xe9,0xfa,0xea,0x7,0x1f,0x9e,0xfe,0x3b,0x93,0xd9,0x14,
  607. 0x40,0xeb,0xc2,0x79,0x9e,0x77,0x29,0x35,0xfb,0xc6,0x9b,0x6f,0x3b,0xb5,0xda,0x8b,
  608. 0x87,0xe,0x6a,0x9a,0x6,0xb6,0x6d,0x17,0xa,0x85,0x99,0x99,0xd4,0xd7,0xe7,0x2f,
  609. 0xcc,0xa5,0xd3,0xc3,0xc9,0x91,0xc3,0x87,0x9e,0x1b,0x1a,0xda,0x27,0x41,0x9a,0xd5,
  610. 0x6a,0xd5,0xaa,0x6d,0xf0,0xc3,0xc1,0xc6,0xad,0x52,0x28,0xa5,0x94,0x20,0x11,0x44,
  611. 0xd9,0x5c,0xfb,0xee,0xa7,0xe9,0xf3,0x17,0x2e,0xa6,0xd3,0xe9,0xf1,0x27,0xc6,0x26,
  612. 0xe,0x3e,0x9d,0x4c,0x26,0xa3,0xd1,0x28,0x30,0x73,0xad,0x56,0x2b,0x16,0x8b,0xf9,
  613. 0x7c,0x7e,0x26,0x35,0x7b,0xf9,0xea,0xb5,0x85,0x9b,0x37,0x2b,0xc6,0x5a,0x77,0x38,
  614. 0x1c,0x8f,0xc7,0x7b,0xa3,0x7d,0xbb,0xe3,0xb1,0x7,0xfa,0xe3,0x91,0x50,0xa4,0x43,
  615. 0x53,0x4,0xa4,0x10,0x5d,0x97,0x6c,0xc7,0x2e,0xea,0xa5,0xa5,0xc2,0x72,0x21,0xbf,
  616. 0x92,0xcd,0x2d,0x66,0x32,0x99,0x52,0xa9,0x14,0xed,0x8b,0x1e,0x18,0x18,0x18,0x7d,
  617. 0x64,0x28,0x99,0x1c,0x89,0xc5,0x62,0x91,0x48,0xc4,0xe7,0xf3,0x35,0xce,0xa6,0x8e,
  618. 0xe3,0x54,0x2a,0x95,0x52,0xa9,0xa4,0xeb,0xba,0x69,0x9a,0x97,0x53,0xa9,0xc5,0x7c,
  619. 0xc1,0xa8,0x56,0x72,0xf9,0x15,0x0,0x51,0x2e,0x1b,0xba,0xae,0xb,0x21,0x88,0xee,
  620. 0x34,0x90,0xbd,0x89,0xbd,0x7e,0xbf,0xaf,0x53,0xeb,0x8,0x77,0x77,0xf7,0x84,0x82,
  621. 0x89,0x3d,0x7b,0xe,0xec,0xdf,0x17,0x8,0x4,0x7a,0x7a,0x7a,0xc2,0xe1,0x70,0x20,
  622. 0x10,0xd0,0x34,0x4d,0x8,0xf1,0xf,0xcc,0x52,0x33,0x2e,0xaa,0x2d,0xe1,0xdb,0x0,
  623. 0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
  624. // E:/vs/occQt-master/occQt-master/Resources/lamp.png
  625. 0x0,0x0,0x6,0x49,
  626. 0x89,
  627. 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
  628. 0x0,0x0,0x30,0x0,0x0,0x0,0x30,0x8,0x6,0x0,0x0,0x0,0x57,0x2,0xf9,0x87,
  629. 0x0,0x0,0x0,0x4,0x73,0x42,0x49,0x54,0x8,0x8,0x8,0x8,0x7c,0x8,0x64,0x88,
  630. 0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0x2,0x98,0x0,0x0,0x2,0x98,
  631. 0x1,0x36,0xd3,0x47,0xdf,0x0,0x0,0x0,0x19,0x74,0x45,0x58,0x74,0x53,0x6f,0x66,
  632. 0x74,0x77,0x61,0x72,0x65,0x0,0x77,0x77,0x77,0x2e,0x69,0x6e,0x6b,0x73,0x63,0x61,
  633. 0x70,0x65,0x2e,0x6f,0x72,0x67,0x9b,0xee,0x3c,0x1a,0x0,0x0,0x5,0xc6,0x49,0x44,
  634. 0x41,0x54,0x68,0x81,0xed,0x98,0x79,0x6c,0xd3,0x65,0x18,0xc7,0x3f,0xcf,0xc6,0x3a,
  635. 0x36,0xca,0x36,0x37,0x58,0x4b,0xd1,0x31,0xb7,0xb2,0xad,0x2e,0xea,0x74,0x4c,0xbc,
  636. 0x4d,0x44,0x31,0xa2,0x46,0x45,0xf1,0x0,0x1,0xc5,0x44,0x83,0xa2,0x23,0x28,0xd1,
  637. 0x4,0x54,0x20,0x6a,0x54,0xe2,0x49,0x34,0x1,0x6f,0xd4,0x68,0x3c,0xfe,0x40,0x40,
  638. 0x4,0xf,0x4e,0xd9,0x5c,0x84,0x65,0x82,0x72,0xb,0xdd,0xd1,0xad,0x6b,0x69,0xbb,
  639. 0x15,0xb2,0xab,0xdd,0xe3,0x1f,0xe5,0x28,0x35,0x8c,0x1d,0x25,0x8d,0x49,0xbf,0xc9,
  640. 0xf3,0xc7,0xef,0xfd,0x3d,0xd7,0xf7,0x7d,0x9f,0xf7,0x7d,0x9f,0xdf,0x4f,0x54,0x95,
  641. 0xff,0x33,0x12,0x62,0x9d,0xc0,0x40,0x11,0x27,0x10,0x6b,0xc4,0x9,0xc4,0x1a,0x71,
  642. 0x2,0xb1,0x46,0x9c,0x40,0xac,0x11,0x27,0x10,0x6b,0x9c,0x75,0x2,0x22,0x72,0x56,
  643. 0x63,0xc8,0xd9,0x68,0xe6,0x44,0x24,0xa1,0xb0,0x80,0xd5,0x96,0x91,0xe4,0xa6,0xa6,
  644. 0x92,0xd2,0xd2,0x42,0x9b,0xcb,0xc5,0x5f,0xbb,0x77,0xeb,0xdd,0x51,0xf,0xa6,0xaa,
  645. 0x51,0x17,0x60,0xec,0xc2,0x5,0xf8,0xba,0x3a,0xd0,0xe3,0x32,0xbb,0x1c,0x27,0x50,
  646. 0x14,0xed,0x58,0x83,0xa2,0x3e,0x23,0x21,0xf8,0x7c,0x5e,0x2,0xc1,0xc0,0xc9,0x81,
  647. 0x96,0x16,0xba,0x0,0x6f,0xb4,0x3,0x9d,0x20,0x20,0x22,0x46,0x8b,0x85,0x99,0xa9,
  648. 0xa9,0x8c,0xf0,0xfb,0x39,0xe4,0x74,0xb2,0xf,0xd8,0xa0,0xaa,0x6d,0x7d,0x75,0x9a,
  649. 0x93,0xc3,0x1d,0xc3,0x32,0x49,0xfa,0xb3,0x6,0x12,0x13,0x21,0x18,0x4,0xed,0x26,
  650. 0xd5,0x64,0xa2,0xc,0x58,0x15,0x4d,0x2,0x27,0x96,0x22,0x23,0x83,0xf2,0x4b,0x4b,
  651. 0xf0,0xaf,0x5f,0x87,0xae,0x5e,0x81,0xbe,0xf7,0xe,0x9d,0x63,0x4a,0xd9,0x67,0x36,
  652. 0xf3,0x60,0x5f,0x96,0x34,0x37,0x97,0x67,0xe7,0xce,0xc1,0xe5,0x3f,0x8c,0x86,0x8b,
  653. 0xaf,0x19,0xbd,0x69,0x3c,0x75,0x69,0x69,0x94,0x45,0x94,0xdb,0x39,0xd6,0x3c,0xbe,
  654. 0x18,0x53,0xca,0xf6,0x82,0x2,0x7e,0x2,0x6c,0x7d,0x2a,0xd7,0xf0,0x87,0x94,0x14,
  655. 0x2e,0x2b,0x2c,0x60,0x4b,0xf9,0xe3,0xb8,0x9c,0xf5,0xa8,0xa7,0x9,0x5d,0xfc,0xa,
  656. 0xad,0x45,0x45,0x54,0x1a,0xc,0x3d,0xd7,0x2f,0x30,0xd8,0x9a,0xc7,0x37,0x2f,0x2d,
  657. 0xc2,0xe3,0x6b,0xe,0x25,0x1c,0x29,0xce,0x7a,0xf4,0xaa,0x2b,0x39,0x34,0x7c,0x38,
  658. 0x37,0x1f,0xb3,0x49,0xce,0xcf,0x63,0xe7,0x96,0x5f,0x9,0xfa,0x9a,0xd1,0xfd,0xbb,
  659. 0xd0,0xe9,0x53,0x71,0x58,0xf3,0xf8,0xc,0x30,0xf4,0x99,0xc0,0x71,0xc9,0x4a,0x67,
  660. 0xdc,0xf5,0xd7,0xd1,0xe0,0xb4,0x8b,0x7a,0x1c,0xa2,0xff,0xec,0x12,0x9d,0x72,0x2f,
  661. 0x8d,0xa3,0xad,0x7c,0x4,0x18,0x23,0xf5,0xd,0x6,0x6c,0x17,0xd8,0xd8,0xf9,0xcb,
  662. 0x1a,0x9,0x78,0x1c,0x21,0x9b,0xd3,0x89,0xd3,0x2e,0xba,0x60,0xbe,0x78,0x6d,0x85,
  663. 0xfc,0x66,0x31,0xb3,0x72,0xc5,0xb7,0xd2,0x15,0xa9,0xb3,0x6e,0x95,0x74,0xda,0xa,
  664. 0xa9,0x6,0x72,0xcf,0x44,0xe0,0xb4,0xc7,0x68,0x56,0x96,0xdc,0x58,0x56,0xca,0xa7,
  665. 0x9f,0x2e,0x93,0x11,0x89,0x89,0xa1,0xb1,0x1d,0x7f,0xd1,0xfd,0xea,0xeb,0x5a,0xd7,
  666. 0xe0,0xc0,0xee,0xf5,0xf2,0x65,0x43,0x23,0x3f,0x0,0xa9,0xa5,0x25,0xac,0x7f,0x61,
  667. 0x9e,0x98,0xd3,0x86,0x82,0x35,0x1f,0x92,0x93,0x4f,0x5f,0xb2,0xd,0xe,0x70,0x36,
  668. 0xc3,0xc1,0x43,0xd0,0xd9,0x45,0xf0,0xfe,0x49,0x24,0x3a,0x9b,0xe1,0xb1,0xd9,0x5a,
  669. 0x77,0xf8,0x30,0xde,0xc2,0xd1,0x64,0xdd,0x73,0x97,0x98,0x2f,0x29,0x21,0xf1,0x91,
  670. 0x59,0x5a,0xbb,0x6b,0xf,0x8f,0x38,0x9d,0xba,0xf6,0x74,0xfe,0x7a,0xbc,0x7,0xcc,
  671. 0x66,0xb9,0x6d,0x6c,0x29,0x4b,0x97,0x2d,0x91,0x11,0x22,0x27,0xc7,0x3b,0x3b,0x61,
  672. 0xd3,0x56,0x82,0x1b,0x36,0xab,0xbb,0xb9,0x99,0xe0,0xf8,0x71,0x62,0x2e,0xb6,0x91,
  673. 0x30,0x2c,0xb,0x8e,0x1c,0x85,0xf6,0xf6,0xd0,0xc6,0x3d,0xb9,0xcf,0x42,0xcf,0xb5,
  674. 0xf5,0x30,0xd4,0x8,0x99,0x99,0x70,0x41,0x21,0x24,0x25,0x85,0xde,0xbf,0xf6,0x16,
  675. 0xee,0xd7,0xdf,0xd1,0x5b,0x55,0xf5,0x77,0x11,0x31,0x8d,0x30,0x31,0xa3,0xc0,0xca,
  676. 0xa3,0x6f,0x2d,0x96,0x51,0xf3,0x16,0x68,0x43,0xd5,0x76,0xa6,0xba,0x5c,0xba,0xbe,
  677. 0xcf,0x4,0x0,0x4c,0xc3,0x65,0xca,0xad,0x13,0x78,0xe3,0xc5,0xf9,0x92,0xdd,0xa3,
  678. 0x22,0xe0,0x72,0x87,0x24,0xd2,0x65,0x77,0x37,0xc,0x1a,0x4,0xf9,0xe7,0x83,0xc1,
  679. 0xf0,0x5f,0xbb,0x67,0x5f,0x50,0xc7,0xf2,0x2f,0x19,0xa3,0xaa,0x8d,0x27,0x12,0x13,
  680. 0x19,0x59,0x60,0x65,0xd5,0x67,0xef,0x4b,0xc9,0xbc,0x85,0x5a,0xb7,0x6d,0x1b,0x93,
  681. 0x3d,0xad,0xba,0x25,0xd2,0xf6,0x8c,0xf7,0x80,0xd3,0xa5,0x5f,0xe4,0x9c,0x2b,0x45,
  682. 0xd6,0x5c,0x9e,0x98,0x7a,0x1f,0xe9,0x3d,0xe9,0x66,0x66,0x84,0xa4,0x27,0x84,0xdf,
  683. 0xd,0xc7,0xe1,0xf1,0x10,0x4,0x7c,0xe1,0x63,0xaa,0xda,0x20,0x22,0xe3,0x1f,0x7f,
  684. 0x4a,0x2b,0xbf,0xf9,0x44,0xf2,0x26,0x4e,0xd1,0x8f,0x45,0xe4,0x42,0x55,0x6d,0xf,
  685. 0xd7,0xeb,0x55,0x9f,0x52,0x5b,0xaf,0xcf,0x2d,0xfd,0x58,0xd7,0x6c,0xda,0x42,0x47,
  686. 0x77,0x10,0xa2,0x2d,0xed,0xed,0x28,0xd0,0x15,0x19,0x57,0x55,0x5d,0x2d,0x2d,0x54,
  687. 0x79,0x3c,0xf0,0xf4,0x13,0x92,0x63,0xb1,0x30,0x3b,0x52,0xa7,0xd7,0x8d,0x96,0xbd,
  688. 0x8e,0x7,0xe6,0xbf,0xac,0x55,0x7b,0xf6,0xa2,0xc1,0x40,0x68,0x26,0xa3,0x25,0x9d,
  689. 0xa1,0xd4,0x2f,0x4e,0x37,0xca,0x34,0x11,0xc9,0x9,0x8f,0xeb,0xf3,0xe1,0xde,0xf9,
  690. 0x37,0x5c,0x51,0x86,0x21,0x63,0x28,0xd3,0x22,0xf3,0xea,0x75,0x2b,0xa1,0xaa,0x41,
  691. 0x11,0x99,0x30,0xeb,0x19,0xad,0x5c,0xfe,0xae,0x14,0x67,0x65,0xf6,0xd6,0xf2,0xcc,
  692. 0x48,0x1d,0xcc,0xd0,0x87,0x26,0xb3,0xf6,0xb2,0x4b,0x25,0x73,0xd3,0x56,0x6d,0xbc,
  693. 0xd0,0x26,0xae,0x8e,0x4e,0xdc,0xc9,0xc9,0x98,0x1e,0x9b,0x21,0x39,0x57,0x96,0x41,
  694. 0x6b,0x2b,0x74,0x76,0xd0,0x18,0x69,0xdb,0xe7,0x6e,0x54,0x44,0x46,0x5e,0x54,0xcc,
  695. 0xe6,0xf,0xde,0x90,0xf3,0xd3,0xd3,0xa2,0x43,0xa0,0xf5,0x8,0xa4,0x19,0x4f,0x1d,
  696. 0xb,0x4,0x42,0x1b,0x1f,0xc0,0xe9,0x82,0x67,0x16,0xa9,0x7d,0xc7,0x6e,0x1e,0xf4,
  697. 0xfb,0x75,0xc3,0x29,0xf9,0xf4,0xa7,0x9d,0x16,0x91,0xfc,0x42,0x2b,0x6b,0x97,0x2e,
  698. 0x96,0xfc,0xec,0x61,0xfd,0x4d,0x3b,0x74,0x5a,0x7d,0xb5,0x82,0xc0,0x7d,0xb7,0x33,
  699. 0x28,0xfc,0x98,0x5e,0xf2,0x21,0x9e,0xaa,0x6a,0xf5,0x27,0x27,0xa3,0x1d,0xed,0x78,
  700. 0xbd,0x3e,0xe,0xfc,0x53,0x4b,0xb9,0xaa,0x3a,0x22,0x7d,0xf4,0xab,0x1b,0x55,0xd5,
  701. 0x3,0x22,0x72,0xed,0xc3,0xb3,0xf5,0xe7,0x37,0x17,0x8a,0x2d,0x6f,0x54,0xdf,0x7d,
  702. 0x4,0x83,0x30,0x77,0x91,0x36,0x55,0xd5,0xb0,0x35,0x29,0x41,0x6e,0x9a,0x38,0x81,
  703. 0x21,0xc7,0xdf,0x55,0xfc,0xa1,0xae,0xea,0x1d,0x5a,0x24,0x22,0x9,0xaa,0xda,0xdd,
  704. 0x93,0x9f,0x7e,0xb7,0xd3,0xaa,0xea,0x10,0x91,0xab,0x67,0xcd,0xd3,0x65,0x25,0xc5,
  705. 0x5c,0x31,0x73,0x9a,0x58,0x2c,0xa6,0xde,0xd9,0x56,0x56,0x13,0x78,0xfb,0x7d,0xad,
  706. 0x6d,0x74,0xf3,0xa4,0xd7,0xa7,0xab,0xf3,0x46,0xc9,0xf7,0x7b,0xf6,0x33,0xf6,0x96,
  707. 0x71,0x92,0xbd,0xb1,0x12,0xaf,0xdb,0xc3,0xba,0x63,0x31,0x7a,0x4c,0x1e,0xa2,0xf4,
  708. 0x45,0x26,0x22,0xa3,0x73,0x46,0x32,0x27,0x31,0x91,0xf1,0xcf,0x95,0x27,0xe4,0x19,
  709. 0x8f,0xcd,0x65,0xa8,0xd7,0x3a,0xf5,0x62,0xdb,0xb5,0x9f,0xee,0xf7,0x3e,0xe9,0xfe,
  710. 0xda,0xed,0x65,0x46,0x78,0xab,0x2e,0x22,0x17,0x9b,0xb3,0xb9,0xb3,0xa9,0x99,0x95,
  711. 0x40,0x75,0x6f,0x92,0x87,0x1,0xac,0x40,0x38,0x54,0x75,0x1f,0x30,0xd3,0x98,0x22,
  712. 0xf,0xad,0xf8,0x51,0x97,0xdc,0x7b,0x9b,0x9c,0x28,0x7,0x49,0x80,0xf0,0x54,0xe,
  713. 0xda,0xb5,0xcd,0xe7,0xe7,0xf3,0xc8,0xef,0xc,0x55,0xad,0x1,0x6a,0xfa,0x1a,0x3b,
  714. 0x2a,0x4,0x44,0xc4,0x64,0xc9,0x66,0xce,0xd,0xd7,0xc8,0xf4,0xb9,0x8f,0xca,0x90,
  715. 0xa4,0x30,0xaf,0xaa,0x10,0xbe,0x41,0x67,0x4c,0x92,0x21,0x15,0xdb,0xf5,0x4d,0x11,
  716. 0x69,0x3,0xf6,0xaa,0x6a,0xfd,0x80,0x62,0xf,0xb4,0x84,0x44,0x24,0x3d,0x3b,0x93,
  717. 0xfd,0xcf,0x97,0x4b,0x46,0x69,0xb1,0xf4,0x6a,0x42,0x5a,0x8f,0xc0,0xea,0x8d,0x7a,
  718. 0x64,0x63,0x85,0xb6,0xd5,0xec,0xe6,0x76,0x55,0xad,0xe8,0x6f,0xfc,0x1,0xaf,0x80,
  719. 0xaa,0xb6,0x9c,0x67,0x96,0xaf,0x96,0x7f,0xa7,0x37,0x1f,0x38,0xc8,0x70,0x9b,0x55,
  720. 0xd2,0x52,0x6,0x43,0xb2,0x1,0x6,0x1b,0x4e,0x36,0x6f,0x2e,0xf,0x34,0xb9,0x54,
  721. 0xeb,0x9b,0xf0,0xdb,0x1d,0x1c,0xb5,0x37,0xe8,0x51,0x9f,0x9f,0xa,0x60,0xef,0x40,
  722. 0xe2,0x47,0xed,0xb7,0x8a,0x88,0x24,0x1,0x97,0x9b,0xb2,0xb8,0x3a,0x29,0x89,0x74,
  723. 0x49,0xc0,0x28,0x60,0x14,0xc1,0x8,0x48,0x30,0xc0,0x3e,0x77,0xb,0x3b,0xdb,0xdb,
  724. 0x39,0x0,0xd8,0x81,0xa6,0xde,0x6e,0xd4,0x1e,0xe3,0x46,0x8b,0x40,0xac,0x10,0xff,
  725. 0xb5,0x18,0x6b,0xc4,0x9,0xc4,0x1a,0x71,0x2,0xb1,0x46,0x9c,0x40,0xac,0x11,0x27,
  726. 0x10,0x6b,0xfc,0xb,0x1a,0xb3,0x26,0xa8,0x7d,0xc4,0x45,0x4b,0x0,0x0,0x0,0x0,
  727. 0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
  728. // E:/vs/occQt-master/occQt-master/Resources/Rotate.png
  729. 0x0,0x0,0x4,0x87,
  730. 0x89,
  731. 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
  732. 0x0,0x0,0x20,0x0,0x0,0x0,0x20,0x8,0x2,0x0,0x0,0x0,0xfc,0x18,0xed,0xa3,
  733. 0x0,0x0,0x0,0x6,0x62,0x4b,0x47,0x44,0x0,0xff,0x0,0xff,0x0,0xff,0xa0,0xbd,
  734. 0xa7,0x93,0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xe,0xc4,0x0,0x0,
  735. 0xe,0xc4,0x1,0x95,0x2b,0xe,0x1b,0x0,0x0,0x4,0x27,0x49,0x44,0x41,0x54,0x48,
  736. 0x89,0xed,0x96,0x5d,0x4c,0x5b,0x75,0x18,0xc6,0x9f,0xd3,0xd3,0xf6,0xb4,0xb4,0xb4,
  737. 0xa0,0x5,0xda,0x52,0xd6,0x74,0x14,0x28,0x6d,0x83,0xc,0xba,0x4c,0xcc,0x32,0xc8,
  738. 0xaa,0x19,0x5b,0x70,0x4e,0x30,0x6c,0x53,0x34,0x3a,0x70,0xb2,0xb8,0x11,0x67,0xb2,
  739. 0x90,0xcd,0x8c,0xb0,0xb,0xbc,0x10,0x92,0x51,0x97,0x68,0xd0,0x39,0xe3,0x7,0xa2,
  740. 0xab,0x51,0x87,0x60,0xe8,0x85,0x51,0x51,0xc8,0x32,0x7,0x4e,0xd7,0x6,0x64,0x1d,
  741. 0x38,0x36,0xa0,0xc7,0xad,0x1d,0xb4,0xa5,0x1f,0xa7,0xe3,0x1c,0x2f,0xb8,0x30,0xa1,
  742. 0xe5,0xc3,0x64,0x5c,0x68,0x7c,0xae,0x4e,0xfe,0x79,0xde,0xe7,0x97,0x37,0xff,0xf3,
  743. 0xe4,0x1c,0x22,0x12,0x89,0x60,0x3d,0xc5,0x5b,0xd7,0xf4,0xff,0x4,0x80,0xcf,0x71,
  744. 0xdc,0xba,0x2,0xd6,0x7f,0x83,0xb5,0x98,0xc2,0xe1,0xf0,0xd4,0xd4,0x14,0x4d,0xd3,
  745. 0xa1,0x50,0x88,0x24,0x49,0x89,0x44,0xa2,0x52,0xa9,0x54,0x2a,0x95,0x40,0x20,0x0,
  746. 0xe0,0x72,0xb9,0x14,0xa,0x45,0x46,0x46,0x46,0xc2,0x59,0x22,0x1c,0xe,0xaf,0x10,
  747. 0xcd,0x30,0x4c,0x7f,0x7f,0xff,0xd9,0xce,0x4f,0x27,0xc4,0xe9,0x74,0x6a,0x56,0x58,
  748. 0x28,0x21,0xd8,0x5,0x69,0x34,0xa8,0xba,0x7b,0x23,0x8f,0x17,0x7e,0xfe,0x99,0xfd,
  749. 0x66,0xb3,0x79,0xcf,0x93,0x95,0xb5,0xb5,0x7,0x9e,0xad,0xa9,0xf9,0x67,0x0,0x8e,
  750. 0xe3,0x9c,0x4e,0xe7,0x2b,0xa7,0x3b,0x2e,0xca,0x73,0xd8,0x3d,0xf5,0x88,0xc5,0xe0,
  751. 0x9d,0x6,0xcb,0x2,0x1c,0x8,0x1e,0xa4,0x29,0x20,0x49,0x7e,0xf7,0x3b,0xc9,0x43,
  752. 0x8e,0xbb,0x15,0xf5,0x6,0xf7,0xc0,0x60,0x47,0xab,0x58,0x2c,0x4e,0x0,0x8,0x85,
  753. 0x42,0x9,0x1,0xc3,0xc3,0xc3,0xd,0x6f,0x9e,0x1b,0xde,0xd9,0x0,0x9d,0x9,0x3,
  754. 0x5f,0x63,0xdc,0x89,0xeb,0xbf,0xe2,0xf6,0x14,0x38,0x40,0xa1,0x42,0x5e,0x31,0x52,
  755. 0xd3,0x20,0x49,0x81,0x52,0xb,0x9d,0x99,0xe8,0xfb,0xe0,0xc3,0x4d,0xb2,0xaa,0xaa,
  756. 0xaa,0xb5,0x2,0x66,0x67,0x67,0xb7,0x1d,0x6a,0x74,0xef,0x3b,0x89,0xe4,0x54,0x74,
  757. 0xb5,0xa9,0xc6,0x6,0xb7,0x66,0x6b,0xca,0x1f,0x7b,0x54,0xa3,0xd1,0x10,0x4,0x41,
  758. 0xd3,0x74,0x4f,0x6f,0x6f,0xcf,0x90,0x73,0x7e,0xff,0x71,0x6c,0xdf,0xb,0x92,0x44,
  759. 0x2c,0xb6,0xf9,0xad,0xba,0x8f,0x5b,0x5e,0xcb,0xca,0xca,0x5a,0x12,0x95,0xf8,0x92,
  760. 0x3b,0x3b,0x3b,0xdd,0x96,0x27,0x90,0xa9,0x87,0xbd,0x5d,0xfd,0x4b,0x5f,0xfd,0xbe,
  761. 0x2a,0xad,0x56,0xcb,0xb2,0xec,0xcc,0xcc,0xc,0x41,0x10,0x0,0x48,0x21,0xc5,0xa6,
  762. 0x6f,0xc0,0xc2,0x2,0xbe,0x3b,0xf,0x92,0xf,0x2a,0xc9,0xc9,0x4b,0xe9,0x73,0x38,
  763. 0x5e,0xac,0xab,0x5b,0x1d,0x40,0xd3,0xf4,0x57,0x97,0xae,0xe2,0xf0,0x51,0x44,0xc3,
  764. 0xca,0xbe,0x77,0xf,0x3d,0xf7,0x74,0x49,0x49,0x49,0x66,0x66,0xa6,0x52,0xa9,0xa4,
  765. 0x28,0x8a,0xe3,0xb8,0x50,0x28,0xf4,0x99,0xdd,0xae,0xe7,0x45,0xa2,0x17,0xcf,0xdf,
  766. 0xe3,0x53,0x31,0xa1,0x98,0x14,0x52,0xb,0x5e,0x8f,0xdb,0x4d,0xc4,0xa7,0x25,0x0,
  767. 0x78,0x3c,0x1e,0x8f,0xd7,0x87,0xb,0x1d,0xf0,0xfb,0xa,0x74,0x59,0x56,0xab,0xd5,
  768. 0x64,0x32,0x2d,0xbe,0x91,0x0,0x8,0x82,0x90,0x48,0x24,0x8d,0xc7,0x8e,0x8d,0x8f,
  769. 0x8f,0x47,0xa3,0x51,0x86,0x61,0xa2,0xd1,0xa8,0x4c,0x26,0x33,0x18,0xc,0x6a,0xb5,
  770. 0x3a,0x1,0x20,0xbe,0xc9,0x49,0x49,0x49,0x8f,0x17,0xe8,0x2f,0x5f,0xea,0x8a,0x44,
  771. 0x99,0x2d,0xe5,0x3b,0x4c,0x26,0x13,0x9f,0xbf,0xd4,0x66,0xb1,0x58,0x2c,0x16,0xcb,
  772. 0xe2,0xb3,0xcd,0x66,0x3b,0x7c,0xe6,0x7d,0x99,0x36,0x27,0xf9,0xce,0x8d,0x8f,0xda,
  773. 0x5a,0x8a,0x8a,0x8a,0x56,0xd9,0x80,0x65,0xd9,0xea,0xea,0xea,0xb2,0xb2,0x32,0x91,
  774. 0x48,0x94,0x9f,0x9f,0xcf,0xe7,0xaf,0x52,0xc6,0xb9,0x40,0x20,0x56,0xd9,0xe0,0xdd,
  775. 0xba,0xdb,0x7b,0xe6,0xd5,0xf8,0xba,0x25,0x18,0xb6,0xdb,0xed,0x6f,0x7c,0x33,0x70,
  776. 0x4f,0xa5,0xe3,0xc5,0x22,0x49,0x24,0x21,0xa5,0x84,0x32,0x11,0x25,0xd,0xdc,0x2e,
  777. 0xd9,0xa8,0x6e,0x6a,0x6a,0x92,0x4a,0xa5,0x4b,0xfc,0x13,0x73,0x61,0x98,0x36,0x40,
  778. 0x20,0xa4,0x58,0x46,0x2e,0x97,0xaf,0xe,0x28,0x2d,0x2d,0x7d,0xcf,0x9f,0x4c,0xef,
  779. 0x6d,0x64,0x39,0x2e,0x18,0x63,0x82,0x31,0xc6,0x33,0x75,0x1d,0xed,0xd,0xd5,0xa5,
  780. 0x5b,0xe2,0xab,0x34,0x39,0x39,0xf9,0xfd,0xa4,0x17,0xe5,0x39,0xf0,0x7a,0xf2,0x92,
  781. 0x5,0xf1,0x78,0x1e,0x17,0x27,0xad,0x56,0xab,0xf5,0xdf,0x4,0x8,0x10,0x3c,0x8,
  782. 0x45,0x8,0x5,0x88,0xb6,0x97,0x76,0x69,0x53,0x6a,0x6b,0x6b,0x79,0xbc,0xbf,0xfd,
  783. 0xc1,0x60,0xf0,0xcb,0xb,0xdd,0x95,0xc7,0x5b,0xfe,0x3c,0xf0,0x3a,0x52,0xd3,0xc5,
  784. 0x97,0x1d,0x75,0xdb,0x8a,0xe3,0xd3,0x12,0x6c,0x90,0x96,0x96,0xa6,0x8c,0xf8,0x10,
  785. 0x63,0x20,0x10,0x2,0x80,0x42,0x8d,0x23,0xa7,0x87,0x7e,0xfb,0xf6,0x60,0xc3,0xd1,
  786. 0x62,0x93,0x21,0x37,0x37,0x97,0x20,0x88,0xb1,0xb1,0xb1,0x9f,0x9d,0x23,0x3f,0x3e,
  787. 0x60,0xf4,0x3e,0x75,0x2,0x69,0x1a,0xf8,0xbd,0x9b,0xdc,0x3f,0xec,0x78,0xe1,0x64,
  788. 0x7c,0x1a,0x11,0xc,0x6,0xe3,0x4f,0x5b,0x5b,0x5b,0x4f,0xa9,0x77,0x62,0xa3,0x19,
  789. 0xe7,0x4e,0x61,0x7b,0x35,0xc,0x16,0x0,0x8,0xce,0x61,0xdc,0x89,0x5b,0xd7,0x0,
  790. 0xe,0x99,0x7a,0x64,0x17,0x40,0x2a,0x7,0x80,0x6b,0x57,0x34,0xdd,0xed,0x5f,0x9c,
  791. 0x78,0xd9,0x68,0x34,0xae,0x15,0xe0,0x70,0x38,0xaa,0xfa,0x6f,0x21,0x32,0x9f,0xde,
  792. 0xf3,0xb6,0x5f,0xae,0x8c,0x54,0x1e,0xc1,0xc3,0xbb,0x20,0x7f,0x70,0xa9,0x6f,0xde,
  793. 0x8f,0xc1,0x5e,0xdd,0x4f,0x9f,0xb4,0x1c,0xac,0xd9,0x5d,0x51,0x11,0x9f,0xb3,0x2c,
  794. 0xc0,0xe7,0xf3,0xe9,0x1e,0x2a,0xde,0x6c,0x36,0x7e,0xde,0xd5,0x39,0x32,0x32,0xd2,
  795. 0xda,0x6e,0x73,0xdd,0x9c,0x99,0x56,0x19,0x39,0x4d,0xe,0x94,0x5a,0x70,0x1c,0xee,
  796. 0x4c,0x93,0x7f,0xb8,0xb2,0x67,0x27,0x1e,0x31,0xe6,0x36,0x37,0x37,0x2b,0x14,0x8a,
  797. 0x84,0xe9,0x0,0x88,0x40,0x20,0x10,0x7f,0xca,0x30,0x8c,0xd5,0x6a,0xb5,0xd9,0x6c,
  798. 0x8b,0xad,0xf1,0xfb,0xfd,0xa3,0xa3,0xa3,0x57,0xae,0xba,0x7e,0x77,0xbb,0x69,0xcf,
  799. 0xc,0xc9,0x23,0xd5,0xe9,0xa,0xb3,0xd9,0x5c,0x58,0x58,0xa8,0xd7,0xeb,0x29,0x8a,
  800. 0x5a,0x2e,0x7d,0x59,0x0,0x80,0x48,0x24,0x22,0x12,0x89,0x56,0x98,0x5c,0xa3,0x96,
  801. 0xfd,0x26,0xdf,0x97,0xf4,0x95,0x0,0xf7,0x4b,0xff,0xfe,0xdf,0x96,0xff,0x1,0xab,
  802. 0xea,0x2f,0x5d,0xdc,0xcf,0x98,0x44,0xb9,0xfa,0xaf,0x0,0x0,0x0,0x0,0x49,0x45,
  803. 0x4e,0x44,0xae,0x42,0x60,0x82,
  804. // E:/vs/occQt-master/occQt-master/Resources/FitAll.png
  805. 0x0,0x0,0x4,0xfa,
  806. 0x89,
  807. 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
  808. 0x0,0x0,0x20,0x0,0x0,0x0,0x20,0x8,0x2,0x0,0x0,0x0,0xfc,0x18,0xed,0xa3,
  809. 0x0,0x0,0x0,0x6,0x62,0x4b,0x47,0x44,0x0,0xff,0x0,0xff,0x0,0xff,0xa0,0xbd,
  810. 0xa7,0x93,0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xe,0xc4,0x0,0x0,
  811. 0xe,0xc4,0x1,0x95,0x2b,0xe,0x1b,0x0,0x0,0x4,0x9a,0x49,0x44,0x41,0x54,0x48,
  812. 0x89,0xdd,0x56,0x5d,0x4c,0x53,0x67,0x18,0x7e,0xbf,0xef,0xfc,0xb6,0x72,0x4a,0xb,
  813. 0x47,0xb,0x69,0x65,0x21,0x22,0x63,0x94,0x5,0x34,0x6d,0xa6,0x6,0x3,0x17,0xb0,
  814. 0x64,0xd3,0x84,0x65,0xbb,0x11,0x8,0x60,0x34,0x5b,0xdc,0xb2,0x64,0xf3,0xc2,0xad,
  815. 0x54,0x97,0x90,0x6d,0x21,0x43,0x48,0x66,0x64,0x1a,0x97,0xcc,0x11,0xb3,0x6c,0x17,
  816. 0xba,0x98,0x98,0x89,0xe2,0xa8,0x20,0x89,0x44,0xb8,0x68,0x31,0x72,0xb1,0xf0,0x5b,
  817. 0x32,0xf1,0x67,0x5,0x2c,0xfd,0x39,0xe5,0xd0,0xf6,0x9c,0x6f,0x17,0xdd,0xb0,0x1c,
  818. 0xa1,0x2c,0x4b,0xb8,0xd8,0xde,0x9c,0x9b,0xf7,0x7c,0xef,0xfb,0x3c,0xef,0xef,0x77,
  819. 0xe,0x92,0x65,0x19,0x36,0x53,0xf0,0xa6,0xa2,0xff,0x2f,0x8,0x68,0x42,0x48,0xaa,
  820. 0x9e,0x48,0x24,0x58,0x96,0x25,0x84,0x68,0xde,0x6f,0x28,0x8,0x21,0x0,0x8,0x85,
  821. 0x42,0x6,0x83,0x21,0xd5,0x97,0x4e,0x35,0x8a,0x44,0x22,0x1d,0x1d,0x1d,0x6,0x83,
  822. 0xa1,0xb2,0xb2,0xd2,0x6e,0xb7,0x3,0x80,0xaa,0xaa,0x1b,0xe2,0x52,0x14,0x15,0xe,
  823. 0x87,0x7b,0x7b,0x7b,0x7,0x6,0x6,0x4,0x41,0x38,0x75,0xea,0x14,0x4d,0x3f,0x87,
  824. 0x5d,0x45,0x20,0x8,0x42,0x34,0x1a,0x6d,0x6b,0x6b,0x3,0x80,0xba,0xfa,0xfa,0xa3,
  825. 0x27,0xbf,0x1e,0xe,0x66,0x6d,0x90,0x9,0x82,0x32,0xfe,0xe9,0xf9,0xcf,0x8e,0x75,
  826. 0x5f,0xbf,0xe,0x0,0xad,0xad,0xad,0xc,0xc3,0xac,0x9b,0x1,0x0,0x54,0x54,0x54,
  827. 0x74,0x76,0x76,0x2,0x40,0x41,0xc1,0x4e,0x21,0xd3,0xb8,0x13,0x36,0xc8,0x0,0x0,
  828. 0x4c,0x7a,0xa3,0xd5,0x6a,0x5d,0x71,0xd7,0x9c,0xae,0x22,0x20,0x84,0x54,0x55,0x55,
  829. 0x1d,0x38,0x70,0x70,0x7b,0xde,0xf6,0x73,0xdf,0x74,0x6e,0xb7,0x5a,0x1a,0x1b,0x1b,
  830. 0xd3,0x57,0x9,0x63,0xdc,0xde,0x7e,0xe6,0xe7,0x2b,0x57,0x5a,0x3e,0xff,0x62,0x72,
  831. 0x62,0xc2,0x6e,0xb7,0x6b,0xec,0xb5,0x4d,0xd6,0xe9,0x74,0x1f,0x7e,0x79,0xc1,0x64,
  832. 0x32,0x5a,0x2d,0x16,0xb3,0xd9,0xac,0xaa,0x6a,0xd2,0x0,0x21,0x84,0x31,0x4e,0x6,
  833. 0x91,0x3a,0x2,0xaa,0xaa,0x96,0x96,0x96,0x9e,0x3e,0x7d,0xfa,0xe5,0xea,0x86,0xfd,
  834. 0x52,0x30,0x69,0x90,0xa,0x88,0xa2,0xd1,0xe8,0x2a,0x1d,0xa1,0x76,0x2f,0x5d,0x92,
  835. 0xad,0x1e,0xc8,0x87,0x24,0x3a,0x42,0x68,0x6e,0x6e,0xce,0xe3,0xf1,0xc,0xe,0xe,
  836. 0x2e,0x2e,0x2e,0x8a,0xa2,0xb8,0x6b,0xd7,0xae,0xf2,0xf2,0xf2,0xac,0xac,0xac,0x24,
  837. 0x56,0x92,0xf8,0xca,0x4,0xfe,0x63,0x9,0x7d,0x50,0x12,0xd7,0xa6,0xa8,0xd1,0x9,
  838. 0x21,0x0,0x8,0x0,0x14,0x45,0x21,0x84,0x60,0x8c,0x1f,0x3e,0x7c,0xe8,0x74,0x3a,
  839. 0xcf,0x9e,0xff,0x56,0xe2,0xb7,0x66,0x17,0xef,0x7b,0x46,0x32,0x2e,0x5c,0xbc,0xd4,
  840. 0xd2,0xd2,0x32,0x36,0x36,0x96,0x1c,0x4d,0x55,0x55,0xff,0x2a,0xcb,0x5a,0xe3,0xa0,
  841. 0x6d,0xb2,0x46,0xa6,0xa6,0xa6,0x5c,0x27,0x4f,0x5a,0x5e,0xdd,0x77,0xf0,0xe3,0x7a,
  842. 0x0,0x94,0x88,0xc7,0x69,0x86,0xad,0x3a,0x74,0xac,0xe7,0x87,0xb3,0x27,0x3e,0xf9,
  843. 0xb4,0xeb,0xfb,0x8b,0xd9,0xd9,0xd9,0xe9,0x37,0x26,0xdd,0x26,0x63,0x8c,0xbb,0xbb,
  844. 0xbb,0x15,0x66,0xcb,0xfe,0x9a,0x86,0xe5,0xa5,0x25,0x29,0x14,0x5c,0x5e,0x8a,0x4a,
  845. 0xa1,0xc5,0x48,0x30,0x50,0xf9,0xce,0x91,0x2d,0x5b,0xad,0x97,0x2f,0x5f,0x4e,0x1f,
  846. 0x1f,0x0,0x60,0xb2,0x96,0x0,0x40,0xb2,0xfa,0x37,0x7b,0x6e,0xed,0x7d,0xf3,0x50,
  847. 0x6c,0x49,0x4e,0xc4,0x9f,0x17,0x57,0x49,0x24,0x0,0xd0,0x6b,0xaf,0xbf,0x3d,0x3c,
  848. 0x3c,0xec,0xf7,0xfb,0x35,0x5e,0x1a,0x49,0x97,0x81,0xa2,0x28,0xd2,0x92,0x9c,0x61,
  849. 0xcc,0x8a,0xc7,0x96,0x5f,0x38,0x4a,0x98,0xcc,0x16,0x49,0x92,0x22,0x91,0xc8,0x6,
  850. 0x19,0xa4,0x39,0xa3,0x28,0x8a,0xa5,0x69,0x39,0x1a,0xa1,0x68,0x6d,0xab,0x30,0xa6,
  851. 0xa4,0xd0,0x33,0x8e,0xe3,0x38,0x8e,0xfb,0xf7,0x4,0x84,0x10,0x5b,0x71,0xd1,0xc4,
  852. 0xfd,0x21,0xbd,0x60,0x48,0x8e,0xd6,0x8a,0xb0,0x3c,0x3f,0xee,0xbd,0x67,0xb5,0x5a,
  853. 0x45,0x51,0xdc,0x80,0x60,0xbd,0x6,0x10,0x42,0x14,0x45,0x69,0x6a,0x6a,0x9a,0xf6,
  854. 0xc,0x8c,0x7b,0x7,0xb7,0x8,0x2,0xc3,0x71,0x34,0xc3,0xb0,0x1c,0x9f,0x91,0x69,
  855. 0x1c,0xbd,0x7b,0x6b,0x64,0xe0,0x46,0x43,0x43,0x3,0xcf,0xf3,0x69,0x1a,0x40,0x8,
  856. 0xa1,0x5c,0x2e,0x97,0x86,0xf3,0xde,0x53,0x7a,0x9b,0x9e,0x14,0x64,0xaa,0x0,0x20,
  857. 0x8a,0x62,0x66,0x66,0xe6,0x8f,0xdf,0x9d,0xb,0x5,0xe6,0x8c,0xdb,0x72,0x59,0x8e,
  858. 0xb,0xcc,0x3d,0xf6,0xdc,0xbe,0x76,0xf7,0x97,0x9f,0x64,0x29,0xc,0x0,0xf3,0xf3,
  859. 0xf3,0x36,0x9b,0x4d,0x55,0xd5,0xdf,0x2,0x94,0x14,0x47,0x8e,0x6d,0x8a,0x6,0x6d,
  860. 0xed,0x3d,0x20,0x4,0x30,0xc6,0x84,0x10,0x8a,0xa2,0x6a,0x6a,0x6a,0x76,0xec,0xd8,
  861. 0x71,0xf5,0xea,0xd5,0x3b,0x97,0xda,0x65,0x59,0xd6,0xeb,0xf5,0x79,0x79,0x79,0xed,
  862. 0x5f,0xb5,0x76,0x75,0x75,0xdd,0xb8,0xd9,0x33,0x78,0x6f,0xe8,0xc9,0x93,0xa7,0x8d,
  863. 0x8d,0xd,0x8,0x31,0x6b,0x42,0x69,0x9,0x68,0x9a,0xa6,0x31,0xf0,0xc,0x3d,0x3a,
  864. 0xea,0x29,0x2a,0x2a,0xa2,0x28,0x4a,0x51,0x14,0x9b,0xcd,0x56,0x58,0x58,0xe8,0xf7,
  865. 0xfb,0x65,0x59,0xd6,0xe9,0x74,0xa2,0x28,0x32,0xc,0xd3,0xd7,0xd7,0xf7,0xe0,0xc1,
  866. 0x3,0x84,0x70,0x5f,0xff,0x1d,0x42,0xc8,0x2b,0x6f,0x7d,0x14,0x90,0xd7,0xb8,0x16,
  867. 0x57,0x95,0x8,0x21,0xb4,0xb0,0xb0,0xa0,0x3e,0xba,0x3f,0xed,0xe9,0x7f,0xf7,0xc8,
  868. 0x61,0xbb,0xdd,0x9e,0x9f,0x9f,0x9f,0x2c,0x2e,0xc6,0x58,0x10,0x4,0x93,0xc9,0x94,
  869. 0x91,0x91,0x81,0x31,0x46,0x8,0x39,0x1c,0x8e,0xd1,0xd1,0xd1,0xe9,0xa9,0x29,0x86,
  870. 0xe5,0xa6,0x7d,0x3e,0xfd,0xb2,0xff,0x8d,0x3d,0xc5,0x46,0x9d,0x36,0x62,0xaa,0xb9,
  871. 0xb9,0x39,0x95,0x60,0x68,0x68,0xe8,0xfd,0xf7,0x8e,0xf6,0xbb,0x6f,0xd5,0xd6,0xd6,
  872. 0xd6,0xd5,0xd5,0xd1,0x2f,0xc,0xe8,0xdf,0x35,0x24,0x34,0x4d,0x97,0x96,0x96,0x4e,
  873. 0x4e,0x4e,0xce,0xf8,0xa6,0x39,0x5e,0xf7,0xe4,0xd1,0xe3,0xb8,0x14,0xd8,0xbb,0x67,
  874. 0x8f,0xa2,0xac,0x6a,0x83,0xd6,0xdf,0xeb,0xf5,0xce,0xce,0xce,0x2,0x80,0xc5,0x62,
  875. 0x21,0x14,0x7b,0xfb,0x11,0x13,0x89,0xad,0x49,0x1,0x0,0x80,0xf1,0x4b,0xf5,0xce,
  876. 0x33,0xa8,0xed,0xb8,0xd7,0xeb,0xcd,0x12,0xb7,0xfe,0xda,0xeb,0xc6,0x18,0x1f,0x6e,
  877. 0x6a,0x62,0x59,0xf6,0xb9,0x8d,0xc6,0x67,0x7c,0x7c,0x9c,0xe7,0xf9,0xea,0xea,0xea,
  878. 0x92,0x92,0x12,0x84,0xf0,0x63,0x9,0xcf,0x46,0xd6,0x7d,0x7e,0xf,0x21,0x5f,0x54,
  879. 0x77,0xfc,0x44,0xf3,0xee,0xdd,0xbb,0x3,0xb,0xf3,0xf1,0x58,0xcc,0xed,0x76,0xcf,
  880. 0xcc,0xcc,0xa4,0x2,0xa2,0x70,0x38,0xbc,0xa2,0x24,0x12,0x9,0xb7,0xdb,0xed,0x70,
  881. 0x38,0xcc,0x66,0x73,0xf2,0xba,0x5e,0x37,0xf8,0x54,0x8,0x84,0x62,0xb1,0x98,0xcb,
  882. 0xe5,0x1a,0x19,0x19,0x29,0x2b,0x2b,0x73,0x3a,0x9d,0xa9,0xdb,0x87,0x42,0xa1,0xd0,
  883. 0x8a,0x42,0x51,0x14,0x42,0xe8,0x9f,0x43,0xa7,0x72,0x4,0x83,0x41,0x9f,0xcf,0x97,
  884. 0x9b,0x9b,0x9b,0x93,0x93,0x93,0xfa,0xd5,0x5c,0x45,0xb0,0x19,0xf2,0xdf,0xff,0x75,
  885. 0xdc,0x74,0x82,0x3f,0x1,0x5,0x76,0x74,0xd9,0x86,0x93,0x9c,0xce,0x0,0x0,0x0,
  886. 0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
  887. // E:/vs/occQt-master/occQt-master/Resources/revolve.png
  888. 0x0,0x0,0x6,0x30,
  889. 0x89,
  890. 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
  891. 0x0,0x0,0x20,0x0,0x0,0x0,0x20,0x8,0x2,0x0,0x0,0x0,0xfc,0x18,0xed,0xa3,
  892. 0x0,0x0,0x0,0x6,0x62,0x4b,0x47,0x44,0x0,0xff,0x0,0xff,0x0,0xff,0xa0,0xbd,
  893. 0xa7,0x93,0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xe,0xc4,0x0,0x0,
  894. 0xe,0xc4,0x1,0x95,0x2b,0xe,0x1b,0x0,0x0,0x5,0xd0,0x49,0x44,0x41,0x54,0x48,
  895. 0x89,0xb5,0x56,0x69,0x6c,0x54,0x55,0x14,0x3e,0xe7,0x2e,0x33,0xf3,0x66,0xa6,0xd3,
  896. 0x69,0xa7,0x9d,0x76,0xda,0x29,0xa8,0x80,0xd3,0x5,0x5a,0x23,0x88,0x6,0x51,0x31,
  897. 0xc6,0x10,0x9a,0x10,0x14,0x95,0x26,0x46,0x5c,0xe2,0xbe,0xc5,0x5,0x2,0xd1,0x1f,
  898. 0xa2,0xc6,0xa8,0x89,0x46,0x5,0x89,0x4b,0x8c,0x1b,0x28,0x28,0x71,0x27,0x6,0xa,
  899. 0xa2,0x4,0x2c,0x2e,0x40,0xb1,0x95,0xd2,0x45,0xb0,0x32,0x65,0xda,0x82,0xa5,0xed,
  900. 0xcc,0x94,0x79,0xef,0xcd,0xbb,0xef,0x5e,0x7f,0x3c,0x5,0x5b,0xc0,0x5a,0x97,0x93,
  901. 0xfb,0xe3,0x26,0xf7,0xdd,0xef,0x7b,0xe7,0xdc,0xf3,0xdd,0xef,0xa2,0x52,0xa,0xfe,
  902. 0xcf,0x20,0xff,0x2b,0x3a,0x0,0xb0,0x51,0xbf,0x48,0xa7,0x87,0xda,0xda,0xda,0xe,
  903. 0x1e,0x3c,0x18,0x8f,0xc7,0x75,0x5d,0xf7,0xf9,0x7c,0x1e,0xcd,0x83,0x88,0x81,0x40,
  904. 0xee,0xb8,0xb2,0x68,0x2c,0x16,0xb,0x85,0x42,0x88,0x78,0xba,0xed,0x78,0xbc,0x44,
  905. 0x89,0x44,0xa2,0xb4,0xb4,0xd4,0x99,0x67,0x32,0xfa,0xc6,0x8d,0x1b,0xbe,0xfd,0xee,
  906. 0xfb,0x5d,0x8d,0x7b,0xc,0xdd,0x88,0x96,0x95,0x46,0x8a,0x8a,0x4a,0x22,0x11,0x21,
  907. 0x84,0xcf,0xe7,0x1b,0x18,0x1c,0x4,0xa5,0x86,0x86,0x8e,0x75,0xf7,0xf4,0xb6,0xb6,
  908. 0xb7,0xfb,0x7c,0xde,0x92,0x48,0xe4,0xe2,0x99,0x17,0x5e,0x75,0xd5,0xfc,0x92,0x92,
  909. 0x92,0xd3,0x12,0xd4,0xce,0xbb,0xfa,0x91,0x87,0x16,0x47,0x22,0x91,0xd7,0x5f,0x7f,
  910. 0x63,0x6f,0xcb,0xbe,0x68,0x34,0x5a,0x53,0x3d,0x65,0xe6,0xcc,0xb,0x27,0x4c,0x98,
  911. 0xc8,0x18,0xfd,0x8b,0x14,0xbb,0xbb,0xbb,0x1b,0x1b,0xf7,0x7c,0xb1,0x65,0xcb,0xae,
  912. 0xdd,0x7b,0x34,0xcd,0x73,0xcb,0xcd,0x37,0xd5,0x2d,0x58,0x30,0x92,0xa0,0xbe,0x7e,
  913. 0xd3,0x63,0x4f,0x3e,0xcb,0x8,0x29,0x8b,0x16,0x9d,0x53,0x53,0x7d,0xc3,0xf5,0xb,
  914. 0xc3,0xe1,0xf0,0xa8,0xd5,0x1b,0x11,0xb6,0x6d,0x37,0x34,0x34,0xbc,0xb3,0x66,0x6d,
  915. 0x77,0x77,0xcf,0x5d,0x77,0xdc,0x5e,0x5b,0x3b,0xe7,0x4,0xc1,0x1d,0x77,0xdd,0xdb,
  916. 0xdc,0xd2,0xe,0x0,0xd1,0x92,0xa2,0x75,0x6b,0x57,0x8f,0x15,0x7a,0x44,0xec,0xdb,
  917. 0xb7,0xef,0xb9,0xe7,0x5f,0x28,0x2f,0x2f,0x5f,0xbc,0xe8,0x41,0x6,0x0,0x89,0x44,
  918. 0xc2,0x41,0xf7,0xb8,0x5d,0x6e,0xb7,0xbb,0xb5,0xad,0xad,0xa2,0xbc,0xfc,0xdf,0x10,
  919. 0x54,0x56,0x56,0xae,0x7c,0xf1,0x45,0x67,0x8e,0x4a,0xa9,0xd6,0xb6,0xb6,0xf8,0xc1,
  920. 0xf8,0xe4,0xc9,0x55,0xc7,0xf,0xf9,0x3f,0xc,0x3c,0x9d,0xd0,0xd2,0xe9,0xa1,0x1f,
  921. 0x5a,0xda,0xbf,0x6e,0xde,0x1f,0xef,0x1b,0xfa,0xa9,0xdf,0x4a,0x9a,0x38,0x64,0x33,
  922. 0x53,0xfe,0xbe,0x4a,0x0,0xbc,0xd4,0xce,0xe5,0x72,0x62,0x3e,0x9d,0x1c,0xd,0x4e,
  923. 0x8a,0x86,0x67,0x4c,0x9d,0x52,0x10,0xca,0x1f,0x9d,0xc0,0xb2,0xac,0x8f,0x36,0x6e,
  924. 0x5d,0xd3,0xb0,0xbf,0x23,0xc9,0xf2,0x82,0xfe,0x69,0x53,0x2b,0xc2,0x41,0x6f,0x38,
  925. 0xcf,0xcb,0x19,0x61,0x74,0x58,0xb3,0xb,0x5b,0x9,0x5b,0xe,0xa4,0x8d,0xbe,0xa4,
  926. 0xde,0xda,0xfa,0x4b,0x4f,0xcf,0x91,0x1c,0x62,0xcd,0xa9,0xcc,0xaf,0x9b,0x3d,0x63,
  927. 0x5c,0xb4,0xf4,0xb8,0x32,0x4e,0x10,0x48,0x29,0x57,0xac,0xfa,0x78,0xd9,0x57,0x3,
  928. 0x13,0x4b,0x83,0xb,0x66,0xd7,0x94,0x85,0xfd,0xe4,0xf4,0xf2,0x39,0x39,0x14,0x40,
  929. 0xea,0x58,0x76,0x67,0x4b,0xd7,0xce,0xc6,0xfd,0x31,0x9f,0x7e,0xeb,0xec,0x9a,0x99,
  930. 0xe7,0x9d,0xa3,0x69,0x1a,0x2a,0xa5,0x94,0x52,0xdf,0xed,0x6e,0x5a,0xf8,0xca,0x8e,
  931. 0x48,0x59,0xc9,0x4d,0x73,0xa7,0x5,0xbc,0xae,0xbf,0x8f,0x7b,0xa,0x26,0x5,0x6d,
  932. 0x5d,0xfd,0xeb,0xea,0xf7,0x4c,0x72,0xd,0xbe,0xba,0xb8,0xe,0x95,0x52,0x96,0x25,
  933. 0x6e,0x7d,0xf2,0xcd,0xa2,0xea,0xf3,0x2f,0xa8,0x88,0x8c,0xe1,0x9f,0x47,0xe3,0xf9,
  934. 0xe0,0xd3,0x2f,0x3a,0x76,0x6c,0x61,0x0,0x60,0x59,0xd6,0xf6,0x6e,0x7a,0x60,0x59,
  935. 0xf5,0xf6,0xae,0x64,0xd2,0x14,0xff,0x9,0xfe,0xde,0x6f,0xb6,0xa7,0x76,0xae,0x8f,
  936. 0x85,0x2,0x4,0x0,0x84,0x10,0xb6,0x92,0x87,0x33,0x66,0x79,0x80,0x16,0x79,0x39,
  937. 0x3,0xf8,0x37,0x43,0x99,0x66,0xc3,0x87,0x6b,0x53,0x1d,0xcd,0xef,0xbe,0xf5,0x1a,
  938. 0x63,0x94,0x1,0x80,0x73,0xce,0x96,0x2d,0xdd,0x9c,0x57,0xe4,0x63,0x2b,0xe2,0x3f,
  939. 0xce,0x23,0x6b,0x18,0x5f,0xbe,0xf7,0x46,0x81,0x4f,0xbb,0x67,0xf1,0x3,0xba,0x9e,
  940. 0xb1,0x85,0x3d,0xec,0xba,0x36,0x6d,0x29,0x81,0x54,0x85,0x3c,0x3f,0xd,0x98,0x3,
  941. 0xba,0x5,0x0,0x88,0xe0,0xe5,0x34,0xe8,0x61,0x2e,0x65,0xbb,0x8,0x0,0x28,0x2,
  942. 0x44,0x81,0x14,0x52,0x9,0x85,0x59,0x64,0x3,0x86,0xd0,0x2d,0xdb,0xd9,0x9e,0xec,
  943. 0x3f,0xfa,0xc1,0x2b,0x2b,0x2e,0x9a,0x7e,0xee,0x6d,0xb7,0xdc,0x18,0x8f,0xc7,0x19,
  944. 0x63,0x48,0x70,0xa4,0x1f,0x58,0xb6,0x3c,0x6,0x30,0x31,0x5f,0x3b,0x30,0x88,0x39,
  945. 0x9c,0x68,0xca,0x96,0x4a,0x74,0xd,0xf4,0xe9,0x3c,0x90,0x34,0x45,0xc6,0x12,0x42,
  946. 0x2a,0x4e,0xd0,0xe7,0x62,0x1,0x37,0xcb,0x11,0x3,0x5,0x1e,0xee,0xb,0x6a,0x19,
  947. 0x60,0x3f,0xb4,0xb4,0x6f,0x5f,0xff,0xe1,0x82,0x79,0xb5,0x73,0x66,0x5f,0xde,0xd5,
  948. 0xd5,0xc5,0x39,0xe7,0x9c,0x13,0x42,0x4e,0x61,0x38,0x59,0xa9,0xa8,0x90,0xd5,0x85,
  949. 0xbe,0xdd,0x1d,0x9d,0x7d,0x2c,0xf7,0xa8,0x9e,0x5,0x70,0x81,0x61,0x38,0xab,0x14,
  950. 0x51,0x2a,0x48,0x9b,0x22,0x6d,0xa,0x0,0xa,0x19,0x99,0xaf,0x59,0x41,0xb3,0x67,
  951. 0xd5,0xf2,0x67,0x97,0x3d,0xbc,0xa4,0x3c,0x36,0xa9,0xb7,0xb7,0x87,0x73,0xce,0x18,
  952. 0xe7,0x9c,0xe3,0xc9,0x8e,0x86,0x88,0x8c,0xa0,0x4,0x95,0x34,0xac,0x3,0xb6,0x17,
  953. 0x6c,0x8b,0x91,0x51,0x5a,0x37,0x65,0x5a,0x29,0xc8,0x45,0xca,0xc6,0x8f,0x2b,0xeb,
  954. 0xef,0xef,0x77,0xb9,0x5c,0xe,0x3a,0x63,0x14,0x70,0x78,0x89,0x1c,0x74,0x8a,0xc8,
  955. 0x9,0x32,0x24,0x8c,0x8c,0xc1,0xb1,0x95,0x54,0x86,0xa1,0x3b,0xe8,0x8c,0x31,0xc6,
  956. 0xd8,0xc8,0xc,0x10,0x90,0x12,0xa4,0x88,0x8c,0x10,0x46,0x90,0x20,0x70,0x18,0x8b,
  957. 0xec,0x10,0x86,0xa3,0x33,0x4a,0x29,0xfc,0x99,0x80,0x12,0x64,0x88,0x14,0x91,0x21,
  958. 0x10,0x4,0x4e,0x10,0xd9,0xd8,0x74,0xcd,0xb9,0xcb,0x81,0x66,0x8c,0x91,0x3f,0xb2,
  959. 0xff,0xa3,0x8,0xd2,0xde,0xdc,0xdc,0xeb,0x14,0x87,0x10,0xa4,0x88,0x84,0x20,0xc7,
  960. 0x31,0xc,0x82,0xc8,0x39,0x77,0xb9,0x7e,0x6f,0x1e,0xcb,0x12,0x5f,0x6e,0xdd,0x26,
  961. 0x84,0x60,0x0,0x40,0x29,0x7d,0x66,0x6e,0xd9,0xb,0xab,0x3f,0xde,0xf5,0x63,0xd5,
  962. 0xa3,0xd7,0x5d,0xe2,0x73,0x33,0x86,0x84,0x0,0xd0,0xd1,0x8e,0xf7,0xa4,0xc,0x38,
  963. 0xe7,0xce,0xdd,0x23,0x96,0xaf,0x7c,0xb9,0xa9,0xa9,0xe9,0x9a,0xf9,0xf3,0x18,0x0,
  964. 0xb8,0xdd,0xae,0x59,0x33,0xce,0x8b,0x14,0xe6,0xdd,0xff,0xe6,0x8e,0x1b,0xba,0x7a,
  965. 0x3f,0x79,0xfc,0x3a,0x7,0x99,0x8e,0xe5,0xba,0x46,0x44,0x7,0x7d,0x6f,0x4b,0xeb,
  966. 0x63,0x4f,0x3c,0x15,0xca,0xcb,0x5d,0xb2,0xe8,0xbe,0xe2,0xe2,0x62,0x6,0x0,0x8c,
  967. 0xb1,0x60,0x30,0x58,0x11,0x8b,0xbd,0x76,0xb7,0xf7,0xe9,0x77,0x36,0x4f,0xbf,0x73,
  968. 0xe5,0xdb,0x4b,0xeb,0xaa,0xce,0xc,0x33,0x2,0xc2,0x96,0x9d,0x87,0x87,0x9a,0x3a,
  969. 0xe,0xb5,0xff,0x7c,0xa8,0xa7,0x3f,0x93,0xd2,0x2d,0xd3,0x46,0xf,0x55,0xb9,0x5e,
  970. 0x5e,0x18,0xf4,0xc5,0xce,0x2a,0x39,0xbf,0x6a,0xfc,0xf8,0xb0,0xdf,0xe1,0xc8,0x64,
  971. 0xf4,0x4f,0x3e,0xfb,0xfc,0xab,0xad,0x5b,0x2f,0xbf,0xf4,0xa2,0x59,0xb3,0x2e,0x29,
  972. 0x2c,0xc,0xfb,0xfd,0xfe,0x13,0x86,0x63,0x59,0x22,0x93,0xc9,0xfc,0xfa,0xeb,0x91,
  973. 0x97,0xde,0xdf,0xb4,0xed,0x97,0xcc,0x8a,0xa5,0xb,0x97,0xbf,0xbb,0xa1,0x25,0x91,
  974. 0xce,0x66,0x45,0x4d,0xbe,0x35,0xa5,0x2c,0x58,0x7e,0x46,0x71,0x71,0x41,0xbe,0xcf,
  975. 0xab,0xe9,0x86,0x91,0x38,0x7c,0x74,0xff,0xa1,0x23,0x8d,0x9d,0xfd,0x89,0xc,0x35,
  976. 0x95,0x6b,0xf2,0xb8,0x40,0xba,0x79,0x4b,0xe5,0xd9,0x13,0x7a,0x7a,0xbb,0x17,0x5e,
  977. 0x5b,0x17,0x8b,0xc5,0x72,0x73,0x83,0x9a,0xe6,0xa1,0x94,0xe,0xb3,0x4c,0xdb,0xb6,
  978. 0x75,0xdd,0x48,0x26,0x7,0x3f,0xdd,0xb4,0xed,0xee,0xd,0xc6,0xfc,0x68,0x5f,0xed,
  979. 0xd4,0xf1,0xd3,0xab,0x2b,0xbc,0x5e,0xaf,0xc7,0xe3,0x71,0xbb,0xdd,0x94,0x32,0x44,
  980. 0x54,0x4a,0xd9,0xb6,0x30,0x4d,0xd3,0x34,0xcd,0x54,0x2a,0xdd,0xdc,0x7e,0xa0,0xbe,
  981. 0xb1,0xb3,0xf3,0xdb,0xfa,0xb9,0x73,0x2e,0x9b,0x7f,0xe5,0x15,0xa1,0x50,0x41,0x20,
  982. 0x90,0xc3,0x39,0x77,0x5c,0x73,0xa4,0x27,0x4b,0x29,0x4d,0xd3,0x1c,0x1c,0x1c,0x4c,
  983. 0xa5,0x52,0x9c,0xf3,0x9c,0x9c,0x1c,0xb7,0xdb,0x73,0xbc,0xf3,0x8,0x21,0xe,0x81,
  984. 0x94,0x52,0x4a,0x29,0x84,0x10,0xc2,0x36,0x4d,0x23,0x9d,0x4e,0x1b,0x86,0xe1,0xf7,
  985. 0xfb,0x83,0xc1,0x3c,0x4d,0xd3,0xfe,0xfc,0x12,0x3c,0xc5,0xab,0x42,0x29,0x65,0x59,
  986. 0x56,0x36,0x6b,0x11,0x42,0x1c,0xc5,0xff,0xc5,0xdb,0x56,0x29,0x65,0xdb,0x32,0x9b,
  987. 0xcd,0xda,0xb6,0xed,0xb4,0x29,0x19,0xae,0xff,0xdf,0x0,0xcb,0xe1,0xa0,0xc4,0xba,
  988. 0xf6,0xd,0x25,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
  989. // E:/vs/occQt-master/occQt-master/Resources/sphere.png
  990. 0x0,0x0,0x6,0xc,
  991. 0x89,
  992. 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
  993. 0x0,0x0,0x20,0x0,0x0,0x0,0x20,0x8,0x2,0x0,0x0,0x0,0xfc,0x18,0xed,0xa3,
  994. 0x0,0x0,0x0,0x6,0x62,0x4b,0x47,0x44,0x0,0xff,0x0,0xff,0x0,0xff,0xa0,0xbd,
  995. 0xa7,0x93,0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xe,0xc4,0x0,0x0,
  996. 0xe,0xc4,0x1,0x95,0x2b,0xe,0x1b,0x0,0x0,0x5,0xac,0x49,0x44,0x41,0x54,0x48,
  997. 0x89,0xb5,0x56,0x5b,0x6c,0x14,0x55,0x18,0x3e,0xb7,0x99,0x9d,0x9d,0xdd,0xa5,0x1d,
  998. 0x96,0x32,0x85,0x6d,0xa,0x55,0x24,0x5c,0x4,0xca,0xa5,0x5,0x21,0xc4,0xbb,0x88,
  999. 0x2,0x21,0x18,0xa8,0x46,0x21,0x12,0x34,0xc6,0x10,0xa2,0x6f,0x6a,0x62,0x22,0x1a,
  1000. 0x1f,0xc4,0x84,0x84,0x34,0x12,0xd,0xd1,0xf8,0x60,0xa3,0x51,0x4,0xf1,0xc2,0xe5,
  1001. 0x41,0x20,0x46,0x65,0x81,0xa6,0x60,0x1,0xc5,0x10,0x2e,0x56,0xca,0xa5,0xd0,0xbd,
  1002. 0x94,0x6e,0x77,0xa7,0x73,0x6e,0x3e,0x9c,0xe1,0x30,0xdd,0x5e,0xe2,0xb,0x7f,0x36,
  1003. 0x9b,0x33,0x73,0xce,0x7c,0xdf,0xff,0x7f,0xff,0x7f,0xfe,0x73,0xa0,0x94,0x12,0xdc,
  1004. 0x4d,0x43,0x77,0x15,0x1d,0x0,0x40,0x46,0x9e,0x66,0x8c,0x6d,0xde,0xd2,0x9c,0xcd,
  1005. 0xf7,0x16,0xa,0x85,0x5c,0xe6,0xa6,0x57,0x2a,0x2,0x0,0x22,0x56,0xd4,0x49,0x56,
  1006. 0xc5,0x62,0xb1,0x31,0x95,0x89,0xcd,0x6f,0xbd,0x4e,0xc8,0x48,0x20,0x70,0x48,0x89,
  1007. 0xa4,0x94,0xc7,0x8e,0x1f,0xff,0x72,0xcf,0xc1,0x8e,0x4b,0xe7,0x6b,0x26,0x4e,0x9a,
  1008. 0x57,0x7f,0x7f,0x6d,0xaa,0x7a,0xcc,0xe8,0x4a,0xc3,0x30,0x84,0x10,0xbe,0xef,0x77,
  1009. 0x67,0xf3,0x17,0xff,0xbd,0x7a,0xb2,0xfd,0xf4,0xb5,0xce,0x8e,0xda,0x89,0x75,0x2f,
  1010. 0xac,0x5a,0x32,0xbf,0xb1,0x11,0x42,0xf8,0xbf,0x8,0x18,0x63,0xef,0x6e,0x69,0x3e,
  1011. 0x75,0xfa,0x4c,0xc3,0x82,0x45,0xcb,0x1f,0x5f,0x5c,0x31,0x2a,0xa1,0x59,0x85,0x10,
  1012. 0x9c,0x73,0x21,0x84,0x90,0xc1,0x63,0x6f,0xa1,0xef,0xc0,0xe1,0x23,0x27,0x5a,0x8f,
  1013. 0xce,0x9e,0x35,0xf3,0x9d,0x37,0x5f,0x1b,0x1c,0x4d,0x39,0x1,0xa5,0x74,0xe3,0x1b,
  1014. 0xef,0x7b,0xa5,0xe2,0xa6,0x57,0xd6,0x8f,0x77,0xc7,0x20,0x84,0x10,0xa,0xf2,0x24,
  1015. 0x84,0x10,0x42,0x50,0xc6,0x39,0xe7,0x94,0x52,0xcd,0x21,0xa5,0xbc,0x7e,0xa3,0xbb,
  1016. 0xe5,0xeb,0xdd,0x56,0xd4,0xde,0xbe,0xe5,0x6d,0xc3,0x30,0x86,0x25,0x50,0xe8,0xae,
  1017. 0xeb,0xae,0x5b,0xbd,0x2c,0x11,0x8f,0x19,0x4,0x97,0x11,0x70,0xce,0x19,0x17,0x94,
  1018. 0x52,0xca,0xb8,0xef,0xfb,0x42,0x2,0x45,0x20,0xa5,0xec,0x2b,0x96,0x76,0xed,0x3d,
  1019. 0x78,0xab,0x27,0x5f,0xc6,0x71,0x87,0x40,0xa1,0xc7,0xe2,0x89,0x4d,0x1b,0x9e,0x8b,
  1020. 0xc7,0x6c,0xd3,0x20,0x8,0x21,0xc5,0x1,0x21,0x54,0xce,0x2a,0xf7,0x7d,0xca,0x7c,
  1021. 0xdf,0xf7,0x29,0x53,0x71,0xa8,0xc8,0xa4,0x94,0x3e,0x65,0x9f,0x7f,0xf5,0x1d,0xa3,
  1022. 0x7e,0x98,0x3,0x85,0x75,0x17,0x42,0x6c,0x5c,0xdf,0x14,0xb3,0xa3,0xa6,0x41,0x4c,
  1023. 0x83,0x58,0x11,0x13,0xe3,0x80,0x0,0x21,0x84,0x31,0xb6,0x22,0xa6,0x61,0x18,0xa6,
  1024. 0x41,0xc,0xc3,0x50,0x53,0x0,0x0,0x78,0xdb,0x4c,0x83,0xac,0x5d,0xbd,0x9c,0x31,
  1025. 0xf6,0xde,0x87,0xcd,0x8c,0xb1,0x3b,0x4,0x52,0xca,0x74,0xfa,0xe8,0xa9,0xd3,0x67,
  1026. 0x5e,0x5e,0xd7,0x64,0x47,0x2d,0x82,0x11,0x21,0x84,0x10,0x2,0x87,0x32,0xd3,0x20,
  1027. 0x18,0x63,0x82,0x91,0x41,0x30,0xc6,0x18,0x41,0x10,0x2e,0x9e,0x98,0x1d,0x7d,0x76,
  1028. 0xd5,0xb2,0x3f,0xda,0x4f,0xa7,0x8f,0x1e,0x55,0xda,0x20,0x25,0xce,0xce,0x7d,0xbf,
  1029. 0xcc,0x5f,0xb8,0xd8,0xad,0x4a,0x62,0x8c,0xd5,0xf7,0x81,0x82,0x3,0x4d,0xbd,0x54,
  1030. 0xd0,0xca,0xd4,0x4b,0x3d,0x25,0xa5,0x74,0xab,0x92,0x33,0x66,0x37,0xec,0x3a,0xf0,
  1031. 0x1b,0xa5,0x34,0x20,0xf0,0x3c,0xef,0xe2,0xf9,0x73,0x4b,0x1f,0x7e,0x80,0x60,0x84,
  1032. 0x11,0x54,0x89,0x1d,0xd2,0x7d,0x65,0x4a,0x2e,0x84,0x10,0x46,0x50,0x13,0x68,0xe,
  1033. 0x8,0xe1,0x53,0x8f,0x2c,0xbc,0x70,0xee,0x6f,0xcf,0xf3,0x0,0x0,0x88,0x31,0xf6,
  1034. 0xc1,0xb6,0x1d,0xe3,0x6a,0x26,0x8c,0x4a,0xc4,0xc1,0x30,0x86,0xd0,0x80,0x1d,0x14,
  1035. 0xd6,0x64,0xf0,0xe6,0x92,0x52,0x8e,0x4a,0xc4,0xab,0xdc,0x71,0x5b,0xb7,0x7f,0xc6,
  1036. 0x18,0x43,0x9e,0xe7,0xe5,0x6e,0xf5,0x2e,0x68,0x98,0x33,0x42,0xd7,0x13,0x42,0x96,
  1037. 0x41,0xc,0x39,0xe,0x5b,0x63,0xc3,0xbc,0x6c,0x4f,0xd1,0xf3,0x3c,0xe4,0xfb,0x7e,
  1038. 0x5f,0x5f,0xf1,0x9e,0x9,0x35,0x52,0x4a,0xc6,0x5,0x17,0x12,0x0,0x20,0x84,0x50,
  1039. 0x1f,0xf,0x67,0xaa,0x34,0xb9,0x90,0x9a,0x40,0xf,0x54,0x4c,0xf7,0x4e,0x48,0x15,
  1040. 0xa,0xbd,0xbe,0xef,0x23,0x29,0x65,0xe6,0x66,0x57,0x45,0x22,0xa6,0xd7,0xa9,0x66,
  1041. 0xa0,0x3e,0x28,0xc3,0x55,0x6b,0x18,0x17,0xda,0x86,0x8b,0x29,0xe9,0x54,0x74,0xdf,
  1042. 0xb8,0x2e,0xa5,0x24,0x0,0x0,0xaf,0x54,0x54,0x5d,0x8c,0x7,0x86,0x18,0xc7,0x10,
  1043. 0x72,0x55,0x24,0x65,0x3e,0x32,0xc6,0xd4,0x7e,0xe,0xd6,0x86,0x82,0x8,0x9b,0x1d,
  1044. 0xb5,0x4a,0xc5,0x3e,0x50,0xd6,0xae,0x39,0xe7,0x94,0x71,0x5d,0x12,0x52,0xca,0x21,
  1045. 0x7b,0x11,0xa5,0xaa,0x59,0xc,0x88,0x40,0xe9,0xa6,0xca,0x4f,0xef,0xc1,0x80,0x20,
  1046. 0x6a,0xc7,0xbc,0x7e,0x1f,0x21,0xb,0x0,0xa1,0x8a,0x37,0xd0,0xa,0x63,0x8c,0xf1,
  1047. 0x60,0xf,0x14,0x3c,0xa5,0xb4,0x4c,0x3d,0xd,0x8a,0x11,0x2c,0x79,0xfd,0x51,0x3b,
  1048. 0x16,0x10,0x38,0xc9,0xaa,0x5c,0xbe,0x27,0x6a,0x45,0x84,0x84,0x50,0x4,0x1c,0x52,
  1049. 0x4a,0x8c,0x5,0x42,0x1c,0xdf,0xae,0x51,0x2e,0xa4,0x10,0x82,0x31,0xa6,0xd0,0x75,
  1050. 0x92,0xc3,0xee,0xab,0x24,0x63,0x8c,0xb3,0xf9,0x4c,0x95,0x3b,0x4e,0x47,0x10,0xbd,
  1051. 0xd0,0x71,0x65,0x7c,0xf5,0x58,0x21,0x4,0x0,0x48,0xc5,0xc1,0x39,0x57,0xad,0x60,
  1052. 0x40,0x37,0x15,0x32,0x50,0x3e,0x54,0x42,0xe5,0xee,0x63,0x8c,0x31,0xbe,0xf0,0xcf,
  1053. 0xe5,0x44,0x62,0x14,0x0,0x0,0x41,0x8,0x2b,0xe2,0x76,0x6b,0xdb,0x49,0xb5,0x4e,
  1054. 0xa3,0x30,0xc6,0x28,0xa5,0x5e,0xbf,0x5f,0xf2,0xfa,0xf5,0xbf,0xef,0xfb,0x61,0xdf,
  1055. 0xd5,0x7a,0xe5,0xbe,0x46,0x57,0xd,0xb8,0xf5,0x44,0x7b,0x45,0x2c,0x2,0x21,0x44,
  1056. 0xa6,0x69,0xbe,0xd8,0xb4,0xe2,0xc6,0xb5,0xce,0x9e,0x5b,0xbd,0x3a,0x58,0x2e,0xa4,
  1057. 0x76,0x96,0xdd,0xb6,0xa0,0x78,0x84,0xd4,0xca,0x68,0x74,0x2d,0x8e,0x41,0x30,0x21,
  1058. 0x24,0x97,0xef,0xb9,0xd6,0xd9,0xd1,0xb4,0x72,0x89,0x69,0x9a,0xc8,0xb2,0x2c,0xc7,
  1059. 0x71,0x6a,0xeb,0xea,0xf6,0x1f,0x4e,0x33,0xc6,0xc2,0xfb,0x48,0xc3,0xe9,0x81,0x46,
  1060. 0x1c,0x2c,0x3d,0x0,0x80,0x10,0x62,0x18,0x86,0x41,0xf0,0x81,0xc3,0x47,0xee,0x9b,
  1061. 0x32,0xd5,0x71,0x1c,0xcb,0xb2,0x10,0x21,0x24,0x1e,0x8f,0x3f,0xba,0x60,0x56,0x7b,
  1062. 0xdb,0xb1,0xae,0xee,0xdc,0xe0,0x1d,0x3b,0xdc,0x58,0x65,0x42,0xa3,0x7,0xe7,0x4,
  1063. 0xc1,0x37,0xba,0xb3,0xe9,0xdf,0x7f,0x5d,0x54,0x3f,0x39,0x1e,0x8f,0x13,0x42,0x10,
  1064. 0x0,0xc0,0xb2,0xac,0x79,0x73,0xe7,0x4c,0x9f,0x3a,0x75,0xe7,0x9e,0xbd,0x25,0xaf,
  1065. 0x5f,0xa7,0x31,0x1c,0x4d,0xf8,0x51,0xcd,0x86,0x13,0xab,0xd0,0x23,0xa6,0x41,0x19,
  1066. 0xff,0xe8,0xd3,0x96,0xfa,0x59,0x33,0xe6,0xce,0x99,0x6d,0x59,0x16,0x50,0xed,0xda,
  1067. 0x30,0xc,0xc7,0x71,0xd6,0xae,0x59,0x6,0x21,0xfc,0x62,0xe7,0x8f,0xba,0x1d,0xf1,
  1068. 0xa1,0x4c,0x43,0x2b,0x74,0x84,0x50,0xc4,0x34,0xd4,0x8f,0xb,0xb9,0x6d,0x47,0x4b,
  1069. 0xc4,0x8a,0xae,0x59,0xf1,0x84,0xe3,0x38,0xea,0xd4,0xc,0x92,0x63,0xdb,0xb6,0xeb,
  1070. 0xba,0xaf,0xae,0x5d,0xd9,0xef,0x95,0x5a,0xbe,0xfd,0xc9,0xeb,0xf7,0x7,0xef,0x7e,
  1071. 0x6d,0x77,0x52,0x6a,0x18,0x56,0xc4,0x34,0x4d,0xd3,0x8a,0x98,0x94,0xf1,0x1d,0x2d,
  1072. 0xbb,0x29,0xa5,0x2f,0x35,0x2d,0x75,0x5d,0xd7,0xb6,0xed,0xe0,0xa8,0x90,0xa1,0x43,
  1073. 0x3f,0x93,0xc9,0x74,0x76,0x76,0x7e,0xd2,0xf2,0x7d,0xa9,0xd8,0xf7,0x7c,0xd3,0x33,
  1074. 0xa9,0xea,0xaa,0xb0,0xca,0x7a,0xac,0x3a,0x1,0xc1,0x8,0x63,0xac,0x4e,0xd0,0xab,
  1075. 0x5d,0xdd,0x5b,0x9b,0x3f,0xae,0x4c,0x8e,0xdd,0xb0,0xe6,0xc9,0x9a,0x9a,0x9a,0x64,
  1076. 0x32,0xa9,0xf,0xfd,0xf2,0x6b,0x4b,0x26,0x93,0xb9,0x72,0xe5,0xca,0x37,0x3f,0xfc,
  1077. 0xfc,0xd7,0xd9,0xb3,0xf5,0x73,0x1b,0x9f,0x7e,0x6c,0x71,0x22,0x1e,0x34,0x5a,0x8,
  1078. 0x21,0x82,0x81,0x38,0xfa,0xc2,0x91,0xbf,0x55,0xd8,0xbd,0xef,0x50,0xdb,0xf1,0xf4,
  1079. 0x8c,0xe9,0xd3,0x56,0x2e,0x7d,0x28,0x95,0x4a,0x85,0xd1,0xcb,0x9,0x14,0x47,0x3e,
  1080. 0x9f,0xef,0xea,0xea,0x3a,0xd9,0xde,0xde,0xfa,0x67,0xc7,0xa5,0xf3,0xe7,0x52,0xb5,
  1081. 0x75,0x8d,0x73,0xeb,0x6b,0x53,0xd5,0x55,0x49,0x27,0x66,0x47,0x21,0x84,0xfd,0x3e,
  1082. 0xcd,0xe6,0xf2,0x97,0x2e,0x5f,0x4b,0x1f,0x6f,0xeb,0xec,0xb8,0x38,0x69,0xf2,0xb4,
  1083. 0x39,0x53,0x52,0xf5,0xb3,0x66,0xba,0xae,0x5b,0x59,0x59,0x39,0xd2,0xc5,0x4b,0x19,
  1084. 0x63,0xac,0x58,0x2c,0xe6,0x72,0xb9,0x6c,0x36,0x5b,0x28,0x14,0xf6,0x1f,0x4a,0xf7,
  1085. 0x94,0xfc,0x62,0xa1,0x90,0xb9,0xd9,0xa5,0x3a,0x70,0xd4,0x8e,0x8d,0x19,0x5b,0x1d,
  1086. 0x4b,0x24,0x2a,0x6c,0x73,0xc9,0x83,0xf3,0xe3,0xf1,0xf8,0xe8,0xd1,0xa3,0x1d,0xc7,
  1087. 0xb1,0x6d,0x7b,0xf0,0xd5,0xf1,0x3f,0xbb,0xbd,0x8e,0xed,0x6c,0x64,0xe9,0xbe,0x0,
  1088. 0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
  1089. // E:/vs/occQt-master/occQt-master/Resources/extrude.png
  1090. 0x0,0x0,0x3,0x4b,
  1091. 0x89,
  1092. 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
  1093. 0x0,0x0,0x20,0x0,0x0,0x0,0x20,0x8,0x2,0x0,0x0,0x0,0xfc,0x18,0xed,0xa3,
  1094. 0x0,0x0,0x0,0x6,0x62,0x4b,0x47,0x44,0x0,0xff,0x0,0xff,0x0,0xff,0xa0,0xbd,
  1095. 0xa7,0x93,0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xe,0xc4,0x0,0x0,
  1096. 0xe,0xc4,0x1,0x95,0x2b,0xe,0x1b,0x0,0x0,0x2,0xeb,0x49,0x44,0x41,0x54,0x48,
  1097. 0x89,0xb5,0x56,0x4f,0x48,0x14,0x51,0x18,0xff,0xbe,0xb7,0xbb,0xba,0x3b,0x6a,0xb8,
  1098. 0xbb,0xa3,0x45,0x1d,0xea,0x92,0xd2,0xc5,0xba,0xe4,0x6a,0x44,0x20,0x46,0xae,0x68,
  1099. 0x91,0x69,0x65,0x6a,0xab,0xd2,0x86,0x85,0x4a,0x74,0xe8,0x20,0x9,0xd2,0xd5,0x82,
  1100. 0xf5,0x4f,0x97,0xa4,0x90,0x22,0xc4,0x4b,0x5a,0x78,0x30,0x43,0x58,0x8c,0x82,0x50,
  1101. 0x2a,0xa1,0x6e,0xa1,0x15,0x64,0x4,0x62,0x68,0x7,0x6b,0xdd,0xdd,0xf7,0x3a,0xbc,
  1102. 0xd9,0x71,0x76,0xe6,0xcd,0xee,0xb6,0xe9,0x8f,0x61,0x66,0xf6,0xfb,0xbe,0xf7,0xfb,
  1103. 0x7d,0xdf,0x7b,0xf3,0xbd,0xb7,0xc8,0x18,0x83,0xed,0x4,0xd9,0x56,0x76,0x0,0xb0,
  1104. 0xa,0xad,0x94,0xd2,0xc1,0x47,0xcf,0x6e,0x4c,0x53,0xc9,0x12,0x4a,0x8f,0x17,0x1,
  1105. 0xaa,0xf6,0xfe,0x79,0xd8,0xd3,0x2c,0x10,0xa0,0x94,0x6,0x86,0xc7,0xba,0x82,0xf8,
  1106. 0xbe,0xdf,0x8b,0xb1,0x68,0x40,0x0,0xb5,0x5e,0x6e,0x65,0xca,0xb,0x2,0x2a,0x16,
  1107. 0xd,0xf6,0x64,0x65,0x3a,0x5b,0x9f,0xe,0x85,0x36,0xf4,0x53,0x44,0x29,0xbd,0xf3,
  1108. 0xe0,0x49,0x57,0x10,0xe7,0xfb,0xbd,0x9c,0x44,0xb9,0x33,0x0,0x6,0x14,0xd4,0xdf,
  1109. 0x0,0xa8,0xbc,0x30,0x60,0xdc,0xab,0xa2,0x20,0x57,0x7a,0xfd,0x65,0x19,0x0,0xc2,
  1110. 0xe1,0x70,0x9c,0x0,0x67,0xef,0x9e,0x21,0xef,0xfa,0xbc,0x94,0x6d,0x26,0xaa,0xde,
  1111. 0x13,0x69,0xc4,0x8c,0x5,0xb9,0xd2,0x8b,0x4f,0x3f,0x3e,0xaf,0xfc,0xe2,0x84,0x44,
  1112. 0xcb,0x1e,0x18,0x1e,0xe3,0xec,0x8a,0x45,0xa3,0xc1,0x12,0x68,0x6c,0x56,0x11,0xc7,
  1113. 0xce,0x41,0x54,0xf6,0x7b,0x23,0x13,0x5d,0x41,0x54,0xd9,0x75,0x1a,0x71,0x32,0x3a,
  1114. 0x8d,0x58,0x29,0x5,0x4e,0x3d,0xbb,0x22,0x40,0x29,0x7d,0x3c,0x3e,0x75,0xed,0x79,
  1115. 0xe4,0x6d,0xa0,0xc2,0xd8,0x16,0x3a,0xd,0x30,0x6a,0x30,0x0,0x80,0x42,0x57,0x96,
  1116. 0x91,0x1d,0x0,0x8,0x9f,0x77,0xff,0xf8,0xfa,0x5c,0xa0,0x82,0x8f,0x11,0x6a,0x30,
  1117. 0xe3,0x92,0x30,0xa0,0x31,0x99,0x42,0xa7,0x98,0x1d,0x0,0xac,0xa1,0xd0,0x46,0xf7,
  1118. 0xc,0x99,0xb9,0x55,0x7e,0x30,0x2f,0xdb,0xe8,0x4e,0x11,0xb3,0xdf,0x56,0x84,0xec,
  1119. 0x0,0x60,0xd,0x87,0xc3,0x4,0xe8,0xba,0x85,0x4d,0x2d,0xfe,0x4c,0x83,0xda,0x4a,
  1120. 0xb0,0x7c,0x9f,0xf3,0xfb,0xda,0x6f,0xd3,0x80,0x68,0x34,0xa,0x0,0x8,0x10,0x8a,
  1121. 0xd0,0x34,0x4,0xa2,0xc4,0xd0,0x63,0x3a,0x1,0xfe,0x40,0x4,0x4c,0x12,0x29,0x46,
  1122. 0xd2,0x51,0x31,0x1,0x30,0x76,0xbb,0x82,0xb9,0xe9,0x49,0x0,0x38,0x7c,0xbc,0x52,
  1123. 0x2c,0x90,0x2c,0x3,0xb5,0x2,0x44,0x51,0x32,0xb3,0xd3,0x93,0xa3,0x83,0xb7,0x79,
  1124. 0x44,0xb1,0x48,0x43,0x38,0x4a,0x8b,0xcd,0x4e,0x46,0xc3,0xf5,0xf1,0xcd,0xab,0xd1,
  1125. 0x81,0x5e,0xee,0x1d,0x1d,0xe8,0x5d,0xf8,0x30,0x6f,0x8c,0x49,0x5a,0x41,0x6c,0x7f,
  1126. 0x44,0xc1,0x55,0x54,0x7a,0xb4,0x6f,0x22,0xc8,0x3,0xfa,0x26,0x82,0xfb,0x8b,0xe,
  1127. 0x9,0xc3,0x12,0x23,0xf9,0x1a,0xa8,0x1,0xff,0x64,0xd7,0xb,0x10,0x92,0x64,0x32,
  1128. 0xcd,0xbc,0xa9,0x57,0x80,0x82,0x53,0x43,0x4b,0x64,0xe2,0x4d,0x3c,0xa,0xe2,0xa6,
  1129. 0x68,0x9b,0x2b,0xd8,0xfa,0x35,0x18,0x6a,0x2b,0x6,0xf5,0x2b,0x62,0xc0,0x84,0x5f,
  1130. 0x88,0x9a,0xa0,0x99,0xd7,0xac,0x2,0x4f,0xbe,0xd4,0x73,0x77,0x4,0x11,0xd5,0x63,
  1131. 0xdc,0x94,0x21,0xc5,0x0,0x2d,0x8e,0xec,0xce,0x69,0xf0,0xb5,0xd7,0x1f,0x0,0x8b,
  1132. 0xc5,0x92,0xea,0x5e,0x64,0xea,0x35,0xd8,0x4b,0x77,0x65,0xd7,0x79,0x2b,0x9a,0x5a,
  1133. 0x2e,0xb5,0x36,0xd4,0xda,0x6c,0xb6,0x2d,0x5e,0x83,0x92,0x9d,0x59,0xf5,0xbe,0xf6,
  1134. 0xda,0xb,0x17,0x9b,0xeb,0x6b,0x5c,0x2e,0x77,0x46,0x86,0xed,0x7f,0x2b,0x20,0x9a,
  1135. 0xed,0xda,0x93,0x2f,0xd5,0x9d,0x6d,0x39,0x5d,0x59,0x76,0xa5,0xf9,0xbc,0x2c,0xe7,
  1136. 0xd9,0xed,0x99,0x84,0x90,0x2d,0xeb,0x3,0x4f,0xbe,0x74,0xae,0xa1,0xad,0xea,0xc4,
  1137. 0xb1,0xce,0xcb,0x4d,0x6e,0xb7,0xcc,0xd9,0x21,0x95,0xf3,0xe0,0xfe,0xd4,0xcb,0x4,
  1138. 0xc2,0xfc,0x78,0x2e,0xdc,0x61,0xad,0x6b,0xba,0x5a,0x59,0xe6,0xb9,0xde,0xe6,0x73,
  1139. 0xb9,0xdc,0xe,0x87,0x9d,0xb3,0x2b,0x2,0x23,0xb5,0x19,0xb2,0xd,0xed,0x39,0x8e,
  1140. 0x84,0x44,0x62,0x10,0xc4,0xc5,0xa5,0xe5,0x93,0xd5,0x67,0x6a,0x4e,0x55,0x77,0xf8,
  1141. 0x1b,0xdd,0x6e,0x59,0x92,0x1c,0x2a,0x3b,0x0,0xe0,0xea,0xea,0x9a,0xaf,0xf3,0xe6,
  1142. 0xc2,0xd7,0xa5,0x68,0x24,0xdd,0xff,0xb9,0x68,0xa9,0x2a,0x2b,0xe9,0xf0,0x37,0xca,
  1143. 0x72,0x9e,0x36,0x77,0x8e,0xbf,0xbe,0x16,0x16,0x48,0x5f,0x47,0x2c,0x5c,0x0,0x0,
  1144. 0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
  1145. // E:/vs/occQt-master/occQt-master/Resources/Home.png
  1146. 0x0,0x0,0x4,0xc7,
  1147. 0x89,
  1148. 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
  1149. 0x0,0x0,0x20,0x0,0x0,0x0,0x20,0x8,0x2,0x0,0x0,0x0,0xfc,0x18,0xed,0xa3,
  1150. 0x0,0x0,0x0,0x6,0x62,0x4b,0x47,0x44,0x0,0xff,0x0,0xff,0x0,0xff,0xa0,0xbd,
  1151. 0xa7,0x93,0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xe,0xc4,0x0,0x0,
  1152. 0xe,0xc4,0x1,0x95,0x2b,0xe,0x1b,0x0,0x0,0x4,0x67,0x49,0x44,0x41,0x54,0x48,
  1153. 0x89,0xdd,0x56,0x5d,0x4b,0x23,0x57,0x18,0x3e,0x33,0x99,0xc9,0xa7,0x33,0x3a,0x31,
  1154. 0x6a,0x24,0x66,0xd4,0x14,0xbb,0x76,0x15,0x51,0xc3,0x12,0x5d,0x77,0x45,0x56,0x70,
  1155. 0x2d,0xda,0xf,0xb,0x16,0x5d,0xdb,0xda,0xbf,0x50,0xda,0x8b,0xbd,0xea,0x8f,0x28,
  1156. 0x28,0x2c,0x14,0x7a,0x55,0x14,0xe9,0xb6,0xd4,0x8a,0x8b,0x20,0x48,0x8d,0xa5,0x50,
  1157. 0x88,0x52,0x13,0xeb,0x6e,0xbe,0x8d,0xa4,0x71,0xe2,0x98,0x31,0x93,0x98,0x99,0x6c,
  1158. 0x72,0x66,0x7a,0x31,0xdd,0xac,0x35,0x1f,0x6a,0xc1,0x8b,0xf6,0xbd,0xca,0xc7,0xfb,
  1159. 0x3c,0xcf,0x3c,0xe7,0x39,0xe7,0x3d,0x83,0x64,0xb3,0x59,0x70,0x93,0x85,0xc9,0xb2,
  1160. 0x7c,0xa3,0x2,0xe8,0x8d,0xb2,0xff,0x2f,0x4,0xae,0x97,0x1,0xcf,0xf3,0xf1,0x78,
  1161. 0x3c,0x18,0xc,0x78,0xbd,0x2f,0x4e,0xb9,0xe4,0xfb,0x13,0x13,0x16,0x8b,0x85,0x20,
  1162. 0x8,0xc,0xc3,0xca,0x41,0x10,0x41,0x10,0x2e,0xe5,0x85,0x10,0x7a,0x3c,0x1e,0xb7,
  1163. 0xdb,0x1d,0xa,0xfa,0x51,0x39,0xeb,0xf3,0x87,0xb3,0x39,0xd8,0x64,0xa5,0x6b,0x6b,
  1164. 0x4d,0x3c,0xcf,0xf,0xe,0xe,0x8e,0x8e,0x8e,0x96,0x75,0x50,0x81,0xd7,0xef,0xf7,
  1165. 0x7,0x83,0x1,0xef,0xbe,0x27,0x16,0x3d,0xa0,0x48,0x75,0xab,0xb5,0x6e,0x6c,0xc0,
  1166. 0x1a,0x3b,0x4e,0x2,0xac,0x6a,0x68,0x68,0xe8,0xe4,0xe4,0x44,0xaf,0xd7,0xe7,0x72,
  1167. 0xb9,0x64,0x32,0x59,0x81,0xa4,0xac,0x40,0x24,0x12,0x79,0x32,0xff,0x55,0xab,0x85,
  1168. 0xb4,0x59,0x8c,0xbd,0x6f,0xde,0xae,0xd2,0x6b,0x5f,0xb9,0x91,0x68,0x9a,0xee,0xef,
  1169. 0xef,0x77,0xbb,0xdd,0x26,0x93,0x69,0x6f,0x6f,0x4f,0xa3,0xd1,0x5c,0x5b,0xe0,0xf0,
  1170. 0xf0,0xf0,0x9b,0xaf,0x9f,0x34,0xd5,0xeb,0x48,0x83,0xc6,0x62,0xa6,0x10,0x4,0x29,
  1171. 0xfc,0xa5,0x51,0x63,0x3a,0x80,0xcb,0xb2,0x9c,0xcf,0xe7,0x71,0x1c,0x17,0x4,0xc1,
  1172. 0xeb,0xf5,0x42,0x8,0x55,0x2a,0x55,0x49,0x2a,0x54,0x2e,0x2a,0x49,0x92,0xbe,0xff,
  1173. 0x6e,0x89,0x32,0x48,0xfe,0x3,0x36,0x10,0x61,0x8f,0x13,0xa9,0xf3,0x80,0x6,0x13,
  1174. 0x69,0xd4,0xe7,0x12,0x27,0xac,0x24,0x49,0x8,0x82,0x8,0x82,0xf0,0x7c,0x7f,0x77,
  1175. 0x7b,0x7b,0xbb,0x98,0x47,0xa9,0x8b,0xdb,0x54,0x14,0xc5,0xc5,0xc5,0x85,0x33,0xee,
  1176. 0xf0,0xa5,0x84,0x7d,0xf1,0xf8,0x4b,0xc2,0x44,0xfb,0x42,0xcc,0x59,0xe6,0xf5,0x38,
  1177. 0x41,0x51,0x94,0x50,0x8b,0x7f,0xfc,0xfe,0xb,0x84,0x30,0x93,0xc9,0x8,0x69,0x6e,
  1178. 0xf4,0xfe,0xed,0xd5,0x9f,0x9e,0x86,0x42,0xa1,0xd2,0xe,0x2e,0x7c,0x77,0xb9,0x5c,
  1179. 0xc1,0xe7,0x3b,0x1a,0xad,0xfe,0xc1,0xc8,0xbb,0x56,0xab,0x75,0x62,0xe2,0x3,0x7f,
  1180. 0x84,0x3d,0x88,0xb2,0xe7,0x7b,0x34,0x6a,0x1c,0xcb,0x1d,0xef,0xee,0xfc,0xe6,0x73,
  1181. 0x3b,0x5b,0xea,0x40,0xab,0xb5,0xae,0xad,0x89,0x78,0xb6,0xba,0x72,0xb9,0x40,0x20,
  1182. 0x10,0xf8,0xf1,0xe9,0xb7,0x2a,0x54,0x1e,0x7a,0x38,0xd1,0xdd,0x63,0x7,0x0,0x34,
  1183. 0x37,0x37,0xf,0x3e,0x78,0x7b,0x3f,0xc0,0xb0,0xff,0x5c,0x28,0xc2,0xa0,0x71,0xbc,
  1184. 0x45,0xd4,0x13,0xf9,0xda,0x1a,0x9d,0x46,0x8d,0xdf,0x7a,0xc3,0x7c,0x1c,0xf5,0x3a,
  1185. 0x9d,0xce,0x4a,0x2,0x10,0xc2,0xb5,0xb5,0x35,0x59,0xca,0x6b,0x49,0x73,0x77,0x77,
  1186. 0x6f,0xe1,0xf7,0x7b,0xf7,0xee,0x6b,0xc,0xa6,0x83,0x28,0x9b,0x11,0x5e,0x9e,0x47,
  1187. 0x16,0x92,0x97,0x65,0xd9,0xb5,0x1b,0x86,0xa8,0xbe,0xa1,0xa1,0xa1,0x84,0xc0,0xeb,
  1188. 0x34,0x50,0x74,0x6c,0x6c,0xcc,0x6c,0xbd,0x85,0xab,0x75,0x8,0x82,0x30,0xc,0xc3,
  1189. 0x71,0x9c,0x24,0x49,0x14,0x45,0x3d,0xfa,0xe8,0x13,0x8f,0x8f,0xb9,0xb0,0x50,0x0,
  1190. 0x0,0x8,0xa5,0x17,0xc1,0xa3,0x1f,0xd6,0x3d,0xa1,0x78,0xfe,0xb3,0xcf,0x1f,0xb7,
  1191. 0xb5,0xb5,0x5d,0x12,0x32,0x4d,0xd3,0x93,0x93,0x93,0xca,0xe7,0xdd,0xdd,0xdd,0xb9,
  1192. 0xb9,0xb9,0xa5,0xa5,0xa5,0x44,0x22,0x41,0xd3,0x74,0xcf,0x9d,0xbb,0xbe,0x70,0x3c,
  1193. 0x71,0x7a,0x56,0x68,0x4e,0x9f,0x89,0x1b,0xbf,0xee,0x87,0xe2,0xd2,0xdd,0xc1,0x87,
  1194. 0x24,0x49,0x56,0x55,0x55,0x15,0x3f,0x3e,0x28,0x3e,0x7,0x3a,0x9d,0x4e,0x14,0x45,
  1195. 0x0,0x80,0xd9,0x6c,0xce,0xe5,0x72,0xf3,0xf3,0xf3,0xb,0xb,0xb,0x3d,0x3d,0x3d,
  1196. 0x33,0x33,0x33,0x87,0x91,0x48,0xe0,0x80,0xd1,0x69,0x9b,0x64,0x19,0xf8,0x42,0x47,
  1197. 0xbe,0xa8,0x70,0xc7,0x31,0xd8,0xd7,0xd7,0x17,0x8d,0x46,0x49,0x92,0x2c,0x37,0x8e,
  1198. 0x2e,0xee,0x22,0xad,0x56,0xab,0xdc,0x71,0x18,0x86,0x61,0x18,0x96,0xcd,0x66,0x19,
  1199. 0x86,0xd9,0xda,0xda,0x4a,0x26,0x93,0xe3,0xef,0xbc,0xb7,0x1f,0x38,0xda,0xf7,0xff,
  1200. 0xf9,0xec,0xe7,0xbd,0x94,0x44,0x4d,0x3d,0xfa,0xd8,0xe1,0x70,0x0,0x0,0xd2,0xe9,
  1201. 0x74,0x75,0x75,0x75,0x49,0x76,0x50,0x3c,0x4d,0x95,0x73,0x9f,0xc9,0x64,0x8,0x82,
  1202. 0x50,0x62,0x94,0x65,0x19,0x42,0x98,0xcf,0xe7,0x3b,0x3a,0x3a,0x7a,0x1d,0x43,0x1e,
  1203. 0x8f,0x67,0xf2,0xc3,0x4f,0x2d,0x16,0x4b,0x21,0x64,0x8e,0xe3,0x28,0x8a,0x2a,0x37,
  1204. 0x95,0x2f,0xfa,0xc2,0x30,0xcc,0x60,0x30,0x24,0x93,0x49,0xbd,0x5e,0xf,0x0,0x40,
  1205. 0x10,0x44,0x41,0xe6,0xf3,0x79,0x0,0xc0,0xc0,0xc0,0x40,0x67,0x67,0x67,0x63,0x63,
  1206. 0xe3,0x79,0x48,0x2a,0x95,0xa2,0x69,0xba,0x9c,0x83,0x12,0x17,0x8e,0xd1,0x68,0x4c,
  1207. 0x24,0x12,0x4,0x41,0x80,0x57,0x7b,0x51,0x31,0x1,0x0,0xc0,0x71,0xbc,0x78,0xb4,
  1208. 0x9d,0x9e,0x9e,0x1a,0x8d,0xc6,0x6b,0x8,0x90,0x24,0xc9,0xf3,0x3c,0x86,0x61,0x38,
  1209. 0x8e,0x17,0xd6,0x41,0x71,0x50,0x5c,0x82,0x20,0x30,0xc,0x53,0x53,0x53,0x53,0x4e,
  1210. 0xa0,0x44,0xf4,0x2d,0x2d,0x2d,0x1b,0x1b,0x1b,0x6,0x83,0x1,0x45,0x51,0x95,0x4a,
  1211. 0x5,0x21,0x54,0x66,0xe7,0x85,0x36,0x59,0x96,0x59,0x96,0x5d,0x59,0x59,0xb1,0xdb,
  1212. 0xed,0x25,0x8f,0xd8,0xdf,0x2,0xc5,0xe1,0xb4,0xb7,0xb7,0x67,0xb3,0x59,0xa7,0xd3,
  1213. 0xe9,0xf3,0xf9,0x8c,0x46,0x23,0xcb,0xb2,0x25,0x1d,0x44,0x22,0x91,0xd5,0xd5,0xd5,
  1214. 0x91,0x91,0x91,0xae,0xae,0xae,0xa,0xf7,0x6e,0x9,0x7,0x18,0x86,0xd9,0xed,0x76,
  1215. 0xbb,0xdd,0x2e,0x8a,0x62,0x22,0x91,0x58,0x5c,0x5c,0xdc,0xd9,0xd9,0x51,0x32,0x50,
  1216. 0x88,0x72,0xb9,0x9c,0xc7,0xe3,0xd9,0xde,0xde,0x9e,0x9a,0x9a,0xb2,0xd9,0x6c,0xe5,
  1217. 0xa8,0x95,0x42,0x52,0xa9,0x54,0xe5,0xe,0x51,0x14,0xd7,0xd7,0xd7,0x63,0xb1,0xd8,
  1218. 0xec,0xec,0x2c,0xc7,0x71,0xe9,0x74,0xda,0xe5,0x72,0xc5,0x62,0xb1,0xe9,0xe9,0xe9,
  1219. 0xfa,0xfa,0xfa,0xca,0xd8,0x2b,0x9,0x28,0x8f,0xbc,0xbc,0xbc,0x1c,0xe,0x87,0x6d,
  1220. 0x36,0x5b,0x20,0x10,0x68,0x6e,0x6e,0x1e,0x1f,0x1f,0xd7,0xe9,0x74,0x97,0x2,0x1,
  1221. 0x0,0x8,0xcf,0xf3,0x57,0xe9,0x83,0x10,0xc6,0x62,0xb1,0xcd,0xcd,0x4d,0x8a,0xa2,
  1222. 0x86,0x87,0x87,0xd5,0x6a,0xf5,0x55,0x50,0xd7,0x10,0xf8,0xd7,0xf5,0xdf,0x7f,0x75,
  1223. 0xfc,0xb,0x3f,0x8b,0x60,0xf8,0x53,0xe9,0x70,0x28,0x0,0x0,0x0,0x0,0x49,0x45,
  1224. 0x4e,0x44,0xae,0x42,0x60,0x82,
  1225. // E:/vs/occQt-master/occQt-master/Resources/Pan.png
  1226. 0x0,0x0,0x4,0x9c,
  1227. 0x89,
  1228. 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
  1229. 0x0,0x0,0x20,0x0,0x0,0x0,0x20,0x8,0x2,0x0,0x0,0x0,0xfc,0x18,0xed,0xa3,
  1230. 0x0,0x0,0x0,0x6,0x62,0x4b,0x47,0x44,0x0,0xff,0x0,0xff,0x0,0xff,0xa0,0xbd,
  1231. 0xa7,0x93,0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xe,0xc4,0x0,0x0,
  1232. 0xe,0xc4,0x1,0x95,0x2b,0xe,0x1b,0x0,0x0,0x4,0x3c,0x49,0x44,0x41,0x54,0x48,
  1233. 0x89,0xed,0x96,0x6d,0x4c,0x9b,0x65,0x14,0x86,0xef,0xb7,0xa5,0x9f,0x94,0x76,0xd0,
  1234. 0x42,0x41,0x6c,0x3b,0x66,0xb7,0xc1,0x2,0x83,0x6d,0xe,0xa6,0xa1,0x23,0x23,0x2c,
  1235. 0xae,0x2c,0x73,0x31,0xc6,0x45,0x1d,0x13,0x8d,0x40,0x56,0x12,0x2,0x66,0x24,0x6a,
  1236. 0x1a,0x95,0x99,0x81,0xe,0x33,0xf1,0x7,0xc3,0x1f,0x53,0xc4,0x10,0x22,0xcb,0x32,
  1237. 0x75,0x8a,0xb8,0xc9,0x6,0x41,0x4a,0x25,0x2c,0x83,0x50,0x86,0x94,0x32,0x70,0xd4,
  1238. 0xb5,0xa3,0x85,0x52,0xfa,0x5d,0x28,0x7d,0xeb,0x8f,0x91,0x46,0x47,0xf9,0x8,0x1b,
  1239. 0x89,0x31,0xde,0xbf,0xde,0xe7,0xe4,0x39,0xf7,0x95,0xf3,0x9e,0xe7,0x8b,0xf0,0x7a,
  1240. 0xbd,0xd8,0x48,0x51,0x36,0xd4,0xfd,0x3f,0x1,0x8,0xb,0x4,0x2,0x1b,0xa,0x58,
  1241. 0x67,0x5,0x66,0xb3,0xb9,0xa6,0xa6,0xc6,0xe3,0xf1,0xac,0x3a,0x93,0x58,0xcb,0xa4,
  1242. 0xa0,0xfc,0x7e,0xff,0xc0,0xc0,0xc0,0xcf,0xbf,0xaa,0xcf,0xab,0x87,0x3c,0xa3,0x83,
  1243. 0x93,0x3d,0x37,0x18,0xc,0xc6,0xca,0x29,0x61,0x6b,0x77,0x1f,0x19,0x19,0x69,0x68,
  1244. 0xf8,0xfa,0xca,0x2c,0x55,0x9f,0x98,0xe9,0x2f,0x2e,0xc0,0x37,0xe7,0x74,0x3a,0x5d,
  1245. 0x4a,0x4a,0xca,0x7a,0x0,0x24,0x49,0x3a,0x9d,0x4e,0xb7,0xdb,0x6d,0xb7,0xdb,0x49,
  1246. 0x92,0x14,0x89,0x44,0xd5,0xd5,0xd5,0x9f,0xb6,0xf5,0x2e,0xec,0xcb,0xc5,0xb1,0x2,
  1247. 0x44,0x44,0x2,0x40,0x9a,0xac,0xbb,0xbb,0x7b,0x75,0x40,0xb0,0xc9,0x7a,0xbd,0xbe,
  1248. 0xa3,0xa3,0xc3,0x6c,0x36,0x1b,0xc,0x6,0x8b,0x75,0xd6,0x46,0x61,0xba,0x99,0x1c,
  1249. 0xbb,0x79,0x32,0x91,0x43,0xfd,0xbc,0xae,0x4e,0xab,0xd5,0x2e,0xf0,0xf8,0xe8,0x6b,
  1250. 0xc7,0xe1,0x37,0x60,0xd2,0xa3,0xaf,0x3,0x3b,0x32,0x6,0xae,0x37,0x93,0x24,0x49,
  1251. 0x10,0xc4,0x9a,0x2a,0x30,0x18,0xc,0x8a,0xfa,0xcb,0xc8,0x7f,0xf,0xa9,0x5b,0xc1,
  1252. 0x13,0x20,0x8c,0x6,0x75,0xb,0x86,0x6b,0x8d,0x77,0xee,0xd9,0x6c,0xb6,0xca,0xca,
  1253. 0xca,0xa1,0x93,0xa5,0x63,0x79,0xef,0x83,0x42,0xc5,0x5,0x25,0xdc,0x4e,0x4c,0xfc,
  1254. 0x3e,0x6e,0x31,0x5b,0x2c,0x16,0x81,0x40,0xb0,0x2,0x80,0xaa,0x54,0x2a,0x1f,0x7c,
  1255. 0x9,0x85,0xc2,0xce,0xab,0xad,0xf7,0x9e,0x48,0xc6,0xf6,0xdd,0xa0,0x50,0x1,0x80,
  1256. 0xc9,0x46,0x8c,0x88,0xe0,0xc7,0xa9,0xaf,0xb5,0xa8,0xaf,0xb6,0xdc,0xa2,0xa,0xc8,
  1257. 0x9c,0x57,0xd1,0xd3,0x8a,0x1f,0xbf,0x38,0x90,0x10,0xb3,0x99,0x49,0xb1,0x4e,0x8c,
  1258. 0xcf,0x7b,0x3d,0x19,0x19,0x19,0x14,0xca,0xb2,0xab,0x91,0x70,0xbb,0xdd,0xc1,0x81,
  1259. 0x46,0xa3,0xc9,0x2f,0x57,0x8e,0x94,0x7e,0x89,0x70,0x2e,0x6a,0x4a,0x20,0x49,0x44,
  1260. 0xf2,0x33,0x88,0x97,0x62,0xb4,0x1f,0xb5,0xa7,0x10,0x15,0xb,0x97,0xd,0xbe,0x79,
  1261. 0x41,0x58,0xa0,0xf0,0x95,0x97,0xb2,0xb2,0xb2,0x58,0x2c,0xd6,0xeb,0x15,0x67,0xe5,
  1262. 0x4f,0xa7,0x96,0x2b,0xa,0x63,0x63,0x63,0x57,0x7,0xf8,0x7c,0xbe,0xa6,0xa6,0xa6,
  1263. 0xe2,0x6f,0x55,0xd8,0x95,0x85,0x5b,0xd7,0x31,0x65,0x80,0x68,0x1b,0x16,0x16,0x30,
  1264. 0xa6,0xe1,0x78,0x6c,0xb2,0xfd,0xb2,0xce,0xfe,0x41,0x77,0x51,0x35,0xfc,0x3e,0x9e,
  1265. 0xae,0x57,0x3c,0x3d,0xc6,0xb1,0xde,0xef,0x3d,0x50,0x40,0xf3,0xcd,0xe5,0xfc,0xa9,
  1266. 0xba,0x70,0xf6,0xc,0x8f,0xc7,0xb,0x1,0x70,0xb9,0x5c,0xf,0x85,0x4a,0x4a,0xcb,
  1267. 0x1a,0xc7,0x67,0xe,0x45,0xf8,0xd3,0x76,0xa6,0xfc,0x72,0xa3,0xbd,0xcf,0x38,0xed,
  1268. 0x2b,0xfc,0x8,0x26,0x3d,0xad,0xf9,0x13,0xbf,0x50,0x42,0x1e,0x7b,0xb,0xa2,0x6d,
  1269. 0x10,0x6d,0x7,0x9d,0x81,0xc1,0x6e,0x6c,0xde,0x81,0x88,0x48,0x8c,0xf6,0xef,0xfe,
  1270. 0xe9,0xb3,0xaa,0xa2,0xe3,0xb2,0xcc,0xcc,0x65,0x7b,0x10,0xd4,0x26,0x1e,0xb7,0xe7,
  1271. 0x52,0xe3,0xc7,0x55,0x95,0x39,0x39,0x39,0xfa,0xfb,0x93,0x37,0xb7,0x64,0x92,0x87,
  1272. 0xdf,0x44,0x94,0x90,0xbc,0xd6,0x14,0x0,0x30,0xef,0x85,0xae,0xf,0x5d,0xdf,0x61,
  1273. 0x6c,0x10,0xcf,0xe5,0x81,0xc1,0x2,0x0,0x7e,0xdc,0x64,0xa4,0xf8,0xb7,0x8b,0xd,
  1274. 0x3b,0x63,0x78,0x62,0xb1,0x78,0x15,0x80,0xd7,0xeb,0xbd,0xd2,0xd1,0xd5,0x75,0xd7,
  1275. 0x64,0xd4,0xd,0x9f,0xd7,0xcd,0xf8,0xf2,0x94,0x70,0x5a,0x51,0x5b,0x9e,0xc0,0xc,
  1276. 0x14,0xe5,0x66,0x6f,0x9a,0xbe,0x4b,0xd8,0x2d,0xf6,0x39,0x1f,0x19,0x15,0x87,0x5d,
  1277. 0x59,0x8b,0x39,0x24,0x9,0xe,0xcf,0x2a,0xdd,0xdb,0x72,0xee,0x43,0xca,0xb4,0x21,
  1278. 0x3d,0x3d,0x3d,0xb8,0x76,0x43,0x6f,0xb4,0x40,0xd2,0x5e,0x75,0x76,0xa1,0xba,0xfb,
  1279. 0x7,0x1c,0x79,0x11,0x4c,0x36,0xea,0x2b,0xf0,0xc7,0xed,0x93,0x8a,0xfc,0xd7,0x4e,
  1280. 0x9c,0x70,0xb9,0x5c,0x5a,0xad,0xf6,0x78,0xd9,0xdb,0xb6,0x3d,0x7,0xd1,0x7e,0x11,
  1281. 0x24,0x9,0xbf,0x1f,0x81,0x0,0x18,0x4c,0xd0,0x99,0xd6,0x7d,0xcf,0xd7,0xb7,0x36,
  1282. 0x17,0x2b,0x14,0x74,0x3a,0x7d,0x11,0xb0,0xf4,0x34,0xb5,0x5a,0xad,0x36,0x36,0x1f,
  1283. 0xa2,0xad,0x78,0xf9,0xd4,0x62,0x28,0xfe,0x29,0x22,0x21,0xf9,0xb6,0xde,0xa8,0x52,
  1284. 0xa9,0xe4,0x72,0xf9,0xd4,0xd4,0x94,0x8d,0x16,0xe,0x4,0x28,0x56,0x13,0xdd,0xeb,
  1285. 0x64,0xb9,0x6d,0x8c,0x39,0x7,0xdb,0xeb,0x60,0xce,0xb9,0x62,0x69,0xd8,0x92,0x94,
  1286. 0x40,0xa3,0xd1,0x82,0xb6,0x21,0x2a,0x70,0x3a,0x9d,0xe,0x6,0xe7,0x1f,0xa1,0x23,
  1287. 0x85,0x81,0x27,0xa5,0x8d,0x6d,0x4d,0x3a,0xdd,0x57,0x72,0xb9,0x9c,0xcb,0xe5,0x96,
  1288. 0xe5,0xee,0x8f,0x12,0x78,0x4,0xbc,0x8,0x36,0x3b,0x9e,0xcb,0x4d,0x62,0xb3,0xd9,
  1289. 0x1c,0xe,0x87,0xc5,0x62,0x9,0x85,0x42,0x2e,0x97,0xfb,0xf7,0xd4,0x10,0x0,0xeb,
  1290. 0xec,0xac,0x23,0x9c,0xbf,0x38,0xf0,0xcd,0xc1,0x38,0xe,0x8d,0xa,0xf6,0x99,0x64,
  1291. 0x36,0x8e,0xee,0x91,0x1,0x90,0x48,0x24,0x67,0x4e,0x57,0x84,0xfc,0xb7,0x4b,0x15,
  1292. 0x2,0x60,0x9e,0x75,0xf8,0x59,0x62,0x0,0x70,0x3b,0xd0,0xf5,0x3d,0x8,0x82,0x3d,
  1293. 0xa4,0x3a,0x2a,0x89,0x2a,0x7f,0xb7,0x44,0x2a,0x95,0xae,0xd1,0x77,0x25,0xc0,0xc4,
  1294. 0x8c,0xd,0x74,0x3f,0x6e,0xb6,0xe1,0xce,0x40,0xf8,0x82,0x27,0x63,0x46,0x7b,0xfa,
  1295. 0x1d,0x45,0x5a,0x5a,0xda,0xca,0x87,0xda,0xb2,0x80,0xa5,0x4d,0x36,0xea,0x27,0x40,
  1296. 0x23,0x40,0xa1,0x8,0xc7,0xfb,0x3e,0x78,0x21,0xfb,0xd0,0xc1,0xbc,0xe8,0xe8,0x68,
  1297. 0x0,0xeb,0xbb,0x5c,0x43,0x54,0xc0,0x67,0xd1,0xe3,0x34,0x9d,0xf9,0xcf,0xa6,0x16,
  1298. 0xd5,0x55,0x3d,0xb0,0x7e,0x14,0x11,0xe,0x87,0xe3,0xa1,0xd0,0xf0,0xf0,0xb0,0xc9,
  1299. 0x64,0x92,0xc9,0x64,0x54,0x2a,0xf5,0x11,0xdd,0x43,0x3,0x1e,0xaf,0xfe,0xad,0xcf,
  1300. 0x96,0xff,0x1,0x8f,0x51,0x7f,0x1,0xbd,0x2,0xcf,0x3e,0xa2,0x82,0x47,0x14,0x0,
  1301. 0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
  1302. // E:/vs/occQt-master/occQt-master/Resources/cone.png
  1303. 0x0,0x0,0x5,0xde,
  1304. 0x89,
  1305. 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
  1306. 0x0,0x0,0x20,0x0,0x0,0x0,0x20,0x8,0x2,0x0,0x0,0x0,0xfc,0x18,0xed,0xa3,
  1307. 0x0,0x0,0x0,0x6,0x62,0x4b,0x47,0x44,0x0,0xff,0x0,0xff,0x0,0xff,0xa0,0xbd,
  1308. 0xa7,0x93,0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xe,0xc4,0x0,0x0,
  1309. 0xe,0xc4,0x1,0x95,0x2b,0xe,0x1b,0x0,0x0,0x5,0x7e,0x49,0x44,0x41,0x54,0x48,
  1310. 0x89,0xb5,0x96,0xdd,0x6f,0x14,0x65,0x14,0xc6,0xcf,0xfb,0x4e,0x3b,0x3b,0xbb,0x3b,
  1311. 0xcb,0xb6,0xdb,0x6e,0xcb,0x62,0x6b,0x62,0xb,0xc4,0x2a,0x49,0x29,0xa9,0x20,0xbd,
  1312. 0x11,0x5a,0xd1,0x14,0x29,0xd6,0x40,0x41,0x14,0x4a,0x1a,0x21,0x5,0x3f,0xfe,0x0,
  1313. 0xbd,0x30,0x91,0x82,0xf6,0x82,0x20,0x12,0xf9,0x10,0xa,0x2a,0x4d,0x4a,0x50,0x42,
  1314. 0x10,0xd1,0x48,0x63,0x6d,0x28,0x29,0x51,0x1,0x15,0x5,0xb7,0xac,0xb4,0x85,0xa6,
  1315. 0xdb,0xa5,0x9f,0xdb,0x76,0x77,0x67,0x67,0x66,0x67,0xde,0xe3,0xc5,0xec,0x6c,0x5b,
  1316. 0x2c,0x74,0x31,0x61,0x2e,0x66,0x33,0x17,0xef,0xf9,0x3d,0xe7,0x79,0xce,0x79,0xb3,
  1317. 0x4,0x11,0xe1,0x51,0x3e,0xf4,0x91,0x56,0x7f,0x38,0x0,0x22,0x5e,0xbf,0x7e,0x7d,
  1318. 0x60,0x60,0xe0,0xe1,0x8,0x98,0xf4,0xd3,0xdb,0xeb,0xdf,0xb8,0xf9,0x8d,0xf2,0x95,
  1319. 0x95,0xa1,0x50,0x28,0xf9,0x53,0x24,0xc9,0xc,0x74,0x5d,0xff,0x60,0xc7,0xce,0x25,
  1320. 0xcf,0x2e,0x55,0x55,0xf5,0x97,0x9f,0x2f,0xed,0xda,0x59,0xc7,0x71,0x5c,0x32,0x7,
  1321. 0x93,0xb2,0x8,0x11,0x2f,0xb4,0xb5,0x85,0x23,0xd1,0xb2,0xe5,0xcf,0xad,0x78,0xbe,
  1322. 0xb4,0xd7,0x7f,0xb7,0xbd,0xbd,0x3d,0xd9,0xe9,0x48,0xa6,0xcd,0xa1,0xa1,0xa1,0xf2,
  1323. 0x97,0x2a,0x7b,0xfd,0x1,0x4d,0xd3,0x46,0x47,0xc7,0xbd,0x1d,0xbe,0xda,0xed,0x6f,
  1324. 0x7,0x2,0x81,0x64,0xce,0xce,0xdc,0x81,0xae,0xeb,0xfb,0xf,0x1c,0xaa,0xaa,0x5a,
  1325. 0x9b,0x9d,0xe5,0x46,0x4,0x4d,0x67,0xd9,0xd9,0xd9,0x8b,0x17,0x3f,0xd3,0x70,0xf4,
  1326. 0x98,0xae,0xeb,0x33,0x1e,0x9f,0x1,0x80,0x88,0xed,0xed,0xed,0x7f,0x7b,0x6f,0x56,
  1327. 0xad,0x7d,0x85,0x10,0xd0,0x34,0xd,0x1,0x19,0x62,0xc5,0xaa,0x55,0x37,0xbc,0xff,
  1328. 0xb4,0xb4,0xb4,0xcc,0x6c,0xd4,0x83,0x1b,0xc,0x6,0x83,0x1b,0xab,0x6b,0x2e,0x5f,
  1329. 0xb9,0x16,0x8b,0xc5,0x34,0x4d,0xf,0x85,0x23,0x3,0x83,0x23,0x83,0xc3,0xc1,0x91,
  1330. 0xe0,0x98,0xb7,0xc3,0xb7,0x71,0x53,0x8d,0xdf,0xdf,0xf7,0xff,0x2d,0xd2,0x75,0x7d,
  1331. 0xcf,0xc7,0x9f,0x14,0x2e,0x2c,0x9a,0x37,0xef,0x9,0x20,0x4,0x8,0xa8,0x6a,0xc,
  1332. 0x1,0xd,0x51,0x1e,0x8f,0xa7,0xa4,0xa4,0xe4,0xf0,0x91,0x86,0x7,0x1b,0x75,0x5f,
  1333. 0x0,0x22,0xb6,0xb6,0xb6,0x76,0xf8,0x3a,0x57,0x57,0x54,0xd8,0xac,0x56,0x2,0x84,
  1334. 0x0,0xa8,0x31,0xd,0x10,0xc,0x57,0x10,0xb1,0xaa,0x6a,0xcd,0xc8,0x48,0xf0,0x42,
  1335. 0x5b,0xdb,0x3,0x8c,0xba,0x2f,0x20,0x10,0xb8,0x7b,0xbc,0xf1,0xc4,0xd6,0xad,0x5b,
  1336. 0xd3,0xd3,0x9c,0x84,0x10,0x62,0xc8,0x47,0x64,0xc,0xd,0x5f,0x1,0x90,0xe7,0xf9,
  1337. 0x37,0xb7,0x6f,0x3b,0xd2,0xf0,0x45,0x2c,0x16,0x7b,0x38,0x80,0xae,0xeb,0xc7,0x1b,
  1338. 0x1b,0x9f,0x7c,0x6a,0xc1,0xe3,0xb9,0xb9,0x76,0xd1,0x4a,0x8,0x1,0x0,0x45,0x8d,
  1339. 0x21,0x43,0x4,0x64,0xf1,0xe,0x0,0x10,0x73,0x72,0x73,0x4a,0x96,0x2e,0xad,0xab,
  1340. 0xdb,0x75,0x3f,0xa3,0xa6,0x1,0x20,0xe2,0xaf,0x97,0x2f,0xfb,0x6e,0xdd,0x5e,0x59,
  1341. 0x5e,0x2e,0x8a,0x36,0x3e,0x25,0x95,0x10,0x0,0x98,0x8,0xc0,0x1c,0xc,0x40,0x0,
  1342. 0x40,0xa8,0xa9,0xa9,0xfe,0xfd,0xda,0xd,0xaf,0xd7,0x3b,0xad,0x51,0xd3,0x0,0x34,
  1343. 0x4d,0x3b,0x78,0xa8,0x61,0xcd,0x9a,0xb5,0xa9,0x7c,0xaa,0x43,0xb4,0x13,0x42,0x0,
  1344. 0x8,0x0,0x28,0x8a,0x8a,0x8,0xc,0x1,0xd,0xf9,0x10,0xa7,0x50,0x42,0xea,0xeb,
  1345. 0xeb,0x3e,0x3b,0x7c,0x74,0x74,0x74,0x74,0x66,0x0,0x63,0x6c,0xff,0x81,0x83,0xb3,
  1346. 0x67,0x7b,0x72,0x72,0x72,0x4,0x8b,0xc5,0x66,0xb5,0x18,0xf5,0x15,0x45,0x65,0x88,
  1347. 0x88,0x2c,0x51,0x17,0xe3,0x10,0x40,0x80,0xb9,0x79,0x79,0xb3,0x3d,0x73,0xbe,0xfa,
  1348. 0xfa,0x14,0x63,0x6c,0x6,0x40,0x4f,0x4f,0xcf,0xd9,0x73,0xe7,0xab,0xaa,0xd6,0x11,
  1349. 0x42,0x9c,0x4e,0x91,0x18,0xf9,0x22,0xc8,0x8a,0x1a,0x2f,0x1c,0x6f,0x21,0x6e,0xa6,
  1350. 0xb9,0x48,0xb0,0x7d,0xdb,0x96,0x2b,0x57,0xff,0xf0,0xf9,0x7c,0xf7,0x18,0x35,0x5,
  1351. 0x20,0x49,0xd2,0xee,0x3d,0x7b,0x6b,0x6b,0x6b,0x53,0x79,0x9e,0xe3,0x88,0x73,0x96,
  1352. 0x68,0xc4,0xb,0x80,0x26,0xc0,0x2c,0x69,0xd6,0x45,0x4,0x40,0x40,0x40,0xbb,0x5d,
  1353. 0xdc,0xb2,0xa5,0x66,0xf7,0x9e,0xbd,0x9a,0xa6,0x4d,0xf,0x60,0x8c,0x9d,0xf9,0xe6,
  1354. 0x2c,0x21,0x29,0xf3,0xe7,0xcf,0x7,0x0,0x57,0x9a,0x93,0x1a,0xf2,0x1,0x30,0x1e,
  1355. 0x0,0x8b,0x57,0x36,0x9d,0x1,0x63,0xe9,0xcc,0xd5,0x2b,0x2a,0x2c,0xb4,0xf0,0x42,
  1356. 0x53,0xd3,0x89,0xc9,0x46,0x4d,0x0,0xfc,0x7d,0x7d,0xdf,0x9e,0xfb,0x61,0xdd,0xfa,
  1357. 0x57,0xd,0x5b,0x9c,0x4e,0x87,0x29,0x1f,0x54,0x25,0xa6,0x33,0x66,0x1a,0x8f,0x66,
  1358. 0xa,0x90,0x18,0x24,0x23,0xd,0x42,0xc8,0x87,0xbb,0x76,0xb4,0xb4,0xb6,0x75,0x75,
  1359. 0x75,0xdd,0xb,0xd0,0x34,0x6d,0xdf,0xbe,0x4f,0x97,0x2d,0x2f,0x15,0x45,0x11,0x0,
  1360. 0xd2,0x9c,0xe,0x9e,0x4f,0x35,0xe6,0x7,0x11,0xa2,0xb2,0x62,0xa8,0x8f,0x8b,0x86,
  1361. 0x38,0x65,0x72,0xe0,0xc6,0x8f,0x28,0x8a,0xaf,0x6d,0x58,0x7f,0xec,0xf3,0x2f,0x13,
  1362. 0x46,0x51,0x30,0x6f,0x85,0xdb,0x3d,0xfe,0xe2,0xe2,0x62,0x43,0x7e,0x9a,0xd3,0x41,
  1363. 0x4d,0xf7,0x1,0x50,0x96,0xe5,0x89,0xdb,0x2b,0x61,0xa,0x24,0xee,0xc,0xd3,0x2c,
  1364. 0x0,0x0,0x2c,0x2b,0x5d,0x16,0x8e,0x44,0xdb,0x2e,0x5e,0x34,0x14,0x51,0x0,0x8,
  1365. 0x6,0x83,0x8d,0x4d,0x27,0x37,0x6d,0xaa,0xa6,0x94,0x2,0x80,0x55,0xb0,0xd8,0xed,
  1366. 0x56,0x92,0x8,0x0,0x41,0x8a,0x2a,0x66,0xc0,0x89,0xd,0x98,0x88,0x7a,0x4a,0x1b,
  1367. 0x8,0x5c,0x4a,0xca,0x3b,0x6f,0x6d,0x3b,0xde,0x78,0xc2,0xb8,0x3f,0x28,0x63,0xec,
  1368. 0xf4,0xe9,0x33,0x8c,0x61,0x6e,0x6e,0x2e,0x21,0x40,0x8,0x71,0xb9,0x9c,0xa6,0x7c,
  1369. 0x0,0x0,0x45,0x51,0x75,0xa6,0x4f,0x5b,0xce,0xc,0x3a,0x11,0x43,0x9c,0x9c,0x9f,
  1370. 0x9f,0x67,0xb7,0xd9,0xce,0x37,0x37,0x23,0x22,0xd5,0x75,0x9d,0x72,0x34,0x3f,0x7f,
  1371. 0x1e,0x0,0x0,0x90,0x14,0x8e,0x4b,0x9b,0xe5,0x80,0x49,0xf2,0xa3,0xb2,0x6c,0x5c,
  1372. 0x41,0xff,0x49,0x15,0x12,0xb2,0x27,0x72,0x1,0x40,0x4,0x4a,0x69,0xa6,0x3b,0xc3,
  1373. 0xef,0xef,0xd3,0x75,0x9d,0x22,0xe2,0xdc,0xfc,0x3c,0x5f,0x87,0x77,0x6c,0x6c,0x8c,
  1374. 0x12,0xe2,0x72,0x39,0x49,0xc2,0x7e,0x44,0x0,0x94,0x24,0x39,0xe1,0xfb,0x94,0x54,
  1375. 0x8d,0x61,0x35,0x63,0x98,0x8c,0x1b,0x18,0x1c,0xfc,0xee,0xfb,0xe6,0x17,0x5f,0x58,
  1376. 0x81,0x88,0x94,0xe3,0xb8,0x82,0x82,0x82,0x25,0x8b,0x8b,0xea,0xeb,0x3f,0xba,0xdb,
  1377. 0x1f,0x10,0x2c,0x3c,0x1,0x92,0x18,0x50,0x44,0x88,0x48,0xd1,0xf8,0x8,0xe1,0xe4,
  1378. 0x54,0x27,0x51,0x26,0xc6,0x9,0x10,0xf1,0xda,0x9f,0x7f,0xbd,0xfb,0xde,0xfb,0x35,
  1379. 0x9b,0x37,0x38,0x1c,0xe,0x8e,0xe3,0x8,0x63,0x4c,0x96,0xe5,0xfe,0xfe,0xfe,0xe6,
  1380. 0xe6,0xe6,0xd6,0xb6,0x4b,0xf9,0x79,0xf9,0x9b,0xab,0x5f,0x7f,0x6c,0x8e,0xc7,0x62,
  1381. 0xe1,0x29,0xa5,0x8a,0xa2,0x76,0x76,0xf7,0x2,0x1,0x0,0xc2,0x51,0xc2,0x71,0x94,
  1382. 0x52,0xca,0x71,0xf1,0x17,0xc7,0x71,0x1c,0x67,0x7c,0x52,0x42,0xc8,0xad,0xce,0xce,
  1383. 0x93,0x27,0x4f,0xf9,0x7c,0x37,0x5f,0xae,0x58,0x59,0x56,0x56,0x9a,0x95,0x95,0x25,
  1384. 0x8,0x2,0x41,0x44,0x83,0x31,0x3c,0x3c,0xdc,0xdd,0xdd,0xfd,0x63,0xcb,0x4f,0x9d,
  1385. 0x5d,0x77,0xdc,0xee,0xcc,0x45,0x45,0x8b,0x16,0x16,0x15,0xba,0x5c,0xae,0x50,0x58,
  1386. 0xd2,0x34,0x46,0x9,0x70,0x89,0xc2,0x34,0x5e,0x91,0xa3,0x44,0xd3,0xb5,0xae,0xee,
  1387. 0x3b,0x1d,0x5e,0x6f,0x6b,0xeb,0x85,0x50,0x78,0x7c,0x49,0xf1,0xa2,0xca,0xca,0xd5,
  1388. 0x6e,0xb7,0xdb,0xe5,0x72,0x9,0x82,0x40,0x8,0x21,0xe6,0xf0,0xa1,0xaa,0xaa,0xe1,
  1389. 0x70,0x38,0x18,0xc,0x8e,0x8f,0x8f,0x5f,0xbd,0xfa,0x5b,0xc7,0x4d,0x5f,0xaf,0x3f,
  1390. 0x30,0x1e,0x8a,0xb8,0x5c,0x69,0x16,0xde,0x92,0x95,0x9d,0x6d,0xb1,0x8,0x82,0x20,
  1391. 0x70,0x1c,0xa7,0xaa,0x4a,0x34,0x1a,0x19,0x18,0x18,0xa,0x8d,0x8f,0x49,0x91,0xa8,
  1392. 0x28,0xda,0xb2,0xb3,0xdc,0x4f,0x2f,0x28,0x58,0x58,0x58,0x98,0x9e,0x9e,0x9e,0x9e,
  1393. 0x9e,0x2e,0x8a,0x62,0x6a,0xaa,0xb1,0xa7,0x30,0xe5,0xaf,0xa3,0xae,0xeb,0xaa,0xaa,
  1394. 0xca,0xb2,0x2c,0x49,0x52,0x38,0x1c,0x96,0x24,0x49,0x55,0xd5,0x9e,0x9e,0x1e,0xbf,
  1395. 0xbf,0x4f,0x51,0xd5,0x48,0x38,0x2c,0xcb,0xa,0x2,0x58,0x2c,0xbc,0x55,0x10,0x32,
  1396. 0x32,0x32,0x32,0xdd,0x99,0x73,0x3c,0x1e,0xbb,0xdd,0x6e,0xb5,0x5a,0x8d,0xb7,0xcd,
  1397. 0x66,0xe3,0x79,0xde,0xd8,0x27,0xe3,0xf9,0x17,0xb5,0x26,0xa2,0x25,0x1,0x3e,0x8,
  1398. 0x93,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
  1399. // E:/vs/occQt-master/occQt-master/Resources/chamfer.png
  1400. 0x0,0x0,0x3,0x3e,
  1401. 0x89,
  1402. 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
  1403. 0x0,0x0,0x20,0x0,0x0,0x0,0x20,0x8,0x2,0x0,0x0,0x0,0xfc,0x18,0xed,0xa3,
  1404. 0x0,0x0,0x0,0x6,0x62,0x4b,0x47,0x44,0x0,0xff,0x0,0xff,0x0,0xff,0xa0,0xbd,
  1405. 0xa7,0x93,0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xe,0xc4,0x0,0x0,
  1406. 0xe,0xc4,0x1,0x95,0x2b,0xe,0x1b,0x0,0x0,0x2,0xde,0x49,0x44,0x41,0x54,0x48,
  1407. 0x89,0xb5,0x96,0xcb,0x4f,0x13,0x51,0x14,0x87,0xcf,0x99,0xe9,0xb4,0x40,0x45,0xb,
  1408. 0x99,0x62,0x6c,0xc,0x89,0x9,0x5d,0x92,0x74,0x27,0x8f,0x22,0xb8,0x20,0xa1,0x5a,
  1409. 0x20,0xb1,0x80,0xc4,0x1d,0x6e,0x6a,0x58,0xc8,0x82,0x85,0x56,0x44,0xad,0x81,0x34,
  1410. 0x3e,0x58,0xf8,0xf,0x90,0xe0,0x6b,0x25,0x31,0x82,0x8f,0x14,0x12,0x1f,0x80,0x88,
  1411. 0xba,0x56,0x31,0x41,0xc1,0x47,0xb4,0x2e,0x88,0xc6,0x84,0x4c,0x33,0x13,0xe6,0xba,
  1412. 0x98,0x32,0x9d,0x3b,0xdc,0xc2,0xcc,0x18,0x4e,0x6e,0xce,0x62,0xe6,0xce,0xef,0x3b,
  1413. 0xcf,0x64,0x90,0x10,0x2,0x3b,0x69,0xdc,0x8e,0xaa,0x3,0x80,0xcb,0xca,0x25,0x45,
  1414. 0x51,0x7c,0xf1,0xf4,0x9,0x77,0xfa,0xdd,0xe2,0x12,0xf3,0xc2,0x8b,0xe9,0x9,0x41,
  1415. 0x10,0xd8,0x1f,0x93,0xed,0x4c,0x96,0xe5,0x92,0x9e,0xc9,0x1f,0x7f,0xb3,0x25,0x3d,
  1416. 0x93,0x85,0xee,0xd4,0x36,0xb6,0xc8,0xb2,0xcc,0x7c,0xb5,0xd,0x40,0x53,0xbf,0xff,
  1417. 0x21,0x33,0xfe,0xfe,0xa7,0x33,0xc6,0x56,0x0,0x4d,0x7d,0xf2,0xe3,0xaf,0x7,0x8b,
  1418. 0x19,0xc7,0x8c,0x82,0x4d,0xd6,0xea,0x3e,0x7e,0xee,0x20,0x87,0xc8,0x21,0x72,0x8,
  1419. 0x1c,0xe2,0xab,0xef,0xbf,0x97,0x6e,0x34,0x7b,0x4f,0x3e,0x64,0x7e,0x32,0xff,0xfc,
  1420. 0x49,0x63,0x73,0x9b,0xa2,0x28,0xc6,0x87,0x48,0x58,0x63,0xaa,0xa9,0x4f,0x9c,0xaf,
  1421. 0x51,0x9,0xa8,0x84,0xd0,0x9e,0xd4,0xec,0x2f,0xab,0xea,0x9b,0x5e,0x1b,0x8d,0x32,
  1422. 0x31,0x75,0x4d,0x11,0x63,0xcf,0x19,0x19,0x68,0xea,0x8f,0x2f,0xd4,0xea,0x81,0xd3,
  1423. 0x1e,0x17,0xec,0xe4,0x61,0x6,0xc8,0xb2,0xec,0x8b,0xa7,0xa7,0x2e,0xd5,0x15,0x50,
  1424. 0xd7,0x19,0x7f,0x2c,0x32,0xa8,0x3d,0x50,0x14,0xa5,0xec,0xd4,0xd4,0xd3,0xcb,0xf5,
  1425. 0x2a,0x1,0x0,0x2,0x80,0x5b,0xf8,0xaa,0xbe,0xe9,0xb1,0x98,0xf7,0xde,0xa3,0x67,
  1426. 0x9b,0x1,0xfb,0xf6,0x8a,0x0,0x20,0x49,0x92,0x20,0x8,0x2e,0xa3,0xba,0x2f,0x9e,
  1427. 0x9e,0x19,0x6a,0x50,0xf3,0x5d,0x21,0x8,0x88,0x2c,0xdf,0x7d,0xe5,0xed,0x58,0xcc,
  1428. 0xcb,0xc,0xdf,0x28,0x98,0xcf,0x40,0x53,0x9f,0x1b,0x6e,0x0,0x0,0x83,0x10,0xa8,
  1429. 0x1b,0x24,0x63,0xec,0xb1,0xd4,0x9b,0x6d,0xd5,0x75,0x73,0x99,0xd4,0x1,0x0,0x11,
  1430. 0x38,0x73,0x41,0x74,0x23,0xed,0xc3,0xaf,0xad,0xab,0x83,0xd6,0xe4,0x6c,0x36,0x7b,
  1431. 0x4c,0x9d,0x8,0xf,0xcc,0xea,0x4f,0x11,0x81,0xe3,0x90,0xe3,0xcc,0xbe,0x75,0x68,
  1432. 0xc1,0x96,0x7a,0xe,0xb0,0xbe,0xbe,0xfe,0x69,0xe5,0xdb,0xe7,0xab,0xf5,0x14,0x3,
  1433. 0xcc,0xc3,0x13,0x49,0xce,0xdb,0x55,0xcf,0x1,0x54,0x55,0xd5,0x14,0x97,0xb,0x33,
  1434. 0x9a,0x2f,0xbe,0xbc,0xd9,0xb1,0xb,0x2d,0x9a,0x9,0x90,0x5b,0x66,0x44,0x40,0x5c,
  1435. 0xbe,0x16,0x36,0x31,0x78,0xc4,0xc3,0x83,0x73,0xb7,0x3a,0x4b,0xad,0xaa,0xd3,0x88,
  1436. 0xfc,0xa2,0xe9,0xef,0x56,0xae,0x37,0x18,0x19,0xe1,0x81,0xd9,0xdb,0x5d,0xa5,0x88,
  1437. 0x60,0xfd,0x18,0xc7,0xc2,0x8,0xc8,0x9f,0x2f,0x23,0x39,0x46,0x78,0x60,0xf6,0xce,
  1438. 0xf1,0xdd,0xb6,0x62,0x47,0x44,0x34,0x10,0xf2,0x8b,0x86,0xd4,0x38,0xc2,0xd7,0x91,
  1439. 0x43,0x95,0xfd,0x33,0x77,0xbb,0xf7,0x58,0x6e,0x67,0xde,0x90,0x99,0x1,0xa0,0xf9,
  1440. 0xac,0x8d,0x46,0xed,0x14,0x86,0x3a,0xac,0xc,0xa8,0xe6,0x33,0x62,0xb1,0x93,0x2,
  1441. 0x9d,0x81,0xcb,0xe5,0x1a,0x3c,0x73,0x3a,0xda,0xde,0xb5,0x39,0xa,0xdb,0xd5,0x67,
  1442. 0x4e,0x51,0x71,0x71,0x71,0x75,0x75,0x75,0xa2,0xbf,0xf7,0x68,0x7b,0x27,0x35,0xc,
  1443. 0x8e,0x1,0x40,0x3,0x4,0x41,0x10,0x45,0x31,0x14,0xa,0x25,0xfa,0x7b,0x8f,0xb4,
  1444. 0x75,0x1a,0xa3,0x70,0xd6,0x1,0x73,0x89,0x10,0xd1,0xe3,0xf1,0xf8,0xfd,0xfe,0x50,
  1445. 0x28,0x94,0x4a,0x9e,0x8d,0xb4,0x76,0x6c,0x34,0xda,0x71,0x89,0x68,0x80,0xce,0xa8,
  1446. 0xa8,0xa8,0x8,0x6,0x83,0xa9,0x64,0x22,0xd2,0x1a,0xcb,0x95,0xe8,0xbf,0xa7,0x88,
  1447. 0xda,0x64,0x8f,0xc7,0x23,0x8a,0x62,0x30,0x58,0x95,0x4a,0x26,0x5a,0xa2,0x31,0xc7,
  1448. 0x19,0x0,0x73,0x4c,0x35,0x73,0xbb,0xdd,0xa2,0x28,0x2,0x40,0x2a,0x99,0xa8,0x6b,
  1449. 0x8a,0x58,0x1e,0x4c,0xb3,0x1d,0xa8,0xc,0xe4,0xba,0xc8,0xfc,0x6d,0x91,0x65,0x79,
  1450. 0x75,0x75,0x35,0x93,0xc9,0x48,0x92,0xe4,0x40,0x9d,0xe7,0xf9,0xf2,0xf2,0xf2,0x40,
  1451. 0x20,0xe0,0xf5,0x7a,0xd9,0x0,0x0,0x50,0x14,0x45,0x92,0x24,0xd3,0x5f,0x94,0x45,
  1452. 0xd3,0xaa,0x5d,0x54,0x54,0xc4,0xf3,0xfc,0x3f,0x28,0xc7,0x14,0xa0,0xb3,0x73,0x16,
  1453. 0x64,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
  1454. // E:/vs/occQt-master/occQt-master/Resources/cut.png
  1455. 0x0,0x0,0x3,0x8e,
  1456. 0x89,
  1457. 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
  1458. 0x0,0x0,0x20,0x0,0x0,0x0,0x20,0x8,0x2,0x0,0x0,0x0,0xfc,0x18,0xed,0xa3,
  1459. 0x0,0x0,0x0,0x6,0x62,0x4b,0x47,0x44,0x0,0xff,0x0,0xff,0x0,0xff,0xa0,0xbd,
  1460. 0xa7,0x93,0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xe,0xc4,0x0,0x0,
  1461. 0xe,0xc4,0x1,0x95,0x2b,0xe,0x1b,0x0,0x0,0x3,0x2e,0x49,0x44,0x41,0x54,0x48,
  1462. 0x89,0x95,0x56,0x31,0xae,0x1d,0x37,0xc,0x1c,0x4a,0x5c,0x9f,0xe5,0xb7,0xbf,0x35,
  1463. 0x2,0xa4,0x4b,0x95,0x6b,0xa4,0x32,0x72,0x5,0x1f,0xc2,0x41,0xe,0xe2,0xc0,0x80,
  1464. 0x81,0x74,0xb9,0x48,0xfa,0xd4,0xe9,0x2c,0x91,0x93,0x82,0x12,0x97,0x6f,0xf7,0xfd,
  1465. 0x20,0x51,0xa1,0x27,0x71,0x25,0x8a,0x1c,0xe,0xc9,0x27,0xaf,0xaf,0xaf,0xee,0xde,
  1466. 0x5a,0x3,0x70,0x59,0xfc,0xfb,0xf6,0x3f,0x9e,0x6f,0xee,0x8e,0x3d,0x72,0xfb,0x54,
  1467. 0x5d,0x8c,0xff,0x7b,0x5e,0xeb,0x67,0x33,0x8b,0x39,0xbe,0x91,0x4c,0x79,0x48,0x62,
  1468. 0x91,0x27,0x49,0x5e,0x4c,0x4c,0xdb,0x73,0xab,0xb1,0x27,0x39,0xe7,0xc,0x8d,0xee,
  1469. 0x2e,0x22,0x24,0xf3,0x5a,0xdd,0x8a,0xc8,0x9c,0x53,0x44,0xe2,0x98,0x88,0xa4,0x89,
  1470. 0xa1,0xf7,0xf2,0x86,0xc6,0x8a,0xa4,0x99,0x7d,0xf8,0xe5,0x77,0x92,0x40,0xaa,0x16,
  1471. 0x80,0x7b,0xc6,0xa3,0x10,0x22,0xed,0xd7,0x9f,0x7f,0xa8,0x40,0x3d,0x85,0x51,0x43,
  1472. 0x7b,0x78,0xf0,0xe7,0x5f,0x7f,0xf,0x73,0xd9,0xdf,0x8,0x80,0x10,0x1,0x9,0xd9,
  1473. 0xd2,0x5c,0xf7,0x86,0x4,0x4a,0xf2,0xf3,0x6d,0x68,0xf8,0x1e,0xe,0x7e,0x1b,0x63,
  1474. 0x38,0xc0,0x30,0x98,0x22,0xb2,0x1c,0x28,0x7a,0x53,0x72,0x34,0x98,0x99,0xaa,0xde,
  1475. 0xc1,0xac,0xb3,0xc6,0x4f,0xa0,0xf,0x92,0xbe,0x6d,0x6,0xd6,0x4d,0x6e,0x98,0xf6,
  1476. 0x62,0x1,0xd6,0x24,0xcc,0xa,0xce,0xa4,0x9e,0xbc,0x18,0xb3,0xa6,0x34,0x44,0x6e,
  1477. 0x26,0x2,0x20,0x4c,0x38,0x11,0xe7,0x46,0x9f,0x31,0x13,0x6c,0xbd,0x42,0x51,0xfd,
  1478. 0xb8,0x42,0x94,0xdf,0xdc,0xc,0xd8,0x4e,0x0,0xb1,0x48,0x88,0x49,0x17,0x20,0x63,
  1479. 0xe2,0xd5,0xcb,0xb7,0x87,0xd6,0xf8,0x70,0x69,0x7,0x7c,0x5b,0xec,0x84,0x80,0xee,
  1480. 0x80,0x60,0x23,0x7,0x6,0xed,0x26,0xa,0x83,0x2b,0xee,0x75,0xbb,0x3c,0xe0,0x8e,
  1481. 0x3,0xc9,0x93,0x93,0x2c,0xf3,0xe,0xfd,0x6,0x4b,0x48,0x64,0xc6,0x5e,0x12,0xa5,
  1482. 0x62,0xae,0x29,0xdd,0xfe,0xee,0x88,0x86,0x22,0x1,0x20,0xbf,0x7d,0xfc,0x51,0x44,
  1483. 0x5a,0x6b,0x69,0x57,0xef,0xbd,0xf7,0x7e,0x1c,0x47,0xc6,0x36,0xe4,0x97,0x84,0x10,
  1484. 0x11,0xad,0x21,0xa2,0x9b,0x39,0xe0,0xe,0x40,0x9a,0x0,0x70,0xe3,0x71,0xf4,0xe3,
  1485. 0x38,0x7a,0xef,0xc5,0x8,0xb4,0xd6,0xc2,0xfc,0x39,0x67,0xad,0x25,0xa1,0x34,0x7,
  1486. 0x32,0xd1,0xd6,0x33,0x4e,0x9a,0x85,0xf,0x3e,0xb1,0x48,0x64,0xcb,0xde,0xcf,0x5f,
  1487. 0xbe,0x6a,0xef,0xe1,0x56,0xeb,0x7a,0x1c,0xaa,0xaa,0xf1,0xf6,0x3d,0xb6,0xdf,0x7f,
  1488. 0xf7,0x3e,0x6c,0xd2,0x2a,0x35,0x9f,0x6e,0x6,0x11,0x38,0x1,0x9,0xde,0x1b,0x16,
  1489. 0x8b,0x8e,0x77,0xef,0x54,0x35,0x11,0x25,0x9a,0x39,0x38,0x26,0xbf,0xcd,0x20,0x4a,
  1490. 0xa9,0x2a,0x8c,0x24,0x77,0xf7,0x13,0x22,0x92,0x34,0x4b,0x10,0x25,0xcf,0xca,0x9,
  1491. 0xb1,0x44,0x54,0x9,0xc8,0x2a,0x5f,0x66,0xac,0xb9,0xb2,0x8a,0x97,0xac,0x1c,0xec,
  1492. 0xbd,0x6b,0xb2,0xa,0x80,0xd9,0x74,0x3b,0xa3,0xb4,0xe2,0x89,0xe,0xc0,0xdd,0xcd,
  1493. 0x5c,0xc4,0x82,0x43,0x59,0x30,0x9e,0x14,0xc3,0xfd,0xc0,0xa2,0x69,0xd5,0x55,0xe2,
  1494. 0xbd,0xae,0x83,0x84,0xac,0xdb,0x23,0xd0,0xc3,0x45,0xd7,0x59,0xa6,0x78,0x56,0x46,
  1495. 0xc9,0x6a,0x71,0xd2,0x74,0x93,0x24,0xcb,0x71,0xa6,0xd4,0xba,0xe0,0x66,0xd6,0x5a,
  1496. 0x5a,0x73,0xcf,0xe1,0x24,0x71,0x4d,0x5e,0x4d,0x5f,0x44,0xe4,0x8f,0x4f,0x3f,0x8d,
  1497. 0x31,0x42,0x12,0x17,0x7a,0xef,0xc9,0x48,0x27,0xe7,0x18,0x0,0xd0,0x1a,0xdc,0x11,
  1498. 0xf1,0x88,0xc5,0x85,0xfe,0xbb,0x77,0x22,0x68,0x1a,0xf,0x6,0xdb,0xb2,0x7b,0x84,
  1499. 0x39,0x91,0x5c,0x0,0xcc,0x8c,0xee,0x33,0xee,0x47,0x64,0xcd,0x56,0x8,0xcc,0xc2,
  1500. 0x17,0x81,0x10,0x14,0x88,0xf8,0x2e,0x6e,0x95,0x45,0x99,0xa8,0x97,0xfa,0x1e,0xe7,
  1501. 0xe6,0x9c,0xee,0xee,0x3b,0xbd,0xef,0xb8,0xd7,0xd1,0xa,0x80,0xf,0xa5,0xe2,0x69,
  1502. 0x63,0xca,0xde,0x6b,0x6e,0x1b,0x89,0x67,0xd4,0x1,0x92,0x5e,0x6c,0x67,0xce,0x6b,
  1503. 0x6d,0x40,0xe9,0x4d,0x42,0x94,0xa0,0x91,0x1c,0xe6,0xf4,0xbb,0xd2,0x73,0xa4,0xaa,
  1504. 0xd6,0xcf,0x3e,0xaa,0xb8,0xb1,0xe2,0x52,0x72,0x53,0x6e,0xd3,0x22,0x4b,0x1e,0x21,
  1505. 0x2a,0x77,0xf7,0x87,0xa,0xf2,0xd9,0x32,0x2b,0x79,0x73,0xae,0x3e,0x59,0xe6,0x79,
  1506. 0x45,0xa8,0x26,0xdd,0xe3,0xf9,0x50,0x7b,0xb6,0xec,0x7b,0xef,0xbe,0x20,0x30,0xc6,
  1507. 0x58,0x37,0xdf,0xd0,0x9f,0x1,0xbf,0xfe,0xb3,0xab,0x8,0xd6,0xf7,0x73,0x1b,0xcd,
  1508. 0xc0,0xcc,0x9d,0x37,0xf,0xde,0x8,0xc6,0xd9,0x8b,0x5e,0x5e,0x5e,0xee,0xe1,0xad,
  1509. 0x4f,0xee,0xa2,0x66,0x63,0x8c,0x39,0x67,0x2d,0xfd,0xf7,0x11,0xa6,0x44,0x19,0x57,
  1510. 0xd5,0xd6,0xda,0x43,0x3f,0xb8,0x80,0x98,0x23,0xfe,0x5d,0x45,0xe9,0xcf,0x3c,0xaf,
  1511. 0x4a,0x2b,0x41,0x32,0xff,0x63,0xab,0x17,0xce,0xe0,0x91,0xa6,0x27,0xdb,0x54,0x2f,
  1512. 0xea,0xde,0xfa,0xff,0x7a,0xe9,0xc9,0xff,0x0,0x59,0x86,0x9e,0xef,0x42,0xdf,0x2a,
  1513. 0x3f,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
  1514. // E:/vs/occQt-master/occQt-master/Resources/helix.png
  1515. 0x0,0x0,0x1,0x9c,
  1516. 0x89,
  1517. 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
  1518. 0x0,0x0,0x20,0x0,0x0,0x0,0x20,0x8,0x6,0x0,0x0,0x0,0x73,0x7a,0x7a,0xf4,
  1519. 0x0,0x0,0x0,0x1,0x73,0x52,0x47,0x42,0x0,0xae,0xce,0x1c,0xe9,0x0,0x0,0x0,
  1520. 0x4,0x67,0x41,0x4d,0x41,0x0,0x0,0xb1,0x8f,0xb,0xfc,0x61,0x5,0x0,0x0,0x0,
  1521. 0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xe,0xc4,0x0,0x0,0xe,0xc4,0x1,0x95,0x2b,
  1522. 0xe,0x1b,0x0,0x0,0x1,0x31,0x49,0x44,0x41,0x54,0x58,0x47,0xcd,0x97,0x51,0xe,
  1523. 0xc2,0x30,0xc,0x43,0x37,0xee,0x7f,0x67,0x58,0xa6,0x75,0xca,0x82,0x1d,0x27,0xdd,
  1524. 0x24,0x78,0x12,0x2,0xda,0xd4,0x71,0xbc,0x7e,0xc0,0xfa,0xde,0x58,0x7e,0x48,0xdb,
  1525. 0xc0,0xba,0xae,0xc7,0x27,0x4c,0x77,0x9e,0xb2,0x1,0xd5,0x38,0x52,0x35,0x22,0xd,
  1526. 0x74,0x1b,0x47,0x94,0x91,0xd7,0xf1,0xe,0xb9,0xdb,0xdc,0x30,0x8d,0x4c,0x7,0x1a,
  1527. 0x50,0x87,0x66,0x60,0x7a,0xf0,0x11,0xa8,0xe6,0x2c,0xd6,0x8a,0xe9,0x78,0xf6,0x2b,
  1528. 0x81,0x4c,0xc4,0xe,0xb3,0xe6,0x86,0xda,0x47,0x5c,0x12,0x50,0xcd,0x3d,0xa8,0xb6,
  1529. 0x52,0x63,0xf8,0xba,0xf4,0x12,0xe,0xfc,0x1,0x13,0x65,0xc2,0x71,0x3d,0x1a,0x42,
  1530. 0x9c,0x6,0x94,0xdb,0xac,0xb1,0xa7,0x52,0xe7,0xf7,0xd3,0x4,0xb2,0x9,0x6c,0xcf,
  1531. 0xbf,0x18,0xd9,0x9e,0xb1,0x1b,0xe8,0x38,0x36,0x90,0x68,0x5c,0xab,0x6a,0xd2,0x4,
  1532. 0x98,0xf3,0xce,0xb4,0xa3,0x49,0x76,0x46,0x5e,0x42,0x3f,0x9,0x6a,0x10,0x27,0xcd,
  1533. 0x9a,0x21,0xa4,0x1,0x86,0x6f,0x1c,0x4d,0x74,0x98,0x36,0xf0,0x14,0xd3,0x6,0x7c,
  1534. 0xd4,0xdd,0xd8,0x3d,0x2d,0x3,0xe8,0x79,0xa3,0x7b,0xd1,0x81,0x1a,0x18,0x42,0x77,
  1535. 0xa6,0x1b,0x67,0x33,0x53,0xbb,0x1,0xd5,0xc4,0xef,0x9b,0x18,0x12,0x64,0xeb,0x8c,
  1536. 0xa1,0x99,0x3e,0x82,0x4c,0x70,0x34,0x64,0x8d,0x2b,0xd3,0x1b,0xa7,0x81,0x4a,0xa,
  1537. 0xaa,0x66,0x50,0xad,0x33,0xe4,0x25,0x8c,0x13,0x64,0xe2,0xd1,0x24,0x9b,0xfe,0x52,
  1538. 0xb3,0x7d,0xb9,0x28,0x66,0x91,0x85,0x52,0x4a,0x47,0x43,0x26,0xe0,0x31,0xe1,0x4c,
  1539. 0x5c,0xed,0x23,0xa6,0x7e,0x13,0xce,0x82,0x12,0x84,0x9,0x54,0xa3,0xee,0xc0,0x34,
  1540. 0xff,0xfb,0x8f,0x89,0x61,0x2,0x4a,0x84,0x51,0x39,0x27,0x13,0x88,0xa8,0x44,0xba,
  1541. 0x66,0xdb,0x6,0x9e,0x65,0x59,0x3e,0x13,0xa3,0xd7,0x10,0xc4,0x88,0x4d,0xd2,0x0,
  1542. 0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
  1543. };
  1544. static const unsigned char qt_resource_name[] = {
  1545. // Resources
  1546. 0x0,0x9,
  1547. 0xa,0x6c,0x38,0x43,
  1548. 0x0,0x52,
  1549. 0x0,0x65,0x0,0x73,0x0,0x6f,0x0,0x75,0x0,0x72,0x0,0x63,0x0,0x65,0x0,0x73,
  1550. // fuse.png
  1551. 0x0,0x8,
  1552. 0xc,0x98,0x5a,0xe7,
  1553. 0x0,0x66,
  1554. 0x0,0x75,0x0,0x73,0x0,0x65,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
  1555. // box.png
  1556. 0x0,0x7,
  1557. 0x9,0x6b,0x57,0x87,
  1558. 0x0,0x62,
  1559. 0x0,0x6f,0x0,0x78,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
  1560. // fillet.png
  1561. 0x0,0xa,
  1562. 0x2,0xca,0xf7,0x27,
  1563. 0x0,0x66,
  1564. 0x0,0x69,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x74,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
  1565. // common.png
  1566. 0x0,0xa,
  1567. 0x4,0x6c,0x1b,0xc7,
  1568. 0x0,0x63,
  1569. 0x0,0x6f,0x0,0x6d,0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
  1570. // Zoom.png
  1571. 0x0,0x8,
  1572. 0x6,0x60,0x5b,0x67,
  1573. 0x0,0x5a,
  1574. 0x0,0x6f,0x0,0x6f,0x0,0x6d,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
  1575. // loft.png
  1576. 0x0,0x8,
  1577. 0x5,0xd7,0x59,0x27,
  1578. 0x0,0x6c,
  1579. 0x0,0x6f,0x0,0x66,0x0,0x74,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
  1580. // torus.png
  1581. 0x0,0x9,
  1582. 0x9,0xc6,0xa1,0x87,
  1583. 0x0,0x74,
  1584. 0x0,0x6f,0x0,0x72,0x0,0x75,0x0,0x73,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
  1585. // cylinder.png
  1586. 0x0,0xc,
  1587. 0x7,0xa5,0x37,0xc7,
  1588. 0x0,0x63,
  1589. 0x0,0x79,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
  1590. // lamp.png
  1591. 0x0,0x8,
  1592. 0x8,0x43,0x59,0x7,
  1593. 0x0,0x6c,
  1594. 0x0,0x61,0x0,0x6d,0x0,0x70,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
  1595. // Rotate.png
  1596. 0x0,0xa,
  1597. 0x8,0xaf,0x7a,0x7,
  1598. 0x0,0x52,
  1599. 0x0,0x6f,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
  1600. // FitAll.png
  1601. 0x0,0xa,
  1602. 0x8,0x26,0xf6,0x47,
  1603. 0x0,0x46,
  1604. 0x0,0x69,0x0,0x74,0x0,0x41,0x0,0x6c,0x0,0x6c,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
  1605. // revolve.png
  1606. 0x0,0xb,
  1607. 0x3,0x39,0xcd,0x87,
  1608. 0x0,0x72,
  1609. 0x0,0x65,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x76,0x0,0x65,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
  1610. // sphere.png
  1611. 0x0,0xa,
  1612. 0xc,0x8b,0x1a,0x87,
  1613. 0x0,0x73,
  1614. 0x0,0x70,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
  1615. // extrude.png
  1616. 0x0,0xb,
  1617. 0xb,0x81,0xa0,0x67,
  1618. 0x0,0x65,
  1619. 0x0,0x78,0x0,0x74,0x0,0x72,0x0,0x75,0x0,0x64,0x0,0x65,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
  1620. // Home.png
  1621. 0x0,0x8,
  1622. 0x6,0x38,0x5e,0xa7,
  1623. 0x0,0x48,
  1624. 0x0,0x6f,0x0,0x6d,0x0,0x65,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
  1625. // Pan.png
  1626. 0x0,0x7,
  1627. 0x6,0x81,0x57,0xe7,
  1628. 0x0,0x50,
  1629. 0x0,0x61,0x0,0x6e,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
  1630. // cone.png
  1631. 0x0,0x8,
  1632. 0x6,0x48,0x5a,0x7,
  1633. 0x0,0x63,
  1634. 0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
  1635. // chamfer.png
  1636. 0x0,0xb,
  1637. 0xc,0x16,0x87,0x27,
  1638. 0x0,0x63,
  1639. 0x0,0x68,0x0,0x61,0x0,0x6d,0x0,0x66,0x0,0x65,0x0,0x72,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
  1640. // cut.png
  1641. 0x0,0x7,
  1642. 0xa,0xc7,0x57,0x87,
  1643. 0x0,0x63,
  1644. 0x0,0x75,0x0,0x74,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
  1645. // helix.png
  1646. 0x0,0x9,
  1647. 0x3,0xb,0x8a,0xc7,
  1648. 0x0,0x68,
  1649. 0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x78,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
  1650. };
  1651. static const unsigned char qt_resource_struct[] = {
  1652. // :
  1653. 0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,
  1654. 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
  1655. // :/Resources
  1656. 0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x2,
  1657. 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
  1658. // :/Resources/fillet.png
  1659. 0x0,0x0,0x0,0x42,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x5,0xed,
  1660. 0x0,0x0,0x1,0x90,0x1f,0x9e,0x7,0x87,
  1661. // :/Resources/helix.png
  1662. 0x0,0x0,0x1,0xe4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x5a,0x6e,
  1663. 0x0,0x0,0x1,0x90,0x1f,0x9e,0x7,0xa6,
  1664. // :/Resources/revolve.png
  1665. 0x0,0x0,0x1,0x22,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x34,0xba,
  1666. 0x0,0x0,0x1,0x90,0x1f,0x9e,0x7,0xd5,
  1667. // :/Resources/common.png
  1668. 0x0,0x0,0x0,0x5c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x9,0x92,
  1669. 0x0,0x0,0x1,0x90,0x1f,0x9e,0x7,0x39,
  1670. // :/Resources/loft.png
  1671. 0x0,0x0,0x0,0x8c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x11,0xd8,
  1672. 0x0,0x0,0x1,0x90,0x1f,0x9e,0x7,0xc5,
  1673. // :/Resources/Home.png
  1674. 0x0,0x0,0x1,0x74,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x44,0x4d,
  1675. 0x0,0x0,0x1,0x90,0x1f,0x9e,0x6,0xdb,
  1676. // :/Resources/cone.png
  1677. 0x0,0x0,0x1,0x9e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x4d,0xb8,
  1678. 0x0,0x0,0x1,0x90,0x1f,0x9e,0x7,0x48,
  1679. // :/Resources/Zoom.png
  1680. 0x0,0x0,0x0,0x76,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xd,0x52,
  1681. 0x0,0x0,0x1,0x90,0x1f,0x9e,0x7,0xa,
  1682. // :/Resources/Pan.png
  1683. 0x0,0x0,0x1,0x8a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x49,0x18,
  1684. 0x0,0x0,0x1,0x90,0x1f,0x9e,0x6,0xea,
  1685. // :/Resources/cylinder.png
  1686. 0x0,0x0,0x0,0xba,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x20,0xf4,
  1687. 0x0,0x0,0x1,0x90,0x1f,0x9e,0x7,0x67,
  1688. // :/Resources/FitAll.png
  1689. 0x0,0x0,0x1,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x2f,0xbc,
  1690. 0x0,0x0,0x1,0x90,0x1f,0x9e,0x6,0xcb,
  1691. // :/Resources/lamp.png
  1692. 0x0,0x0,0x0,0xd8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x24,0xe4,
  1693. 0x0,0x0,0x1,0x90,0x1f,0x9e,0x7,0xb6,
  1694. // :/Resources/Rotate.png
  1695. 0x0,0x0,0x0,0xee,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x2b,0x31,
  1696. 0x0,0x0,0x1,0x90,0x1f,0x9e,0x6,0xfa,
  1697. // :/Resources/box.png
  1698. 0x0,0x0,0x0,0x2e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x3,0xb1,
  1699. 0x0,0x0,0x1,0x90,0x1f,0x9e,0x7,0x19,
  1700. // :/Resources/torus.png
  1701. 0x0,0x0,0x0,0xa2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x18,0x70,
  1702. 0x0,0x0,0x1,0x90,0x1f,0x9e,0x7,0xe4,
  1703. // :/Resources/cut.png
  1704. 0x0,0x0,0x1,0xd0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x56,0xdc,
  1705. 0x0,0x0,0x1,0x90,0x1f,0x9e,0x7,0x58,
  1706. // :/Resources/extrude.png
  1707. 0x0,0x0,0x1,0x58,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x40,0xfe,
  1708. 0x0,0x0,0x1,0x90,0x1f,0x9e,0x7,0x77,
  1709. // :/Resources/chamfer.png
  1710. 0x0,0x0,0x1,0xb4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x53,0x9a,
  1711. 0x0,0x0,0x1,0x90,0x1f,0x9e,0x7,0x29,
  1712. // :/Resources/sphere.png
  1713. 0x0,0x0,0x1,0x3e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x3a,0xee,
  1714. 0x0,0x0,0x1,0x90,0x1f,0x9e,0x7,0xe4,
  1715. // :/Resources/fuse.png
  1716. 0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,
  1717. 0x0,0x0,0x1,0x90,0x1f,0x9e,0x7,0x96,
  1718. };
  1719. #ifdef QT_NAMESPACE
  1720. # define QT_RCC_PREPEND_NAMESPACE(name) ::QT_NAMESPACE::name
  1721. # define QT_RCC_MANGLE_NAMESPACE0(x) x
  1722. # define QT_RCC_MANGLE_NAMESPACE1(a, b) a##_##b
  1723. # define QT_RCC_MANGLE_NAMESPACE2(a, b) QT_RCC_MANGLE_NAMESPACE1(a,b)
  1724. # define QT_RCC_MANGLE_NAMESPACE(name) QT_RCC_MANGLE_NAMESPACE2( \
  1725. QT_RCC_MANGLE_NAMESPACE0(name), QT_RCC_MANGLE_NAMESPACE0(QT_NAMESPACE))
  1726. #else
  1727. # define QT_RCC_PREPEND_NAMESPACE(name) name
  1728. # define QT_RCC_MANGLE_NAMESPACE(name) name
  1729. #endif
  1730. #ifdef QT_NAMESPACE
  1731. namespace QT_NAMESPACE {
  1732. #endif
  1733. bool qRegisterResourceData(int, const unsigned char *, const unsigned char *, const unsigned char *);
  1734. bool qUnregisterResourceData(int, const unsigned char *, const unsigned char *, const unsigned char *);
  1735. #ifdef QT_NAMESPACE
  1736. }
  1737. #endif
  1738. int QT_RCC_MANGLE_NAMESPACE(qInitResources_occqt)();
  1739. int QT_RCC_MANGLE_NAMESPACE(qInitResources_occqt)()
  1740. {
  1741. int version = 3;
  1742. QT_RCC_PREPEND_NAMESPACE(qRegisterResourceData)
  1743. (version, qt_resource_struct, qt_resource_name, qt_resource_data);
  1744. return 1;
  1745. }
  1746. int QT_RCC_MANGLE_NAMESPACE(qCleanupResources_occqt)();
  1747. int QT_RCC_MANGLE_NAMESPACE(qCleanupResources_occqt)()
  1748. {
  1749. int version = 3;
  1750. QT_RCC_PREPEND_NAMESPACE(qUnregisterResourceData)
  1751. (version, qt_resource_struct, qt_resource_name, qt_resource_data);
  1752. return 1;
  1753. }
  1754. #ifdef __clang__
  1755. # pragma clang diagnostic push
  1756. # pragma clang diagnostic ignored "-Wexit-time-destructors"
  1757. #endif
  1758. namespace {
  1759. struct initializer {
  1760. initializer() { QT_RCC_MANGLE_NAMESPACE(qInitResources_occqt)(); }
  1761. ~initializer() { QT_RCC_MANGLE_NAMESPACE(qCleanupResources_occqt)(); }
  1762. } dummy;
  1763. }
  1764. #ifdef __clang__
  1765. # pragma clang diagnostic pop
  1766. #endif