S_Offene_Auftraege.json 67 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449
  1. [
  2. "",
  3. {
  4. "Type": "Description",
  5. "Decription": "Name \"Neues Modell\" ModelCodePage \"ibm-5348_P100-1997\" AutoAccess False UpdateCycle 9 ModelStamp 1218210240 Version \"10.2.6109.304\" ModelCategoryOrderDefault OrderUsePreference ModelOrderedByDefault False ModelNonRollupHierarchies False "
  6. },
  7. {
  8. "Type": "CognosSource",
  9. "ID": "10335",
  10. "Name": "GC",
  11. "SourceType": "Package",
  12. "SourcePath": "/content/folder[@name='Package']/package[@name='GC']",
  13. "PackageTimeStamp": "/content/folder[@name='Package']/package[@name='GC']/model[@name='2020-09-23T14:57:28.424Z']"
  14. },
  15. {
  16. "Type": "CognosPackageDatasourceConnection",
  17. "ID": "15957",
  18. "Name": "3H_AUTOMOBILE",
  19. "PackageReportSource": {
  20. "ID": "10335",
  21. "Name": "GC"
  22. },
  23. "CognosPackageConnection": "3H_AUTOMOBILE",
  24. "CognosPackageConnectionSignon": "3H_AUTOMOBILE",
  25. "CognosPackageAlwaysUseTransformerSignon": "False",
  26. "CognosPackagePowercubeSource": "False"
  27. },
  28. {
  29. "Type": "CognosPackageDatasourceConnection",
  30. "ID": "15959",
  31. "Name": "LOCOSOFT",
  32. "PackageReportSource": {
  33. "ID": "10335",
  34. "Name": "GC"
  35. },
  36. "CognosPackageConnection": "LOCOSOFT",
  37. "CognosPackageConnectionSignon": "LOCOSOFT",
  38. "CognosPackageAlwaysUseTransformerSignon": "False",
  39. "CognosPackagePowercubeSource": "False"
  40. },
  41. {
  42. "Type": "CognosPackageDatasourceConnection",
  43. "ID": "15961",
  44. "Name": "GC_CARLO",
  45. "PackageReportSource": {
  46. "ID": "10335",
  47. "Name": "GC"
  48. },
  49. "CognosPackageConnection": "GC_CARLO",
  50. "CognosPackageConnectionSignon": "gaps",
  51. "CognosPackageAlwaysUseTransformerSignon": "True",
  52. "CognosPackagePowercubeSource": "False"
  53. },
  54. {
  55. "Type": "CognosPackageDatasourceConnection",
  56. "ID": "15963",
  57. "Name": "GC",
  58. "PackageReportSource": {
  59. "ID": "10335",
  60. "Name": "GC"
  61. },
  62. "CognosPackageConnection": "GC",
  63. "CognosPackageConnectionSignon": "GC",
  64. "CognosPackageAlwaysUseTransformerSignon": "True",
  65. "CognosPackagePowercubeSource": "False"
  66. },
  67. {
  68. "Type": "DataSource",
  69. "ID": "0",
  70. "Name": "",
  71. "Separator": ";",
  72. "SourceType": "CognosSourceQuery",
  73. "CharacterSet": "Default",
  74. "DecimalSep": ",",
  75. "Thousandsep": ".",
  76. "Columns": "True",
  77. "Timing": "PopYesCreateDefault",
  78. "PackageReportSource": {
  79. "ID": "10335",
  80. "Name": "GC"
  81. },
  82. "AutoSummary": "False",
  83. "SetCurrent": "True",
  84. "ServerSource": "False",
  85. "Speed": "False",
  86. "Presummarized": "False",
  87. "StreamExtractSize": "0"
  88. },
  89. {
  90. "Type": "OrgName",
  91. "ID": "15873",
  92. "Name": "[Schnittstelle].[current_date_Prognose_operativ].[Bundeslaender Id]",
  93. "Origin": "Source",
  94. "Offset": "0",
  95. "Column": "Bundeslaender Id",
  96. "Storage": "Text",
  97. "Scale": "0",
  98. "Size": "512",
  99. "Decimals": "0",
  100. "Class": "Description",
  101. "InputScale": "0",
  102. "TimeArray": "Off",
  103. "ColSrcType": "None"
  104. },
  105. {
  106. "Type": "OrgName",
  107. "ID": "15875",
  108. "Name": "[Schnittstelle].[current_date_Prognose_operativ].[Invoice Date]",
  109. "Origin": "Source",
  110. "Offset": "1",
  111. "Column": "Order Date",
  112. "Storage": "Int32",
  113. "Scale": "0",
  114. "Size": "12",
  115. "Decimals": "0",
  116. "Class": "Date",
  117. "InputScale": "0",
  118. "TimeArray": "Off",
  119. "ColSrcType": "None"
  120. },
  121. {
  122. "Type": "OrgName",
  123. "ID": "15877",
  124. "Name": "[Schnittstelle].[current_date_Prognose_operativ].[Wochentage Id]",
  125. "Origin": "Source",
  126. "Offset": "2",
  127. "Column": "Wochentage Id",
  128. "Storage": "Text",
  129. "Scale": "0",
  130. "Size": "512",
  131. "Decimals": "0",
  132. "Class": "Description",
  133. "InputScale": "0",
  134. "TimeArray": "Off",
  135. "ColSrcType": "None"
  136. },
  137. {
  138. "Type": "OrgName",
  139. "ID": "15879",
  140. "Name": "[Schnittstelle].[current_date_Prognose_operativ].[Arbeitstag Mofr]",
  141. "Origin": "Source",
  142. "Offset": "3",
  143. "Column": "Arbeitstag Mofr",
  144. "Storage": "Float64",
  145. "Scale": "0",
  146. "Size": "4",
  147. "Decimals": "0",
  148. "Class": "Quantity",
  149. "InputScale": "0",
  150. "TimeArray": "Off",
  151. "ColSrcType": "None"
  152. },
  153. {
  154. "Type": "OrgName",
  155. "ID": "15881",
  156. "Name": "[Schnittstelle].[current_date_Prognose_operativ].[Zaehler Mofr]",
  157. "Origin": "Source",
  158. "Offset": "4",
  159. "Column": "Zaehler Mofr",
  160. "Storage": "Float64",
  161. "Scale": "0",
  162. "Size": "4",
  163. "Decimals": "0",
  164. "Class": "Quantity",
  165. "InputScale": "0",
  166. "TimeArray": "Off",
  167. "ColSrcType": "None"
  168. },
  169. {
  170. "Type": "OrgName",
  171. "ID": "15883",
  172. "Name": "[Schnittstelle].[current_date_Prognose_operativ].[Summe Mofr]",
  173. "Origin": "Source",
  174. "Offset": "5",
  175. "Column": "Summe Mofr",
  176. "Storage": "Float64",
  177. "Scale": "0",
  178. "Size": "4",
  179. "Decimals": "0",
  180. "Class": "Quantity",
  181. "InputScale": "0",
  182. "TimeArray": "Off",
  183. "ColSrcType": "None"
  184. },
  185. {
  186. "Type": "OrgName",
  187. "ID": "15885",
  188. "Name": "[Schnittstelle].[current_date_Prognose_operativ].[Arbeitstag Mosa]",
  189. "Origin": "Source",
  190. "Offset": "6",
  191. "Column": "Arbeitstag Mosa",
  192. "Storage": "Float64",
  193. "Scale": "0",
  194. "Size": "4",
  195. "Decimals": "0",
  196. "Class": "Quantity",
  197. "InputScale": "0",
  198. "TimeArray": "Off",
  199. "ColSrcType": "None"
  200. },
  201. {
  202. "Type": "OrgName",
  203. "ID": "15887",
  204. "Name": "[Schnittstelle].[current_date_Prognose_operativ].[Zaehler Mosa]",
  205. "Origin": "Source",
  206. "Offset": "7",
  207. "Column": "Zaehler Mosa",
  208. "Storage": "Float64",
  209. "Scale": "0",
  210. "Size": "4",
  211. "Decimals": "0",
  212. "Class": "Quantity",
  213. "InputScale": "0",
  214. "TimeArray": "Off",
  215. "ColSrcType": "None"
  216. },
  217. {
  218. "Type": "OrgName",
  219. "ID": "15889",
  220. "Name": "[Schnittstelle].[current_date_Prognose_operativ].[Summe Mosa]",
  221. "Origin": "Source",
  222. "Offset": "8",
  223. "Column": "Summe Mosa",
  224. "Storage": "Float64",
  225. "Scale": "0",
  226. "Size": "4",
  227. "Decimals": "0",
  228. "Class": "Quantity",
  229. "InputScale": "0",
  230. "TimeArray": "Off",
  231. "ColSrcType": "None"
  232. },
  233. {
  234. "Type": "OrgName",
  235. "ID": "15891",
  236. "Name": "[Schnittstelle].[current_date_Prognose_operativ].[Feiertage Id]",
  237. "Origin": "Source",
  238. "Offset": "9",
  239. "Column": "Feiertage Id",
  240. "Storage": "Float64",
  241. "Scale": "0",
  242. "Size": "4",
  243. "Decimals": "0",
  244. "Class": "Quantity",
  245. "InputScale": "0",
  246. "TimeArray": "Off",
  247. "ColSrcType": "None"
  248. },
  249. {
  250. "Type": "OrgName",
  251. "ID": "15893",
  252. "Name": "[Schnittstelle].[current_date_Prognose_operativ].[Jahr]",
  253. "Origin": "Source",
  254. "Offset": "10",
  255. "Column": "Jahr",
  256. "Storage": "Float64",
  257. "Scale": "0",
  258. "Size": "4",
  259. "Decimals": "0",
  260. "Class": "Quantity",
  261. "InputScale": "0",
  262. "TimeArray": "Off",
  263. "ColSrcType": "None"
  264. },
  265. {
  266. "Type": "OrgName",
  267. "ID": "15895",
  268. "Name": "[Schnittstelle].[current_date_Prognose_operativ].[Arbeitstag Nr Jahr]",
  269. "Origin": "Source",
  270. "Offset": "11",
  271. "Column": "Arbeitstag Nr Jahr",
  272. "Storage": "Float64",
  273. "Scale": "0",
  274. "Size": "4",
  275. "Decimals": "0",
  276. "Class": "Quantity",
  277. "InputScale": "0",
  278. "TimeArray": "Off",
  279. "ColSrcType": "None"
  280. },
  281. {
  282. "Type": "OrgName",
  283. "ID": "15897",
  284. "Name": "[Schnittstelle].[current_date_Prognose_operativ].[Gesamt Arbeitstage]",
  285. "Origin": "Source",
  286. "Offset": "12",
  287. "Column": "Gesamt Arbeitstage",
  288. "Storage": "Float64",
  289. "Scale": "0",
  290. "Size": "4",
  291. "Decimals": "0",
  292. "Class": "Quantity",
  293. "InputScale": "0",
  294. "TimeArray": "Off",
  295. "ColSrcType": "None"
  296. },
  297. {
  298. "Type": "DataSource",
  299. "ID": "0",
  300. "Name": "",
  301. "Separator": ";",
  302. "SourceType": "CognosSourceQuery",
  303. "CharacterSet": "Default",
  304. "DecimalSep": ",",
  305. "Thousandsep": ".",
  306. "Columns": "True",
  307. "Timing": "PopYesCreateDefault",
  308. "PackageReportSource": {
  309. "ID": "10335",
  310. "Name": "GC"
  311. },
  312. "AutoSummary": "False",
  313. "SetCurrent": "False",
  314. "ServerSource": "False",
  315. "Speed": "False",
  316. "Presummarized": "False",
  317. "StreamExtractSize": "0"
  318. },
  319. {
  320. "Type": "OrgName",
  321. "ID": "15829",
  322. "Name": "[Schnittstelle].[Offene_Auftraege].[Hauptbetrieb_ID]",
  323. "Origin": "Source",
  324. "Offset": "0",
  325. "Column": "Hauptbetrieb_ID",
  326. "Storage": "Text",
  327. "Scale": "0",
  328. "Size": "22",
  329. "Decimals": "0",
  330. "Class": "Description",
  331. "InputScale": "0",
  332. "TimeArray": "Off",
  333. "ColSrcType": "None"
  334. },
  335. {
  336. "Type": "OrgName",
  337. "ID": "15831",
  338. "Name": "[Schnittstelle].[Offene_Auftraege].[Hauptbetrieb_Name]",
  339. "Origin": "Source",
  340. "Offset": "1",
  341. "Column": "Hauptbetrieb_Name",
  342. "Storage": "Text",
  343. "Scale": "0",
  344. "Size": "102",
  345. "Decimals": "0",
  346. "Class": "Description",
  347. "InputScale": "0",
  348. "TimeArray": "Off",
  349. "ColSrcType": "None"
  350. },
  351. {
  352. "Type": "OrgName",
  353. "ID": "15833",
  354. "Name": "[Schnittstelle].[Offene_Auftraege].[Standort_ID]",
  355. "Origin": "Source",
  356. "Offset": "2",
  357. "Column": "Standort_ID",
  358. "Storage": "Text",
  359. "Scale": "0",
  360. "Size": "22",
  361. "Decimals": "0",
  362. "Class": "Description",
  363. "InputScale": "0",
  364. "TimeArray": "Off",
  365. "ColSrcType": "None"
  366. },
  367. {
  368. "Type": "OrgName",
  369. "ID": "15835",
  370. "Name": "[Schnittstelle].[Offene_Auftraege].[Standort_Name]",
  371. "Origin": "Source",
  372. "Offset": "3",
  373. "Column": "Standort_Name",
  374. "Storage": "Text",
  375. "Scale": "0",
  376. "Size": "102",
  377. "Decimals": "0",
  378. "Class": "Description",
  379. "InputScale": "0",
  380. "TimeArray": "Off",
  381. "ColSrcType": "None"
  382. },
  383. {
  384. "Type": "OrgName",
  385. "ID": "15837",
  386. "Name": "[Schnittstelle].[Offene_Auftraege].[Serviceberater]",
  387. "Origin": "Source",
  388. "Offset": "4",
  389. "Column": "Serviceberater",
  390. "Storage": "Text",
  391. "Scale": "0",
  392. "Size": "202",
  393. "Decimals": "0",
  394. "Class": "Description",
  395. "InputScale": "0",
  396. "TimeArray": "Off",
  397. "ColSrcType": "None"
  398. },
  399. {
  400. "Type": "OrgName",
  401. "ID": "15839",
  402. "Name": "[Schnittstelle].[Offene_Auftraege].[Order Number]",
  403. "Origin": "Source",
  404. "Offset": "5",
  405. "Column": "Order Number",
  406. "Storage": "Text",
  407. "Scale": "0",
  408. "Size": "202",
  409. "Decimals": "0",
  410. "Class": "Description",
  411. "InputScale": "0",
  412. "TimeArray": "Off",
  413. "ColSrcType": "None"
  414. },
  415. {
  416. "Type": "OrgName",
  417. "ID": "15841",
  418. "Name": "[Schnittstelle].[Offene_Auftraege].[Fabrikat]",
  419. "Origin": "Source",
  420. "Offset": "6",
  421. "Column": "Fabrikat",
  422. "Storage": "Text",
  423. "Scale": "0",
  424. "Size": "202",
  425. "Decimals": "0",
  426. "Class": "Description",
  427. "InputScale": "0",
  428. "TimeArray": "Off",
  429. "ColSrcType": "None"
  430. },
  431. {
  432. "Type": "OrgName",
  433. "ID": "15843",
  434. "Name": "[Schnittstelle].[Offene_Auftraege].[Model]",
  435. "Origin": "Source",
  436. "Offset": "7",
  437. "Column": "Model",
  438. "Storage": "Text",
  439. "Scale": "0",
  440. "Size": "202",
  441. "Decimals": "0",
  442. "Class": "Description",
  443. "InputScale": "0",
  444. "TimeArray": "Off",
  445. "ColSrcType": "None"
  446. },
  447. {
  448. "Type": "OrgName",
  449. "ID": "15845",
  450. "Name": "[Schnittstelle].[Offene_Auftraege].[Fahrzeug]",
  451. "Origin": "Source",
  452. "Offset": "8",
  453. "Column": "Fahrzeug",
  454. "Storage": "Text",
  455. "Scale": "0",
  456. "Size": "202",
  457. "Decimals": "0",
  458. "Class": "Description",
  459. "InputScale": "0",
  460. "TimeArray": "Off",
  461. "ColSrcType": "None"
  462. },
  463. {
  464. "Type": "OrgName",
  465. "ID": "15847",
  466. "Name": "[Schnittstelle].[Offene_Auftraege].[Kostenstelle]",
  467. "Origin": "Source",
  468. "Offset": "9",
  469. "Column": "Kostenstelle",
  470. "Storage": "Text",
  471. "Scale": "0",
  472. "Size": "202",
  473. "Decimals": "0",
  474. "Class": "Description",
  475. "InputScale": "0",
  476. "TimeArray": "Off",
  477. "ColSrcType": "None"
  478. },
  479. {
  480. "Type": "OrgName",
  481. "ID": "15849",
  482. "Name": "[Schnittstelle].[Offene_Auftraege].[Marke]",
  483. "Origin": "Source",
  484. "Offset": "10",
  485. "Column": "Marke",
  486. "Storage": "Text",
  487. "Scale": "0",
  488. "Size": "202",
  489. "Decimals": "0",
  490. "Class": "Description",
  491. "InputScale": "0",
  492. "TimeArray": "Off",
  493. "ColSrcType": "None"
  494. },
  495. {
  496. "Type": "OrgName",
  497. "ID": "15851",
  498. "Name": "[Schnittstelle].[Offene_Auftraege].[Kunde]",
  499. "Origin": "Source",
  500. "Offset": "11",
  501. "Column": "Kunde",
  502. "Storage": "Text",
  503. "Scale": "0",
  504. "Size": "202",
  505. "Decimals": "0",
  506. "Class": "Description",
  507. "InputScale": "0",
  508. "TimeArray": "Off",
  509. "ColSrcType": "None"
  510. },
  511. {
  512. "Type": "OrgName",
  513. "ID": "15853",
  514. "Name": "[Schnittstelle].[Offene_Auftraege].[Turnover_Type_Desc]",
  515. "Origin": "Source",
  516. "Offset": "12",
  517. "Column": "Turnover_Type_Desc",
  518. "Storage": "Text",
  519. "Scale": "0",
  520. "Size": "202",
  521. "Decimals": "0",
  522. "Class": "Description",
  523. "InputScale": "0",
  524. "TimeArray": "Off",
  525. "ColSrcType": "None"
  526. },
  527. {
  528. "Type": "OrgName",
  529. "ID": "15855",
  530. "Name": "[Schnittstelle].[Offene_Auftraege].[Tage offen]",
  531. "Origin": "Source",
  532. "Offset": "13",
  533. "Column": "Tage offen",
  534. "Storage": "Text",
  535. "Scale": "0",
  536. "Size": "202",
  537. "Decimals": "0",
  538. "Class": "Description",
  539. "InputScale": "0",
  540. "TimeArray": "Off",
  541. "ColSrcType": "None"
  542. },
  543. {
  544. "Type": "OrgName",
  545. "ID": "15857",
  546. "Name": "[Schnittstelle].[Offene_Auftraege].[DG]",
  547. "Origin": "Source",
  548. "Offset": "14",
  549. "Column": "DG",
  550. "Storage": "Text",
  551. "Scale": "0",
  552. "Size": "202",
  553. "Decimals": "0",
  554. "Class": "Description",
  555. "InputScale": "0",
  556. "TimeArray": "Off",
  557. "ColSrcType": "None"
  558. },
  559. {
  560. "Type": "OrgName",
  561. "ID": "15859",
  562. "Name": "[Schnittstelle].[Offene_Auftraege].[Lohn]",
  563. "Origin": "Source",
  564. "Offset": "15",
  565. "Column": "Lohn",
  566. "Storage": "Float64",
  567. "Scale": "8",
  568. "Size": "15",
  569. "Decimals": "8",
  570. "Class": "Quantity",
  571. "InputScale": "0",
  572. "TimeArray": "Off",
  573. "ColSrcType": "None"
  574. },
  575. {
  576. "Type": "OrgName",
  577. "ID": "15861",
  578. "Name": "[Schnittstelle].[Offene_Auftraege].[Teile]",
  579. "Origin": "Source",
  580. "Offset": "16",
  581. "Column": "Teile",
  582. "Storage": "Default",
  583. "Scale": "0",
  584. "Size": "1",
  585. "Decimals": "0",
  586. "Class": "",
  587. "InputScale": "0",
  588. "TimeArray": "Off",
  589. "ColSrcType": "None"
  590. },
  591. {
  592. "Type": "OrgName",
  593. "ID": "15863",
  594. "Name": "[Schnittstelle].[Offene_Auftraege].[Sonst.]",
  595. "Origin": "Source",
  596. "Offset": "17",
  597. "Column": "Sonst.",
  598. "Storage": "Float64",
  599. "Scale": "8",
  600. "Size": "15",
  601. "Decimals": "8",
  602. "Class": "Quantity",
  603. "InputScale": "0",
  604. "TimeArray": "Off",
  605. "ColSrcType": "None"
  606. },
  607. {
  608. "Type": "OrgName",
  609. "ID": "15865",
  610. "Name": "[Schnittstelle].[Offene_Auftraege].[Auftragsart]",
  611. "Origin": "Source",
  612. "Offset": "18",
  613. "Column": "Auftragsart",
  614. "Storage": "Text",
  615. "Scale": "0",
  616. "Size": "202",
  617. "Decimals": "0",
  618. "Class": "Description",
  619. "InputScale": "0",
  620. "TimeArray": "Off",
  621. "ColSrcType": "None"
  622. },
  623. {
  624. "Type": "OrgName",
  625. "ID": "15867",
  626. "Name": "[Schnittstelle].[Offene_Auftraege].[Order Date]",
  627. "Origin": "Source",
  628. "Offset": "19",
  629. "Column": "Order Date",
  630. "Storage": "Int32",
  631. "Scale": "0",
  632. "Size": "12",
  633. "Decimals": "0",
  634. "Class": "Date",
  635. "InputScale": "0",
  636. "TimeArray": "Off",
  637. "ColSrcType": "None"
  638. },
  639. {
  640. "Type": "OrgName",
  641. "ID": "15869",
  642. "Name": "[Schnittstelle].[Offene_Auftraege].[Tage seit letzt. Stemp.]",
  643. "Origin": "Source",
  644. "Offset": "20",
  645. "Column": "Tage seit letzt. Stemp.",
  646. "Storage": "Text",
  647. "Scale": "0",
  648. "Size": "202",
  649. "Decimals": "0",
  650. "Class": "Description",
  651. "InputScale": "0",
  652. "TimeArray": "Off",
  653. "ColSrcType": "None"
  654. },
  655. {
  656. "Type": "Dimension",
  657. "ID": "1463",
  658. "Name": "Zeit",
  659. "DimType": "Date",
  660. "EarliestDate": "19010101",
  661. "LatestDate": "21001231",
  662. "ManualPeriods": "False",
  663. "DaysInWeek": "127",
  664. "NewCatsLock": "False",
  665. "ExcludeAutoPartitioning": "False",
  666. "DimDefaultCategory": "0"
  667. },
  668. {
  669. "Type": "Categories"
  670. },
  671. {
  672. "Type": "Root",
  673. "ID": "1467",
  674. "Name": "Zeit",
  675. "Inclusion": "Generate",
  676. "Lastuse": "20180820",
  677. "Date": "0",
  678. "Filtered": "False",
  679. "Suppressed": "False",
  680. "Sign": "False",
  681. "HideValue": "False",
  682. "IsKeyOrphanage": "False",
  683. "IsTruncated": "False",
  684. "Blanks": "False"
  685. },
  686. {
  687. "Type": "Drill",
  688. "ID": "1469",
  689. "Name": "Nach Zeit",
  690. "Label": "Nach Zeit",
  691. "Inclusion": "Suppress",
  692. "Filtered": "False",
  693. "Suppressed": "True",
  694. "PrimaryDrill": "True",
  695. "HideValue": "False",
  696. "YearBegins": "20080101",
  697. "PartialWeek": "Split",
  698. "ExtraWeek": "None",
  699. "WeekBegins": "Sunday"
  700. },
  701. {
  702. "Type": "Levels",
  703. "ID": "1475",
  704. "Name": "Jahr",
  705. "Blanks": "( Leerstelle )",
  706. "Inclusion": "Generate",
  707. "DateFunction": "Year",
  708. "Generate": "DateFunction",
  709. "RefreshLabel": "False",
  710. "RefreshDescription": "False",
  711. "RefreshShortName": "False",
  712. "NewCatsLock": "False",
  713. "CatLabFormat": "YYYY",
  714. "Timerank": "10",
  715. "UniqueCategories": "True",
  716. "UniqueMove": "False"
  717. },
  718. {
  719. "Type": "Levels",
  720. "ID": "1481",
  721. "Name": "Quartal",
  722. "Blanks": "( Leerstelle )",
  723. "Inclusion": "Generate",
  724. "DateFunction": "Quarter",
  725. "Generate": "DateFunction",
  726. "RefreshLabel": "False",
  727. "RefreshDescription": "False",
  728. "RefreshShortName": "False",
  729. "NewCatsLock": "False",
  730. "CatLabFormat": "",
  731. "Timerank": "20",
  732. "UniqueCategories": "True",
  733. "UniqueMove": "False"
  734. },
  735. {
  736. "Type": "Levels",
  737. "ID": "1487",
  738. "Name": "Monat",
  739. "Blanks": "( Leerstelle )",
  740. "Inclusion": "Generate",
  741. "DateFunction": "Month",
  742. "Generate": "DateFunction",
  743. "RefreshLabel": "False",
  744. "RefreshDescription": "False",
  745. "RefreshShortName": "False",
  746. "NewCatsLock": "False",
  747. "CatLabFormat": "MMM/YYYY",
  748. "Timerank": "30",
  749. "UniqueCategories": "True",
  750. "UniqueMove": "False"
  751. },
  752. {
  753. "Type": "Levels",
  754. "ID": "1493",
  755. "Name": "Tag",
  756. "Blanks": "( Leerstelle )",
  757. "Inclusion": "Generate",
  758. "DateFunction": "Day",
  759. "Generate": "DateFunction",
  760. "RefreshLabel": "False",
  761. "RefreshDescription": "False",
  762. "RefreshShortName": "False",
  763. "NewCatsLock": "False",
  764. "CatLabFormat": "DD/MM/YYYY",
  765. "Timerank": "50",
  766. "UniqueCategories": "True",
  767. "UniqueMove": "False"
  768. },
  769. {
  770. "Type": "Category"
  771. },
  772. {
  773. "Type": "Category"
  774. },
  775. {
  776. "Type": "Category"
  777. },
  778. {
  779. "Type": "Category"
  780. },
  781. {
  782. "Type": "Category"
  783. },
  784. {
  785. "Type": "Category"
  786. },
  787. {
  788. "Type": "Category"
  789. },
  790. {
  791. "Type": "Category"
  792. },
  793. {
  794. "Type": "Category"
  795. },
  796. {
  797. "Type": "Category"
  798. },
  799. {
  800. "Type": "Category"
  801. },
  802. {
  803. "Type": "Category"
  804. },
  805. {
  806. "Type": "Category"
  807. },
  808. {
  809. "Type": "Category"
  810. },
  811. {
  812. "Type": "Category"
  813. },
  814. {
  815. "Type": "Category"
  816. },
  817. {
  818. "Type": "Category"
  819. },
  820. {
  821. "Type": "Category"
  822. },
  823. {
  824. "Type": "Category"
  825. },
  826. {
  827. "Type": "Category"
  828. },
  829. {
  830. "Type": "Category"
  831. },
  832. {
  833. "Type": "Category"
  834. },
  835. {
  836. "Type": "Category"
  837. },
  838. {
  839. "Type": "Category"
  840. },
  841. {
  842. "Type": "Category"
  843. },
  844. {
  845. "Type": "Category"
  846. },
  847. {
  848. "Type": "Category"
  849. },
  850. {
  851. "Type": "Category"
  852. },
  853. {
  854. "Type": "Category"
  855. },
  856. {
  857. "Type": "Category"
  858. },
  859. {
  860. "Type": "Category"
  861. },
  862. {
  863. "Type": "Category"
  864. },
  865. {
  866. "Type": "Category"
  867. },
  868. {
  869. "Type": "Category"
  870. },
  871. {
  872. "Type": "Category"
  873. },
  874. {
  875. "Type": "Category"
  876. },
  877. {
  878. "Type": "Category"
  879. },
  880. {
  881. "Type": "Category"
  882. },
  883. {
  884. "Type": "Category"
  885. },
  886. {
  887. "Type": "Category"
  888. },
  889. {
  890. "Type": "Category"
  891. },
  892. {
  893. "Type": "Category"
  894. },
  895. {
  896. "Type": "Category"
  897. },
  898. {
  899. "Type": "Category"
  900. },
  901. {
  902. "Type": "Category"
  903. },
  904. {
  905. "Type": "Category"
  906. },
  907. {
  908. "Type": "Category"
  909. },
  910. {
  911. "Type": "Category"
  912. },
  913. {
  914. "Type": "Category"
  915. },
  916. {
  917. "Type": "Category"
  918. },
  919. {
  920. "Type": "Category"
  921. },
  922. {
  923. "Type": "Category"
  924. },
  925. {
  926. "Type": "Category"
  927. },
  928. {
  929. "Type": "Category"
  930. },
  931. {
  932. "Type": "Category"
  933. },
  934. {
  935. "Type": "Category"
  936. },
  937. {
  938. "Type": "Category"
  939. },
  940. {
  941. "Type": "Category"
  942. },
  943. {
  944. "Type": "Category"
  945. },
  946. {
  947. "Type": "Category"
  948. },
  949. {
  950. "Type": "Category"
  951. },
  952. {
  953. "Type": "Category"
  954. },
  955. {
  956. "Type": "Category"
  957. },
  958. {
  959. "Type": "Category"
  960. },
  961. {
  962. "Type": "Category"
  963. },
  964. {
  965. "Type": "Category"
  966. },
  967. {
  968. "Type": "Category"
  969. },
  970. {
  971. "Type": "Category"
  972. },
  973. {
  974. "Type": "Category"
  975. },
  976. {
  977. "Type": "Category"
  978. },
  979. {
  980. "Type": "Category"
  981. },
  982. {
  983. "Type": "Category"
  984. },
  985. {
  986. "Type": "Category"
  987. },
  988. {
  989. "Type": "Category"
  990. },
  991. {
  992. "Type": "Category"
  993. },
  994. {
  995. "Type": "Category"
  996. },
  997. {
  998. "Type": "Category"
  999. },
  1000. {
  1001. "Type": "Category"
  1002. },
  1003. {
  1004. "Type": "Category"
  1005. },
  1006. {
  1007. "Type": "Category"
  1008. },
  1009. {
  1010. "Type": "Category"
  1011. },
  1012. {
  1013. "Type": "Category"
  1014. },
  1015. {
  1016. "Type": "Category"
  1017. },
  1018. {
  1019. "Type": "Category"
  1020. },
  1021. {
  1022. "Type": "Category"
  1023. },
  1024. {
  1025. "Type": "Category"
  1026. },
  1027. {
  1028. "Type": "Category"
  1029. },
  1030. {
  1031. "Type": "Category"
  1032. },
  1033. {
  1034. "Type": "Category"
  1035. },
  1036. {
  1037. "Type": "Category"
  1038. },
  1039. {
  1040. "Type": "Category"
  1041. },
  1042. {
  1043. "Type": "Category"
  1044. },
  1045. {
  1046. "Type": "Category"
  1047. },
  1048. {
  1049. "Type": "Category"
  1050. },
  1051. {
  1052. "Type": "Category"
  1053. },
  1054. {
  1055. "Type": "Category"
  1056. },
  1057. {
  1058. "Type": "Category"
  1059. },
  1060. {
  1061. "Type": "Category"
  1062. },
  1063. {
  1064. "Type": "Category"
  1065. },
  1066. {
  1067. "Type": "Category"
  1068. },
  1069. {
  1070. "Type": "Category"
  1071. },
  1072. {
  1073. "Type": "Category"
  1074. },
  1075. {
  1076. "Type": "Category"
  1077. },
  1078. {
  1079. "Type": "Category"
  1080. },
  1081. {
  1082. "Type": "Category"
  1083. },
  1084. {
  1085. "Type": "Category"
  1086. },
  1087. {
  1088. "Type": "Category"
  1089. },
  1090. {
  1091. "Type": "Category"
  1092. },
  1093. {
  1094. "Type": "Category"
  1095. },
  1096. {
  1097. "Type": "Category"
  1098. },
  1099. {
  1100. "Type": "Category"
  1101. },
  1102. {
  1103. "Type": "Category"
  1104. },
  1105. {
  1106. "Type": "Category"
  1107. },
  1108. {
  1109. "Type": "Category"
  1110. },
  1111. {
  1112. "Type": "Category"
  1113. },
  1114. {
  1115. "Type": "Category"
  1116. },
  1117. {
  1118. "Type": "Category"
  1119. },
  1120. {
  1121. "Type": "Category"
  1122. },
  1123. {
  1124. "Type": "Category"
  1125. },
  1126. {
  1127. "Type": "Category"
  1128. },
  1129. {
  1130. "Type": "Category"
  1131. },
  1132. {
  1133. "Type": "Category"
  1134. },
  1135. {
  1136. "Type": "Category"
  1137. },
  1138. {
  1139. "Type": "Category"
  1140. },
  1141. {
  1142. "Type": "Category"
  1143. },
  1144. {
  1145. "Type": "Category"
  1146. },
  1147. {
  1148. "Type": "Category"
  1149. },
  1150. {
  1151. "Type": "Category"
  1152. },
  1153. {
  1154. "Type": "Category"
  1155. },
  1156. {
  1157. "Type": "Category"
  1158. },
  1159. {
  1160. "Type": "Category"
  1161. },
  1162. {
  1163. "Type": "Category"
  1164. },
  1165. {
  1166. "Type": "Category"
  1167. },
  1168. {
  1169. "Type": "Category"
  1170. },
  1171. {
  1172. "Type": "Category"
  1173. },
  1174. {
  1175. "Type": "Category"
  1176. },
  1177. {
  1178. "Type": "Category"
  1179. },
  1180. {
  1181. "Type": "Category"
  1182. },
  1183. {
  1184. "Type": "Category"
  1185. },
  1186. {
  1187. "Type": "Category"
  1188. },
  1189. {
  1190. "Type": "Category"
  1191. },
  1192. {
  1193. "Type": "Category"
  1194. },
  1195. {
  1196. "Type": "Category"
  1197. },
  1198. {
  1199. "Type": "Category"
  1200. },
  1201. {
  1202. "Type": "Category"
  1203. },
  1204. {
  1205. "Type": "Category"
  1206. },
  1207. {
  1208. "Type": "Category"
  1209. },
  1210. {
  1211. "Type": "Category"
  1212. },
  1213. {
  1214. "Type": "Category"
  1215. },
  1216. {
  1217. "Type": "Category"
  1218. },
  1219. {
  1220. "Type": "Category"
  1221. },
  1222. {
  1223. "Type": "Category"
  1224. },
  1225. {
  1226. "Type": "Category"
  1227. },
  1228. {
  1229. "Type": "Category"
  1230. },
  1231. {
  1232. "Type": "Category"
  1233. },
  1234. {
  1235. "Type": "Category"
  1236. },
  1237. {
  1238. "Type": "Category"
  1239. },
  1240. {
  1241. "Type": "Category"
  1242. },
  1243. {
  1244. "Type": "Category"
  1245. },
  1246. {
  1247. "Type": "Category"
  1248. },
  1249. {
  1250. "Type": "Category"
  1251. },
  1252. {
  1253. "Type": "Category"
  1254. },
  1255. {
  1256. "Type": "Category"
  1257. },
  1258. {
  1259. "Type": "Category"
  1260. },
  1261. {
  1262. "Type": "Category"
  1263. },
  1264. {
  1265. "Type": "Category"
  1266. },
  1267. {
  1268. "Type": "Category"
  1269. },
  1270. {
  1271. "Type": "Category"
  1272. },
  1273. {
  1274. "Type": "Category"
  1275. },
  1276. {
  1277. "Type": "Category"
  1278. },
  1279. {
  1280. "Type": "Category"
  1281. },
  1282. {
  1283. "Type": "Category"
  1284. },
  1285. {
  1286. "Type": "Category"
  1287. },
  1288. {
  1289. "Type": "Category"
  1290. },
  1291. {
  1292. "Type": "Category"
  1293. },
  1294. {
  1295. "Type": "Category"
  1296. },
  1297. {
  1298. "Type": "Category"
  1299. },
  1300. {
  1301. "Type": "Category"
  1302. },
  1303. {
  1304. "Type": "Category"
  1305. },
  1306. {
  1307. "Type": "Category"
  1308. },
  1309. {
  1310. "Type": "Category"
  1311. },
  1312. {
  1313. "Type": "Category"
  1314. },
  1315. {
  1316. "Type": "Category"
  1317. },
  1318. {
  1319. "Type": "Category"
  1320. },
  1321. {
  1322. "Type": "Category"
  1323. },
  1324. {
  1325. "Type": "Category"
  1326. },
  1327. {
  1328. "Type": "Category"
  1329. },
  1330. {
  1331. "Type": "Category"
  1332. },
  1333. {
  1334. "Type": "Category"
  1335. },
  1336. {
  1337. "Type": "Category"
  1338. },
  1339. {
  1340. "Type": "Category"
  1341. },
  1342. {
  1343. "Type": "Category"
  1344. },
  1345. {
  1346. "Type": "Category"
  1347. },
  1348. {
  1349. "Type": "Category"
  1350. },
  1351. {
  1352. "Type": "Category"
  1353. },
  1354. {
  1355. "Type": "Category"
  1356. },
  1357. {
  1358. "Type": "Category"
  1359. },
  1360. {
  1361. "Type": "Category"
  1362. },
  1363. {
  1364. "Type": "Category"
  1365. },
  1366. {
  1367. "Type": "Category"
  1368. },
  1369. {
  1370. "Type": "Category"
  1371. },
  1372. {
  1373. "Type": "Category"
  1374. },
  1375. {
  1376. "Type": "Category"
  1377. },
  1378. {
  1379. "Type": "Category"
  1380. },
  1381. {
  1382. "Type": "Category"
  1383. },
  1384. {
  1385. "Type": "Category"
  1386. },
  1387. {
  1388. "Type": "Category"
  1389. },
  1390. {
  1391. "Type": "Category"
  1392. },
  1393. {
  1394. "Type": "Category"
  1395. },
  1396. {
  1397. "Type": "Category"
  1398. },
  1399. {
  1400. "Type": "Category"
  1401. },
  1402. {
  1403. "Type": "Category"
  1404. },
  1405. {
  1406. "Type": "Category"
  1407. },
  1408. {
  1409. "Type": "Category"
  1410. },
  1411. {
  1412. "Type": "Category"
  1413. },
  1414. {
  1415. "Type": "Category"
  1416. },
  1417. {
  1418. "Type": "Category"
  1419. },
  1420. {
  1421. "Type": "Category"
  1422. },
  1423. {
  1424. "Type": "Category"
  1425. },
  1426. {
  1427. "Type": "Category"
  1428. },
  1429. {
  1430. "Type": "Category"
  1431. },
  1432. {
  1433. "Type": "Category"
  1434. },
  1435. {
  1436. "Type": "Category"
  1437. },
  1438. {
  1439. "Type": "Category"
  1440. },
  1441. {
  1442. "Type": "Category"
  1443. },
  1444. {
  1445. "Type": "Category"
  1446. },
  1447. {
  1448. "Type": "Category"
  1449. },
  1450. {
  1451. "Type": "Category"
  1452. },
  1453. {
  1454. "Type": "Category"
  1455. },
  1456. {
  1457. "Type": "Category"
  1458. },
  1459. {
  1460. "Type": "Category"
  1461. },
  1462. {
  1463. "Type": "Category"
  1464. },
  1465. {
  1466. "Type": "Category"
  1467. },
  1468. {
  1469. "Type": "Category"
  1470. },
  1471. {
  1472. "Type": "Category"
  1473. },
  1474. {
  1475. "Type": "Category"
  1476. },
  1477. {
  1478. "Type": "Category"
  1479. },
  1480. {
  1481. "Type": "Category"
  1482. },
  1483. {
  1484. "Type": "Category"
  1485. },
  1486. {
  1487. "Type": "Category"
  1488. },
  1489. {
  1490. "Type": "Category"
  1491. },
  1492. {
  1493. "Type": "Category"
  1494. },
  1495. {
  1496. "Type": "Category"
  1497. },
  1498. {
  1499. "Type": "Category"
  1500. },
  1501. {
  1502. "Type": "Category"
  1503. },
  1504. {
  1505. "Type": "Category"
  1506. },
  1507. {
  1508. "Type": "Category"
  1509. },
  1510. {
  1511. "Type": "Category"
  1512. },
  1513. {
  1514. "Type": "Category"
  1515. },
  1516. {
  1517. "Type": "Category"
  1518. },
  1519. {
  1520. "Type": "Category"
  1521. },
  1522. {
  1523. "Type": "Category"
  1524. },
  1525. {
  1526. "Type": "Category"
  1527. },
  1528. {
  1529. "Type": "Category"
  1530. },
  1531. {
  1532. "Type": "Category"
  1533. },
  1534. {
  1535. "Type": "Category"
  1536. },
  1537. {
  1538. "Type": "Category"
  1539. },
  1540. {
  1541. "Type": "Category"
  1542. },
  1543. {
  1544. "Type": "Category"
  1545. },
  1546. {
  1547. "Type": "Category"
  1548. },
  1549. {
  1550. "Type": "Category"
  1551. },
  1552. {
  1553. "Type": "Category"
  1554. },
  1555. {
  1556. "Type": "Category"
  1557. },
  1558. {
  1559. "Type": "Category"
  1560. },
  1561. {
  1562. "Type": "Category"
  1563. },
  1564. {
  1565. "Type": "Category"
  1566. },
  1567. {
  1568. "Type": "Category"
  1569. },
  1570. {
  1571. "Type": "Category"
  1572. },
  1573. {
  1574. "Type": "Category"
  1575. },
  1576. {
  1577. "Type": "Category"
  1578. },
  1579. {
  1580. "Type": "Category"
  1581. },
  1582. {
  1583. "Type": "Category"
  1584. },
  1585. {
  1586. "Type": "Category"
  1587. },
  1588. {
  1589. "Type": "Category"
  1590. },
  1591. {
  1592. "Type": "Category"
  1593. },
  1594. {
  1595. "Type": "Category"
  1596. },
  1597. {
  1598. "Type": "Category"
  1599. },
  1600. {
  1601. "Type": "Category"
  1602. },
  1603. {
  1604. "Type": "Category"
  1605. },
  1606. {
  1607. "Type": "Category"
  1608. },
  1609. {
  1610. "Type": "Category"
  1611. },
  1612. {
  1613. "Type": "Category"
  1614. },
  1615. {
  1616. "Type": "Category"
  1617. },
  1618. {
  1619. "Type": "Category"
  1620. },
  1621. {
  1622. "Type": "Category"
  1623. },
  1624. {
  1625. "Type": "Category"
  1626. },
  1627. {
  1628. "Type": "Category"
  1629. },
  1630. {
  1631. "Type": "Category"
  1632. },
  1633. {
  1634. "Type": "Category"
  1635. },
  1636. {
  1637. "Type": "Category"
  1638. },
  1639. {
  1640. "Type": "Category"
  1641. },
  1642. {
  1643. "Type": "Category"
  1644. },
  1645. {
  1646. "Type": "Category"
  1647. },
  1648. {
  1649. "Type": "Category"
  1650. },
  1651. {
  1652. "Type": "Category"
  1653. },
  1654. {
  1655. "Type": "Category"
  1656. },
  1657. {
  1658. "Type": "Category"
  1659. },
  1660. {
  1661. "Type": "Category"
  1662. },
  1663. {
  1664. "Type": "Category"
  1665. },
  1666. {
  1667. "Type": "Category"
  1668. },
  1669. {
  1670. "Type": "Category"
  1671. },
  1672. {
  1673. "Type": "Category"
  1674. },
  1675. {
  1676. "Type": "Category"
  1677. },
  1678. {
  1679. "Type": "Category"
  1680. },
  1681. {
  1682. "Type": "Category"
  1683. },
  1684. {
  1685. "Type": "Category"
  1686. },
  1687. {
  1688. "Type": "Category"
  1689. },
  1690. {
  1691. "Type": "Category"
  1692. },
  1693. {
  1694. "Type": "Category"
  1695. },
  1696. {
  1697. "Type": "Category"
  1698. },
  1699. {
  1700. "Type": "Category"
  1701. },
  1702. {
  1703. "Type": "Category"
  1704. },
  1705. {
  1706. "Type": "Category"
  1707. },
  1708. {
  1709. "Type": "Category"
  1710. },
  1711. {
  1712. "Type": "Category"
  1713. },
  1714. {
  1715. "Type": "Category"
  1716. },
  1717. {
  1718. "Type": "Category"
  1719. },
  1720. {
  1721. "Type": "Category"
  1722. },
  1723. {
  1724. "Type": "Category"
  1725. },
  1726. {
  1727. "Type": "Category"
  1728. },
  1729. {
  1730. "Type": "Category"
  1731. },
  1732. {
  1733. "Type": "Category"
  1734. },
  1735. {
  1736. "Type": "Category"
  1737. },
  1738. {
  1739. "Type": "Category"
  1740. },
  1741. {
  1742. "Type": "Category"
  1743. },
  1744. {
  1745. "Type": "Category"
  1746. },
  1747. {
  1748. "Type": "Category"
  1749. },
  1750. {
  1751. "Type": "Category"
  1752. },
  1753. {
  1754. "Type": "Category"
  1755. },
  1756. {
  1757. "Type": "Category"
  1758. },
  1759. {
  1760. "Type": "Category"
  1761. },
  1762. {
  1763. "Type": "Category"
  1764. },
  1765. {
  1766. "Type": "Category"
  1767. },
  1768. {
  1769. "Type": "Category"
  1770. },
  1771. {
  1772. "Type": "Category"
  1773. },
  1774. {
  1775. "Type": "Category"
  1776. },
  1777. {
  1778. "Type": "Category"
  1779. },
  1780. {
  1781. "Type": "Category"
  1782. },
  1783. {
  1784. "Type": "Category"
  1785. },
  1786. {
  1787. "Type": "Category"
  1788. },
  1789. {
  1790. "Type": "Category"
  1791. },
  1792. {
  1793. "Type": "Category"
  1794. },
  1795. {
  1796. "Type": "Category"
  1797. },
  1798. {
  1799. "Type": "Category"
  1800. },
  1801. {
  1802. "Type": "Category"
  1803. },
  1804. {
  1805. "Type": "Category"
  1806. },
  1807. {
  1808. "Type": "Category"
  1809. },
  1810. {
  1811. "Type": "Category"
  1812. },
  1813. {
  1814. "Type": "Category"
  1815. },
  1816. {
  1817. "Type": "Category"
  1818. },
  1819. {
  1820. "Type": "Category"
  1821. },
  1822. {
  1823. "Type": "Category"
  1824. },
  1825. {
  1826. "Type": "Category"
  1827. },
  1828. {
  1829. "Type": "Category"
  1830. },
  1831. {
  1832. "Type": "Category"
  1833. },
  1834. {
  1835. "Type": "Category"
  1836. },
  1837. {
  1838. "Type": "Category"
  1839. },
  1840. {
  1841. "Type": "Category"
  1842. },
  1843. {
  1844. "Type": "Category"
  1845. },
  1846. {
  1847. "Type": "Category"
  1848. },
  1849. {
  1850. "Type": "Category"
  1851. },
  1852. {
  1853. "Type": "Category"
  1854. },
  1855. {
  1856. "Type": "Category"
  1857. },
  1858. {
  1859. "Type": "Category"
  1860. },
  1861. {
  1862. "Type": "Category"
  1863. },
  1864. {
  1865. "Type": "Category"
  1866. },
  1867. {
  1868. "Type": "Category"
  1869. },
  1870. {
  1871. "Type": "Category"
  1872. },
  1873. {
  1874. "Type": "Category"
  1875. },
  1876. {
  1877. "Type": "Category"
  1878. },
  1879. {
  1880. "Type": "Category"
  1881. },
  1882. {
  1883. "Type": "Category"
  1884. },
  1885. {
  1886. "Type": "Category"
  1887. },
  1888. {
  1889. "Type": "Category"
  1890. },
  1891. {
  1892. "Type": "Category"
  1893. },
  1894. {
  1895. "Type": "Category"
  1896. },
  1897. {
  1898. "Type": "Category"
  1899. },
  1900. {
  1901. "Type": "Category"
  1902. },
  1903. {
  1904. "Type": "Category"
  1905. },
  1906. {
  1907. "Type": "Category"
  1908. },
  1909. {
  1910. "Type": "Category"
  1911. },
  1912. {
  1913. "Type": "Category"
  1914. },
  1915. {
  1916. "Type": "Category"
  1917. },
  1918. {
  1919. "Type": "Category"
  1920. },
  1921. {
  1922. "Type": "Category"
  1923. },
  1924. {
  1925. "Type": "Category"
  1926. },
  1927. {
  1928. "Type": "Category"
  1929. },
  1930. {
  1931. "Type": "Category"
  1932. },
  1933. {
  1934. "Type": "Category"
  1935. },
  1936. {
  1937. "Type": "Category"
  1938. },
  1939. {
  1940. "Type": "Category"
  1941. },
  1942. {
  1943. "Type": "Category"
  1944. },
  1945. {
  1946. "Type": "Category"
  1947. },
  1948. {
  1949. "Type": "Category"
  1950. },
  1951. {
  1952. "Type": "Category"
  1953. },
  1954. {
  1955. "Type": "Category"
  1956. },
  1957. {
  1958. "Type": "Category"
  1959. },
  1960. {
  1961. "Type": "Category"
  1962. },
  1963. {
  1964. "Type": "Category"
  1965. },
  1966. {
  1967. "Type": "Category"
  1968. },
  1969. {
  1970. "Type": "Category"
  1971. },
  1972. {
  1973. "Type": "Category"
  1974. },
  1975. {
  1976. "Type": "Category"
  1977. },
  1978. {
  1979. "Type": "Category"
  1980. },
  1981. {
  1982. "Type": "Category"
  1983. },
  1984. {
  1985. "Type": "Category"
  1986. },
  1987. {
  1988. "Type": "Category"
  1989. },
  1990. {
  1991. "Type": "Category"
  1992. },
  1993. {
  1994. "Type": "Category"
  1995. },
  1996. {
  1997. "Type": "Category"
  1998. },
  1999. {
  2000. "Type": "Category"
  2001. },
  2002. {
  2003. "Type": "Category"
  2004. },
  2005. {
  2006. "Type": "Category"
  2007. },
  2008. {
  2009. "Type": "Category"
  2010. },
  2011. {
  2012. "Type": "Category"
  2013. },
  2014. {
  2015. "Type": "Category"
  2016. },
  2017. {
  2018. "Type": "Category"
  2019. },
  2020. {
  2021. "Type": "Category"
  2022. },
  2023. {
  2024. "Type": "Category"
  2025. },
  2026. {
  2027. "Type": "Category"
  2028. },
  2029. {
  2030. "Type": "Category"
  2031. },
  2032. {
  2033. "Type": "Category"
  2034. },
  2035. {
  2036. "Type": "Category"
  2037. },
  2038. {
  2039. "Type": "Category"
  2040. },
  2041. {
  2042. "Type": "Category"
  2043. },
  2044. {
  2045. "Type": "Category"
  2046. },
  2047. {
  2048. "Type": "Category"
  2049. },
  2050. {
  2051. "Type": "Category"
  2052. },
  2053. {
  2054. "Type": "Category"
  2055. },
  2056. {
  2057. "Type": "Category"
  2058. },
  2059. {
  2060. "Type": "Category"
  2061. },
  2062. {
  2063. "Type": "Category"
  2064. },
  2065. {
  2066. "Type": "Category"
  2067. },
  2068. {
  2069. "Type": "Category"
  2070. },
  2071. {
  2072. "Type": "Category"
  2073. },
  2074. {
  2075. "Type": "Category"
  2076. },
  2077. {
  2078. "Type": "Category"
  2079. },
  2080. {
  2081. "Type": "Category"
  2082. },
  2083. {
  2084. "Type": "Category"
  2085. },
  2086. {
  2087. "Type": "Category"
  2088. },
  2089. {
  2090. "Type": "Category"
  2091. },
  2092. {
  2093. "Type": "Category"
  2094. },
  2095. {
  2096. "Type": "Category"
  2097. },
  2098. {
  2099. "Type": "Category"
  2100. },
  2101. {
  2102. "Type": "Category"
  2103. },
  2104. {
  2105. "Type": "Category"
  2106. },
  2107. {
  2108. "Type": "Category"
  2109. },
  2110. {
  2111. "Type": "Category"
  2112. },
  2113. {
  2114. "Type": "Category"
  2115. },
  2116. {
  2117. "Type": "Category"
  2118. },
  2119. {
  2120. "Type": "Category"
  2121. },
  2122. {
  2123. "Type": "Category"
  2124. },
  2125. {
  2126. "Type": "Category"
  2127. },
  2128. {
  2129. "Type": "Category"
  2130. },
  2131. {
  2132. "Type": "Category"
  2133. },
  2134. {
  2135. "Type": "Category"
  2136. },
  2137. {
  2138. "Type": "Category"
  2139. },
  2140. {
  2141. "Type": "Category"
  2142. },
  2143. {
  2144. "Type": "Category"
  2145. },
  2146. {
  2147. "Type": "Category"
  2148. },
  2149. {
  2150. "Type": "Category"
  2151. },
  2152. {
  2153. "Type": "Category"
  2154. },
  2155. {
  2156. "Type": "Category"
  2157. },
  2158. {
  2159. "Type": "Category"
  2160. },
  2161. {
  2162. "Type": "Category"
  2163. },
  2164. {
  2165. "Type": "Category"
  2166. },
  2167. {
  2168. "Type": "Category"
  2169. },
  2170. {
  2171. "Type": "Category"
  2172. },
  2173. {
  2174. "Type": "Category"
  2175. },
  2176. {
  2177. "Type": "Category"
  2178. },
  2179. {
  2180. "Type": "Category"
  2181. },
  2182. {
  2183. "Type": "Category"
  2184. },
  2185. {
  2186. "Type": "Category"
  2187. },
  2188. {
  2189. "Type": "Category"
  2190. },
  2191. {
  2192. "Type": "Category"
  2193. },
  2194. {
  2195. "Type": "Category"
  2196. },
  2197. {
  2198. "Type": "Category"
  2199. },
  2200. {
  2201. "Type": "Category"
  2202. },
  2203. {
  2204. "Type": "Category"
  2205. },
  2206. {
  2207. "Type": "Category"
  2208. },
  2209. {
  2210. "Type": "Category"
  2211. },
  2212. {
  2213. "Type": "Category"
  2214. },
  2215. {
  2216. "Type": "Category"
  2217. },
  2218. {
  2219. "Type": "Category"
  2220. },
  2221. {
  2222. "Type": "Category"
  2223. },
  2224. {
  2225. "Type": "Category"
  2226. },
  2227. {
  2228. "Type": "Category"
  2229. },
  2230. {
  2231. "Type": "Category"
  2232. },
  2233. {
  2234. "Type": "Category"
  2235. },
  2236. {
  2237. "Type": "Category"
  2238. },
  2239. {
  2240. "Type": "Category"
  2241. },
  2242. {
  2243. "Type": "Category"
  2244. },
  2245. {
  2246. "Type": "Category"
  2247. },
  2248. {
  2249. "Type": "Category"
  2250. },
  2251. {
  2252. "Type": "Category"
  2253. },
  2254. {
  2255. "Type": "Category"
  2256. },
  2257. {
  2258. "Type": "Category"
  2259. },
  2260. {
  2261. "Type": "Category"
  2262. },
  2263. {
  2264. "Type": "Category"
  2265. },
  2266. {
  2267. "Type": "Category"
  2268. },
  2269. {
  2270. "Type": "Category"
  2271. },
  2272. {
  2273. "Type": "Category"
  2274. },
  2275. {
  2276. "Type": "Category"
  2277. },
  2278. {
  2279. "Type": "Category"
  2280. },
  2281. {
  2282. "Type": "Category"
  2283. },
  2284. {
  2285. "Type": "Category"
  2286. },
  2287. {
  2288. "Type": "Category"
  2289. },
  2290. {
  2291. "Type": "Category"
  2292. },
  2293. {
  2294. "Type": "Category"
  2295. },
  2296. {
  2297. "Type": "Category"
  2298. },
  2299. {
  2300. "Type": "Category"
  2301. },
  2302. {
  2303. "Type": "Category"
  2304. },
  2305. {
  2306. "Type": "Category"
  2307. },
  2308. {
  2309. "Type": "Category"
  2310. },
  2311. {
  2312. "Type": "Category"
  2313. },
  2314. {
  2315. "Type": "Category"
  2316. },
  2317. {
  2318. "Type": "Category"
  2319. },
  2320. {
  2321. "Type": "Category"
  2322. },
  2323. {
  2324. "Type": "Category"
  2325. },
  2326. {
  2327. "Type": "Category"
  2328. },
  2329. {
  2330. "Type": "Category"
  2331. },
  2332. {
  2333. "Type": "Category"
  2334. },
  2335. {
  2336. "Type": "Category"
  2337. },
  2338. {
  2339. "Type": "Category"
  2340. },
  2341. {
  2342. "Type": "Category"
  2343. },
  2344. {
  2345. "Type": "Category"
  2346. },
  2347. {
  2348. "Type": "Category"
  2349. },
  2350. {
  2351. "Type": "Category"
  2352. },
  2353. {
  2354. "Type": "Category"
  2355. },
  2356. {
  2357. "Type": "Category"
  2358. },
  2359. {
  2360. "Type": "Category"
  2361. },
  2362. {
  2363. "Type": "Category"
  2364. },
  2365. {
  2366. "Type": "Category"
  2367. },
  2368. {
  2369. "Type": "Category"
  2370. },
  2371. {
  2372. "Type": "Category"
  2373. },
  2374. {
  2375. "Type": "Category"
  2376. },
  2377. {
  2378. "Type": "Category"
  2379. },
  2380. {
  2381. "Type": "Category"
  2382. },
  2383. {
  2384. "Type": "Category"
  2385. },
  2386. {
  2387. "Type": "Category"
  2388. },
  2389. {
  2390. "Type": "Category"
  2391. },
  2392. {
  2393. "Type": "Category"
  2394. },
  2395. {
  2396. "Type": "Category"
  2397. },
  2398. {
  2399. "Type": "Category"
  2400. },
  2401. {
  2402. "Type": "Category"
  2403. },
  2404. {
  2405. "Type": "Category"
  2406. },
  2407. {
  2408. "Type": "Category"
  2409. },
  2410. {
  2411. "Type": "Category"
  2412. },
  2413. {
  2414. "Type": "Category"
  2415. },
  2416. {
  2417. "Type": "Category"
  2418. },
  2419. {
  2420. "Type": "Category"
  2421. },
  2422. {
  2423. "Type": "Category"
  2424. },
  2425. {
  2426. "Type": "Category"
  2427. },
  2428. {
  2429. "Type": "Category"
  2430. },
  2431. {
  2432. "Type": "Category"
  2433. },
  2434. {
  2435. "Type": "Category"
  2436. },
  2437. {
  2438. "Type": "Category"
  2439. },
  2440. {
  2441. "Type": "Category"
  2442. },
  2443. {
  2444. "Type": "Category"
  2445. },
  2446. {
  2447. "Type": "Category"
  2448. },
  2449. {
  2450. "Type": "Category"
  2451. },
  2452. {
  2453. "Type": "Category"
  2454. },
  2455. {
  2456. "Type": "Category"
  2457. },
  2458. {
  2459. "Type": "Category"
  2460. },
  2461. {
  2462. "Type": "Category"
  2463. },
  2464. {
  2465. "Type": "Category"
  2466. },
  2467. {
  2468. "Type": "Category"
  2469. },
  2470. {
  2471. "Type": "Category"
  2472. },
  2473. {
  2474. "Type": "Category"
  2475. },
  2476. {
  2477. "Type": "Category"
  2478. },
  2479. {
  2480. "Type": "Category"
  2481. },
  2482. {
  2483. "Type": "Category"
  2484. },
  2485. {
  2486. "Type": "Category"
  2487. },
  2488. {
  2489. "Type": "Category"
  2490. },
  2491. {
  2492. "Type": "Category"
  2493. },
  2494. {
  2495. "Type": "Category"
  2496. },
  2497. {
  2498. "Type": "Category"
  2499. },
  2500. {
  2501. "Type": "Category"
  2502. },
  2503. {
  2504. "Type": "Category"
  2505. },
  2506. {
  2507. "Type": "Category"
  2508. },
  2509. {
  2510. "Type": "Category"
  2511. },
  2512. {
  2513. "Type": "Category"
  2514. },
  2515. {
  2516. "Type": "Category"
  2517. },
  2518. {
  2519. "Type": "Category"
  2520. },
  2521. {
  2522. "Type": "Category"
  2523. },
  2524. {
  2525. "Type": "Category"
  2526. },
  2527. {
  2528. "Type": "Category"
  2529. },
  2530. {
  2531. "Type": "Category"
  2532. },
  2533. {
  2534. "Type": "Category"
  2535. },
  2536. {
  2537. "Type": "Category"
  2538. },
  2539. {
  2540. "Type": "Category"
  2541. },
  2542. {
  2543. "Type": "Category"
  2544. },
  2545. {
  2546. "Type": "Category"
  2547. },
  2548. {
  2549. "Type": "Category"
  2550. },
  2551. {
  2552. "Type": "Category"
  2553. },
  2554. {
  2555. "Type": "Category"
  2556. },
  2557. {
  2558. "Type": "Category"
  2559. },
  2560. {
  2561. "Type": "Category"
  2562. },
  2563. {
  2564. "Type": "Category"
  2565. },
  2566. {
  2567. "Type": "Category"
  2568. },
  2569. {
  2570. "Type": "Category"
  2571. },
  2572. {
  2573. "Type": "Category"
  2574. },
  2575. {
  2576. "Type": "Category"
  2577. },
  2578. {
  2579. "Type": "Category"
  2580. },
  2581. {
  2582. "Type": "Category"
  2583. },
  2584. {
  2585. "Type": "Category"
  2586. },
  2587. {
  2588. "Type": "Category"
  2589. },
  2590. {
  2591. "Type": "Category"
  2592. },
  2593. {
  2594. "Type": "Category"
  2595. },
  2596. {
  2597. "Type": "Category"
  2598. },
  2599. {
  2600. "Type": "Category"
  2601. },
  2602. {
  2603. "Type": "Category"
  2604. },
  2605. {
  2606. "Type": "Category"
  2607. },
  2608. {
  2609. "Type": "Category"
  2610. },
  2611. {
  2612. "Type": "Category"
  2613. },
  2614. {
  2615. "Type": "Category"
  2616. },
  2617. {
  2618. "Type": "Category"
  2619. },
  2620. {
  2621. "Type": "Category"
  2622. },
  2623. {
  2624. "Type": "Category"
  2625. },
  2626. {
  2627. "Type": "Category"
  2628. },
  2629. {
  2630. "Type": "Category"
  2631. },
  2632. {
  2633. "Type": "Category"
  2634. },
  2635. {
  2636. "Type": "Category"
  2637. },
  2638. {
  2639. "Type": "Category"
  2640. },
  2641. {
  2642. "Type": "Category"
  2643. },
  2644. {
  2645. "Type": "Category"
  2646. },
  2647. {
  2648. "Type": "Category"
  2649. },
  2650. {
  2651. "Type": "Category"
  2652. },
  2653. {
  2654. "Type": "Category"
  2655. },
  2656. {
  2657. "Type": "Category"
  2658. },
  2659. {
  2660. "Type": "Category"
  2661. },
  2662. {
  2663. "Type": "Category"
  2664. },
  2665. {
  2666. "Type": "Category"
  2667. },
  2668. {
  2669. "Type": "Category"
  2670. },
  2671. {
  2672. "Type": "Category"
  2673. },
  2674. {
  2675. "Type": "Category"
  2676. },
  2677. {
  2678. "Type": "Category"
  2679. },
  2680. {
  2681. "Type": "Category"
  2682. },
  2683. {
  2684. "Type": "Category"
  2685. },
  2686. {
  2687. "Type": "Category"
  2688. },
  2689. {
  2690. "Type": "Category"
  2691. },
  2692. {
  2693. "Type": "Category"
  2694. },
  2695. {
  2696. "Type": "Category"
  2697. },
  2698. {
  2699. "Type": "Category"
  2700. },
  2701. {
  2702. "Type": "Category"
  2703. },
  2704. {
  2705. "Type": "Category"
  2706. },
  2707. {
  2708. "Type": "Category"
  2709. },
  2710. {
  2711. "Type": "Category"
  2712. },
  2713. {
  2714. "Type": "Category"
  2715. },
  2716. {
  2717. "Type": "Category"
  2718. },
  2719. {
  2720. "Type": "Category"
  2721. },
  2722. {
  2723. "Type": "Category"
  2724. },
  2725. {
  2726. "Type": "Category"
  2727. },
  2728. {
  2729. "Type": "Category"
  2730. },
  2731. {
  2732. "Type": "Category"
  2733. },
  2734. {
  2735. "Type": "Category"
  2736. },
  2737. {
  2738. "Type": "Category"
  2739. },
  2740. {
  2741. "Type": "Category"
  2742. },
  2743. {
  2744. "Type": "Category"
  2745. },
  2746. {
  2747. "Type": "Category"
  2748. },
  2749. {
  2750. "Type": "Category"
  2751. },
  2752. {
  2753. "Type": "Category"
  2754. },
  2755. {
  2756. "Type": "Category"
  2757. },
  2758. {
  2759. "Type": "Category"
  2760. },
  2761. {
  2762. "Type": "Category"
  2763. },
  2764. {
  2765. "Type": "Category"
  2766. },
  2767. {
  2768. "Type": "Category"
  2769. },
  2770. {
  2771. "Type": "Category"
  2772. },
  2773. {
  2774. "Type": "Category"
  2775. },
  2776. {
  2777. "Type": "Category"
  2778. },
  2779. {
  2780. "Type": "Category"
  2781. },
  2782. {
  2783. "Type": "Category"
  2784. },
  2785. {
  2786. "Type": "Category"
  2787. },
  2788. {
  2789. "Type": "Category"
  2790. },
  2791. {
  2792. "Type": "Category"
  2793. },
  2794. {
  2795. "Type": "Category"
  2796. },
  2797. {
  2798. "Type": "Category"
  2799. },
  2800. {
  2801. "Type": "Category"
  2802. },
  2803. {
  2804. "Type": "Category"
  2805. },
  2806. {
  2807. "Type": "Category"
  2808. },
  2809. {
  2810. "Type": "Category"
  2811. },
  2812. {
  2813. "Type": "Category"
  2814. },
  2815. {
  2816. "Type": "Category"
  2817. },
  2818. {
  2819. "Type": "Category"
  2820. },
  2821. {
  2822. "Type": "Category"
  2823. },
  2824. {
  2825. "Type": "Category"
  2826. },
  2827. {
  2828. "Type": "Category"
  2829. },
  2830. {
  2831. "Type": "Category"
  2832. },
  2833. {
  2834. "Type": "Category"
  2835. },
  2836. {
  2837. "Type": "Category"
  2838. },
  2839. {
  2840. "Type": "Category"
  2841. },
  2842. {
  2843. "Type": "Category"
  2844. },
  2845. {
  2846. "Type": "Category"
  2847. },
  2848. {
  2849. "Type": "Category"
  2850. },
  2851. {
  2852. "Type": "Category"
  2853. },
  2854. {
  2855. "Type": "Category"
  2856. },
  2857. {
  2858. "Type": "Category"
  2859. },
  2860. {
  2861. "Type": "Category"
  2862. },
  2863. {
  2864. "Type": "Category"
  2865. },
  2866. {
  2867. "Type": "Category"
  2868. },
  2869. {
  2870. "Type": "Category"
  2871. },
  2872. {
  2873. "Type": "Category"
  2874. },
  2875. {
  2876. "Type": "Category"
  2877. },
  2878. {
  2879. "Type": "Category"
  2880. },
  2881. {
  2882. "Type": "Category"
  2883. },
  2884. {
  2885. "Type": "Category"
  2886. },
  2887. {
  2888. "Type": "Category"
  2889. },
  2890. {
  2891. "Type": "Category"
  2892. },
  2893. {
  2894. "Type": "Category"
  2895. },
  2896. {
  2897. "Type": "Category"
  2898. },
  2899. {
  2900. "Type": "Category"
  2901. },
  2902. {
  2903. "Type": "Category"
  2904. },
  2905. {
  2906. "Type": "Category"
  2907. },
  2908. {
  2909. "Type": "Category"
  2910. },
  2911. {
  2912. "Type": "Category"
  2913. },
  2914. {
  2915. "Type": "Category"
  2916. },
  2917. {
  2918. "Type": "Category"
  2919. },
  2920. {
  2921. "Type": "Category"
  2922. },
  2923. {
  2924. "Type": "Category"
  2925. },
  2926. {
  2927. "Type": "Category"
  2928. },
  2929. {
  2930. "Type": "Category"
  2931. },
  2932. {
  2933. "Type": "Category"
  2934. },
  2935. {
  2936. "Type": "Category"
  2937. },
  2938. {
  2939. "Type": "Category"
  2940. },
  2941. {
  2942. "Type": "Category"
  2943. },
  2944. {
  2945. "Type": "Category"
  2946. },
  2947. {
  2948. "Type": "Category"
  2949. },
  2950. {
  2951. "Type": "Category"
  2952. },
  2953. {
  2954. "Type": "Category"
  2955. },
  2956. {
  2957. "Type": "Category"
  2958. },
  2959. {
  2960. "Type": "Category"
  2961. },
  2962. {
  2963. "Type": "Category"
  2964. },
  2965. {
  2966. "Type": "Category"
  2967. },
  2968. {
  2969. "Type": "Category"
  2970. },
  2971. {
  2972. "Type": "Category"
  2973. },
  2974. {
  2975. "Type": "Category"
  2976. },
  2977. {
  2978. "Type": "Category"
  2979. },
  2980. {
  2981. "Type": "Category"
  2982. },
  2983. {
  2984. "Type": "Category"
  2985. },
  2986. {
  2987. "Type": "Category"
  2988. },
  2989. {
  2990. "Type": "Category"
  2991. },
  2992. {
  2993. "Type": "Category"
  2994. },
  2995. {
  2996. "Type": "Category"
  2997. },
  2998. {
  2999. "Type": "Category"
  3000. },
  3001. {
  3002. "Type": "Category"
  3003. },
  3004. {
  3005. "Type": "Category"
  3006. },
  3007. {
  3008. "Type": "Category"
  3009. },
  3010. {
  3011. "Type": "Category"
  3012. },
  3013. {
  3014. "Type": "Category"
  3015. },
  3016. {
  3017. "Type": "Category"
  3018. },
  3019. {
  3020. "Type": "Category"
  3021. },
  3022. {
  3023. "Type": "Category"
  3024. },
  3025. {
  3026. "Type": "Category"
  3027. },
  3028. {
  3029. "Type": "Category"
  3030. },
  3031. {
  3032. "Type": "Category"
  3033. },
  3034. {
  3035. "Type": "Category"
  3036. },
  3037. {
  3038. "Type": "Category"
  3039. },
  3040. {
  3041. "Type": "Category"
  3042. },
  3043. {
  3044. "Type": "Category"
  3045. },
  3046. {
  3047. "Type": "Category"
  3048. },
  3049. {
  3050. "Type": "Category"
  3051. },
  3052. {
  3053. "Type": "Category"
  3054. },
  3055. {
  3056. "Type": "Category"
  3057. },
  3058. {
  3059. "Type": "Category"
  3060. },
  3061. {
  3062. "Type": "SpecialCategory"
  3063. },
  3064. {
  3065. "Type": "SpecialCategory"
  3066. },
  3067. {
  3068. "Type": "SpecialCategory"
  3069. },
  3070. {
  3071. "Type": "SpecialCategory"
  3072. },
  3073. {
  3074. "Type": "SpecialCategory"
  3075. },
  3076. {
  3077. "Type": "SpecialCategory"
  3078. },
  3079. {
  3080. "Type": "Levels",
  3081. "ID": "0",
  3082. "Name": "",
  3083. "Blanks": "",
  3084. "Inclusion": "",
  3085. "DateFunction": "",
  3086. "Generate": "",
  3087. "RefreshLabel": "",
  3088. "RefreshDescription": "",
  3089. "RefreshShortName": "",
  3090. "NewCatsLock": "",
  3091. "CatLabFormat": "",
  3092. "Timerank": "",
  3093. "UniqueCategories": "",
  3094. "UniqueMove": ""
  3095. },
  3096. {
  3097. "Type": "SpecialCategory"
  3098. },
  3099. {
  3100. "Type": "SpecialCategory"
  3101. },
  3102. {
  3103. "Type": "SpecialCategory"
  3104. },
  3105. {
  3106. "Type": "SpecialCategory"
  3107. },
  3108. {
  3109. "Type": "SpecialCategory"
  3110. },
  3111. {
  3112. "Type": "SpecialCategory"
  3113. },
  3114. {
  3115. "Type": "SpecialCategory"
  3116. },
  3117. {
  3118. "Type": "SpecialCategory"
  3119. },
  3120. {
  3121. "Type": "SpecialCategory"
  3122. },
  3123. {
  3124. "Type": "Levels",
  3125. "ID": "0",
  3126. "Name": "",
  3127. "Blanks": "",
  3128. "Inclusion": "",
  3129. "DateFunction": "",
  3130. "Generate": "",
  3131. "RefreshLabel": "",
  3132. "RefreshDescription": "",
  3133. "RefreshShortName": "",
  3134. "NewCatsLock": "",
  3135. "CatLabFormat": "",
  3136. "Timerank": "",
  3137. "UniqueCategories": "",
  3138. "UniqueMove": ""
  3139. },
  3140. {
  3141. "Type": "SpecialCategory"
  3142. },
  3143. {
  3144. "Type": "Levels",
  3145. "ID": "0",
  3146. "Name": "",
  3147. "Blanks": "",
  3148. "Inclusion": "Generate",
  3149. "DateFunction": "",
  3150. "Generate": "Lastuse",
  3151. "RefreshLabel": "",
  3152. "RefreshDescription": "",
  3153. "RefreshShortName": "",
  3154. "NewCatsLock": "",
  3155. "CatLabFormat": "",
  3156. "Timerank": "",
  3157. "UniqueCategories": "",
  3158. "UniqueMove": ""
  3159. },
  3160. {
  3161. "Type": "SpecialCategory"
  3162. },
  3163. {
  3164. "Type": "SpecialCategory"
  3165. },
  3166. {
  3167. "Type": "Levels",
  3168. "ID": "0",
  3169. "Name": "",
  3170. "Blanks": "",
  3171. "Inclusion": "Generate",
  3172. "DateFunction": "",
  3173. "Generate": "Lastuse",
  3174. "RefreshLabel": "",
  3175. "RefreshDescription": "",
  3176. "RefreshShortName": "",
  3177. "NewCatsLock": "",
  3178. "CatLabFormat": "",
  3179. "Timerank": "",
  3180. "UniqueCategories": "",
  3181. "UniqueMove": ""
  3182. },
  3183. {
  3184. "Type": "SpecialCategory"
  3185. },
  3186. {
  3187. "Type": "SpecialCategory"
  3188. },
  3189. {
  3190. "Type": "SpecialCategory"
  3191. },
  3192. {
  3193. "Type": "SpecialCategory"
  3194. },
  3195. {
  3196. "Type": "SpecialCategory"
  3197. },
  3198. {
  3199. "Type": "SpecialCategory"
  3200. },
  3201. {
  3202. "Type": "SpecialCategory"
  3203. },
  3204. {
  3205. "Type": "SpecialCategory"
  3206. },
  3207. {
  3208. "Type": "SpecialCategory"
  3209. },
  3210. {
  3211. "Type": "SpecialCategory"
  3212. },
  3213. {
  3214. "Type": "SpecialCategory"
  3215. },
  3216. {
  3217. "Type": "SpecialCategory"
  3218. },
  3219. {
  3220. "Type": "SpecialCategory"
  3221. },
  3222. {
  3223. "Type": "SpecialCategory"
  3224. },
  3225. {
  3226. "Type": "SpecialCategory"
  3227. },
  3228. {
  3229. "Type": "SpecialCategory"
  3230. },
  3231. {
  3232. "Type": "SpecialCategory"
  3233. },
  3234. {
  3235. "Type": "SpecialCategory"
  3236. },
  3237. {
  3238. "Type": "SpecialCategory"
  3239. },
  3240. {
  3241. "Type": "SpecialCategory"
  3242. },
  3243. {
  3244. "Type": "SpecialCategory"
  3245. },
  3246. {
  3247. "Type": "SpecialCategory"
  3248. },
  3249. {
  3250. "Type": "SpecialCategory"
  3251. },
  3252. {
  3253. "Type": "SpecialCategory"
  3254. },
  3255. {
  3256. "Type": "SpecialCategory"
  3257. },
  3258. {
  3259. "Type": "SpecialCategory"
  3260. },
  3261. {
  3262. "Type": "Levels",
  3263. "ID": "0",
  3264. "Name": "",
  3265. "Blanks": "",
  3266. "Inclusion": "",
  3267. "DateFunction": "",
  3268. "Generate": "",
  3269. "RefreshLabel": "",
  3270. "RefreshDescription": "",
  3271. "RefreshShortName": "",
  3272. "NewCatsLock": "",
  3273. "CatLabFormat": "",
  3274. "Timerank": "",
  3275. "UniqueCategories": "",
  3276. "UniqueMove": ""
  3277. },
  3278. {
  3279. "Type": "SpecialCategory"
  3280. },
  3281. {
  3282. "Type": "Levels",
  3283. "ID": "0",
  3284. "Name": "",
  3285. "Blanks": "",
  3286. "Inclusion": "Generate",
  3287. "DateFunction": "",
  3288. "Generate": "Lastuse",
  3289. "RefreshLabel": "",
  3290. "RefreshDescription": "",
  3291. "RefreshShortName": "",
  3292. "NewCatsLock": "",
  3293. "CatLabFormat": "",
  3294. "Timerank": "",
  3295. "UniqueCategories": "",
  3296. "UniqueMove": ""
  3297. },
  3298. {
  3299. "Type": "SpecialCategory"
  3300. },
  3301. {
  3302. "Type": "SpecialCategory"
  3303. },
  3304. {
  3305. "Type": "SpecialCategory"
  3306. },
  3307. {
  3308. "Type": "SpecialCategory"
  3309. },
  3310. {
  3311. "Type": "Levels",
  3312. "ID": "0",
  3313. "Name": "",
  3314. "Blanks": "",
  3315. "Inclusion": "Generate",
  3316. "DateFunction": "",
  3317. "Generate": "Lastuse",
  3318. "RefreshLabel": "",
  3319. "RefreshDescription": "",
  3320. "RefreshShortName": "",
  3321. "NewCatsLock": "",
  3322. "CatLabFormat": "",
  3323. "Timerank": "",
  3324. "UniqueCategories": "",
  3325. "UniqueMove": ""
  3326. },
  3327. {
  3328. "Type": "SpecialCategory"
  3329. },
  3330. {
  3331. "Type": "SpecialCategory"
  3332. },
  3333. {
  3334. "Type": "SpecialCategory"
  3335. },
  3336. {
  3337. "Type": "SpecialCategory"
  3338. },
  3339. {
  3340. "Type": "Levels",
  3341. "ID": "0",
  3342. "Name": "",
  3343. "Blanks": "",
  3344. "Inclusion": "Generate",
  3345. "DateFunction": "",
  3346. "Generate": "Lastuse",
  3347. "RefreshLabel": "",
  3348. "RefreshDescription": "",
  3349. "RefreshShortName": "",
  3350. "NewCatsLock": "",
  3351. "CatLabFormat": "",
  3352. "Timerank": "",
  3353. "UniqueCategories": "",
  3354. "UniqueMove": ""
  3355. },
  3356. {
  3357. "Type": "SpecialCategory"
  3358. },
  3359. {
  3360. "Type": "SpecialCategory"
  3361. },
  3362. {
  3363. "Type": "SpecialCategory"
  3364. },
  3365. {
  3366. "Type": "Levels",
  3367. "ID": "0",
  3368. "Name": "",
  3369. "Blanks": "",
  3370. "Inclusion": "Generate",
  3371. "DateFunction": "",
  3372. "Generate": "Lastuse",
  3373. "RefreshLabel": "",
  3374. "RefreshDescription": "",
  3375. "RefreshShortName": "",
  3376. "NewCatsLock": "",
  3377. "CatLabFormat": "",
  3378. "Timerank": "",
  3379. "UniqueCategories": "",
  3380. "UniqueMove": ""
  3381. },
  3382. {
  3383. "Type": "SpecialCategory"
  3384. },
  3385. {
  3386. "Type": "Levels",
  3387. "ID": "0",
  3388. "Name": "",
  3389. "Blanks": "",
  3390. "Inclusion": "Generate",
  3391. "DateFunction": "",
  3392. "Generate": "Lastuse",
  3393. "RefreshLabel": "",
  3394. "RefreshDescription": "",
  3395. "RefreshShortName": "",
  3396. "NewCatsLock": "",
  3397. "CatLabFormat": "",
  3398. "Timerank": "",
  3399. "UniqueCategories": "",
  3400. "UniqueMove": ""
  3401. },
  3402. {
  3403. "Type": "SpecialCategory"
  3404. },
  3405. {
  3406. "Type": "Levels",
  3407. "ID": "0",
  3408. "Name": "",
  3409. "Blanks": "",
  3410. "Inclusion": "Generate",
  3411. "DateFunction": "",
  3412. "Generate": "Lastuse",
  3413. "RefreshLabel": "",
  3414. "RefreshDescription": "",
  3415. "RefreshShortName": "",
  3416. "NewCatsLock": "",
  3417. "CatLabFormat": "",
  3418. "Timerank": "",
  3419. "UniqueCategories": "",
  3420. "UniqueMove": ""
  3421. },
  3422. {
  3423. "Type": "SpecialCategory"
  3424. },
  3425. {
  3426. "Type": "Levels",
  3427. "ID": "0",
  3428. "Name": "",
  3429. "Blanks": "",
  3430. "Inclusion": "Generate",
  3431. "DateFunction": "",
  3432. "Generate": "Lastuse",
  3433. "RefreshLabel": "",
  3434. "RefreshDescription": "",
  3435. "RefreshShortName": "",
  3436. "NewCatsLock": "",
  3437. "CatLabFormat": "",
  3438. "Timerank": "",
  3439. "UniqueCategories": "",
  3440. "UniqueMove": ""
  3441. },
  3442. {
  3443. "Type": "SpecialCategory"
  3444. },
  3445. {
  3446. "Type": "Levels",
  3447. "ID": "0",
  3448. "Name": "",
  3449. "Blanks": "",
  3450. "Inclusion": "Generate",
  3451. "DateFunction": "",
  3452. "Generate": "Lastuse",
  3453. "RefreshLabel": "",
  3454. "RefreshDescription": "",
  3455. "RefreshShortName": "",
  3456. "NewCatsLock": "",
  3457. "CatLabFormat": "",
  3458. "Timerank": "",
  3459. "UniqueCategories": "",
  3460. "UniqueMove": ""
  3461. },
  3462. {
  3463. "Type": "SpecialCategory"
  3464. },
  3465. {
  3466. "Type": "Levels",
  3467. "ID": "0",
  3468. "Name": "",
  3469. "Blanks": "",
  3470. "Inclusion": "Generate",
  3471. "DateFunction": "",
  3472. "Generate": "Lastuse",
  3473. "RefreshLabel": "",
  3474. "RefreshDescription": "",
  3475. "RefreshShortName": "",
  3476. "NewCatsLock": "",
  3477. "CatLabFormat": "",
  3478. "Timerank": "",
  3479. "UniqueCategories": "",
  3480. "UniqueMove": ""
  3481. },
  3482. {
  3483. "Type": "SpecialCategory"
  3484. },
  3485. {
  3486. "Type": "Levels",
  3487. "ID": "0",
  3488. "Name": "",
  3489. "Blanks": "",
  3490. "Inclusion": "Generate",
  3491. "DateFunction": "",
  3492. "Generate": "Lastuse",
  3493. "RefreshLabel": "",
  3494. "RefreshDescription": "",
  3495. "RefreshShortName": "",
  3496. "NewCatsLock": "",
  3497. "CatLabFormat": "",
  3498. "Timerank": "",
  3499. "UniqueCategories": "",
  3500. "UniqueMove": ""
  3501. },
  3502. {
  3503. "Type": "SpecialCategory"
  3504. },
  3505. {
  3506. "Type": "Levels",
  3507. "ID": "0",
  3508. "Name": "",
  3509. "Blanks": "",
  3510. "Inclusion": "Generate",
  3511. "DateFunction": "",
  3512. "Generate": "Lastuse",
  3513. "RefreshLabel": "",
  3514. "RefreshDescription": "",
  3515. "RefreshShortName": "",
  3516. "NewCatsLock": "",
  3517. "CatLabFormat": "",
  3518. "Timerank": "",
  3519. "UniqueCategories": "",
  3520. "UniqueMove": ""
  3521. },
  3522. {
  3523. "Type": "SpecialCategory"
  3524. },
  3525. {
  3526. "Type": "Levels",
  3527. "ID": "0",
  3528. "Name": "",
  3529. "Blanks": "",
  3530. "Inclusion": "Generate",
  3531. "DateFunction": "",
  3532. "Generate": "Lastuse",
  3533. "RefreshLabel": "",
  3534. "RefreshDescription": "",
  3535. "RefreshShortName": "",
  3536. "NewCatsLock": "",
  3537. "CatLabFormat": "",
  3538. "Timerank": "",
  3539. "UniqueCategories": "",
  3540. "UniqueMove": ""
  3541. },
  3542. {
  3543. "Type": "SpecialCategory"
  3544. },
  3545. {
  3546. "Type": "Levels",
  3547. "ID": "0",
  3548. "Name": "",
  3549. "Blanks": "",
  3550. "Inclusion": "Generate",
  3551. "DateFunction": "",
  3552. "Generate": "Lastuse",
  3553. "RefreshLabel": "",
  3554. "RefreshDescription": "",
  3555. "RefreshShortName": "",
  3556. "NewCatsLock": "",
  3557. "CatLabFormat": "",
  3558. "Timerank": "",
  3559. "UniqueCategories": "",
  3560. "UniqueMove": ""
  3561. },
  3562. {
  3563. "Type": "SpecialCategory"
  3564. },
  3565. {
  3566. "Type": "SpecialCategory"
  3567. },
  3568. {
  3569. "Type": "SpecialCategory"
  3570. },
  3571. {
  3572. "Type": "SpecialCategory"
  3573. },
  3574. {
  3575. "Type": "SpecialCategory"
  3576. },
  3577. {
  3578. "Type": "SpecialCategory"
  3579. },
  3580. {
  3581. "Type": "SpecialCategory"
  3582. },
  3583. {
  3584. "Type": "SpecialCategory"
  3585. },
  3586. {
  3587. "Type": "SpecialCategory"
  3588. },
  3589. {
  3590. "Type": "SpecialCategory"
  3591. },
  3592. {
  3593. "Type": "SpecialCategory"
  3594. },
  3595. {
  3596. "Type": "SpecialCategory"
  3597. },
  3598. {
  3599. "Type": "SpecialCategory"
  3600. },
  3601. {
  3602. "Type": "SpecialCategory"
  3603. },
  3604. {
  3605. "Type": "SpecialCategory"
  3606. },
  3607. {
  3608. "Type": "SpecialCategory"
  3609. },
  3610. {
  3611. "Type": "SpecialCategory"
  3612. },
  3613. {
  3614. "Type": "SpecialCategory"
  3615. },
  3616. {
  3617. "Type": "SpecialCategory"
  3618. },
  3619. {
  3620. "Type": "SpecialCategory"
  3621. },
  3622. {
  3623. "Type": "SpecialCategory"
  3624. },
  3625. {
  3626. "Type": "SpecialCategory"
  3627. },
  3628. {
  3629. "Type": "SpecialCategory"
  3630. },
  3631. {
  3632. "Type": "SpecialCategory"
  3633. },
  3634. {
  3635. "Type": "SpecialCategory"
  3636. },
  3637. {
  3638. "Type": "SpecialCategory"
  3639. },
  3640. {
  3641. "Type": "SpecialCategory"
  3642. },
  3643. {
  3644. "Type": "SpecialCategory"
  3645. },
  3646. {
  3647. "Type": "SpecialCategory"
  3648. },
  3649. {
  3650. "Type": "SpecialCategory"
  3651. },
  3652. {
  3653. "Type": "SpecialCategory"
  3654. },
  3655. {
  3656. "Type": "SpecialCategory"
  3657. },
  3658. {
  3659. "Type": "SpecialCategory"
  3660. },
  3661. {
  3662. "Type": "SpecialCategory"
  3663. },
  3664. {
  3665. "Type": "SpecialCategory"
  3666. },
  3667. {
  3668. "Type": "SpecialCategory"
  3669. },
  3670. {
  3671. "Type": "SpecialCategory"
  3672. },
  3673. {
  3674. "Type": "SpecialCategory"
  3675. },
  3676. {
  3677. "Type": "MapDrills"
  3678. },
  3679. {
  3680. "Type": "ViewName"
  3681. },
  3682. {
  3683. "Type": "ViewName"
  3684. },
  3685. {
  3686. "Type": "Dimension",
  3687. "ID": "1521",
  3688. "Name": "AH-Gruppe",
  3689. "DimType": "Regular",
  3690. "EarliestDate": "",
  3691. "LatestDate": "",
  3692. "ManualPeriods": "",
  3693. "DaysInWeek": "",
  3694. "NewCatsLock": "False",
  3695. "ExcludeAutoPartitioning": "False",
  3696. "DimDefaultCategory": "0"
  3697. },
  3698. {
  3699. "Type": "Categories"
  3700. },
  3701. {
  3702. "Type": "Root",
  3703. "ID": "1523",
  3704. "Name": "Hauptbetrieb",
  3705. "Inclusion": "Generate",
  3706. "Lastuse": "20180820",
  3707. "Date": "",
  3708. "Filtered": "False",
  3709. "Suppressed": "False",
  3710. "Sign": "False",
  3711. "HideValue": "False",
  3712. "IsKeyOrphanage": "False",
  3713. "IsTruncated": "False",
  3714. "Blanks": "False"
  3715. },
  3716. {
  3717. "Type": "Drill",
  3718. "ID": "1525",
  3719. "Name": "Nach Hauptbetrieb",
  3720. "Label": "",
  3721. "Inclusion": "Suppress",
  3722. "Filtered": "False",
  3723. "Suppressed": "True",
  3724. "PrimaryDrill": "True",
  3725. "HideValue": "False",
  3726. "YearBegins": "",
  3727. "PartialWeek": "",
  3728. "ExtraWeek": "",
  3729. "WeekBegins": ""
  3730. },
  3731. {
  3732. "Type": "Levels",
  3733. "ID": "1531",
  3734. "Name": "Hauptbetrieb",
  3735. "Blanks": "( Leerstelle )",
  3736. "Inclusion": "",
  3737. "DateFunction": "None",
  3738. "Generate": "None",
  3739. "RefreshLabel": "False",
  3740. "RefreshDescription": "False",
  3741. "RefreshShortName": "False",
  3742. "NewCatsLock": "False",
  3743. "CatLabFormat": "",
  3744. "Timerank": "0",
  3745. "UniqueCategories": "False",
  3746. "UniqueMove": "False"
  3747. },
  3748. {
  3749. "Type": "Levels",
  3750. "ID": "1535",
  3751. "Name": "Standort",
  3752. "Blanks": "( Leerstelle )",
  3753. "Inclusion": "",
  3754. "DateFunction": "None",
  3755. "Generate": "None",
  3756. "RefreshLabel": "False",
  3757. "RefreshDescription": "False",
  3758. "RefreshShortName": "False",
  3759. "NewCatsLock": "False",
  3760. "CatLabFormat": "",
  3761. "Timerank": "0",
  3762. "UniqueCategories": "False",
  3763. "UniqueMove": "False"
  3764. },
  3765. {
  3766. "Type": "Levels",
  3767. "ID": "1539",
  3768. "Name": "Serviceberater",
  3769. "Blanks": "( Leerstelle )",
  3770. "Inclusion": "",
  3771. "DateFunction": "None",
  3772. "Generate": "None",
  3773. "RefreshLabel": "False",
  3774. "RefreshDescription": "False",
  3775. "RefreshShortName": "False",
  3776. "NewCatsLock": "False",
  3777. "CatLabFormat": "",
  3778. "Timerank": "0",
  3779. "UniqueCategories": "False",
  3780. "UniqueMove": "False"
  3781. },
  3782. {
  3783. "Type": "Levels",
  3784. "ID": "1547",
  3785. "Name": "Order Number",
  3786. "Blanks": "( Leerstelle )",
  3787. "Inclusion": "",
  3788. "DateFunction": "None",
  3789. "Generate": "None",
  3790. "RefreshLabel": "False",
  3791. "RefreshDescription": "False",
  3792. "RefreshShortName": "False",
  3793. "NewCatsLock": "False",
  3794. "CatLabFormat": "",
  3795. "Timerank": "0",
  3796. "UniqueCategories": "False",
  3797. "UniqueMove": "False"
  3798. },
  3799. {
  3800. "Type": "MapDrills"
  3801. },
  3802. {
  3803. "Type": "ViewName"
  3804. },
  3805. {
  3806. "Type": "ViewName"
  3807. },
  3808. {
  3809. "Type": "Dimension",
  3810. "ID": "1551",
  3811. "Name": "Fabrikat",
  3812. "DimType": "Regular",
  3813. "EarliestDate": "",
  3814. "LatestDate": "",
  3815. "ManualPeriods": "",
  3816. "DaysInWeek": "",
  3817. "NewCatsLock": "False",
  3818. "ExcludeAutoPartitioning": "False",
  3819. "DimDefaultCategory": "0"
  3820. },
  3821. {
  3822. "Type": "Categories"
  3823. },
  3824. {
  3825. "Type": "Root",
  3826. "ID": "1553",
  3827. "Name": "Fabrikat",
  3828. "Inclusion": "Generate",
  3829. "Lastuse": "20180820",
  3830. "Date": "",
  3831. "Filtered": "False",
  3832. "Suppressed": "False",
  3833. "Sign": "False",
  3834. "HideValue": "False",
  3835. "IsKeyOrphanage": "False",
  3836. "IsTruncated": "False",
  3837. "Blanks": "False"
  3838. },
  3839. {
  3840. "Type": "Drill",
  3841. "ID": "1555",
  3842. "Name": "Nach Fabrikat",
  3843. "Label": "",
  3844. "Inclusion": "Suppress",
  3845. "Filtered": "False",
  3846. "Suppressed": "True",
  3847. "PrimaryDrill": "True",
  3848. "HideValue": "False",
  3849. "YearBegins": "",
  3850. "PartialWeek": "",
  3851. "ExtraWeek": "",
  3852. "WeekBegins": ""
  3853. },
  3854. {
  3855. "Type": "Levels",
  3856. "ID": "1561",
  3857. "Name": "Fabrikat",
  3858. "Blanks": "( Leerstelle )",
  3859. "Inclusion": "",
  3860. "DateFunction": "None",
  3861. "Generate": "None",
  3862. "RefreshLabel": "False",
  3863. "RefreshDescription": "False",
  3864. "RefreshShortName": "False",
  3865. "NewCatsLock": "False",
  3866. "CatLabFormat": "",
  3867. "Timerank": "0",
  3868. "UniqueCategories": "False",
  3869. "UniqueMove": "False"
  3870. },
  3871. {
  3872. "Type": "Levels",
  3873. "ID": "1565",
  3874. "Name": "Model",
  3875. "Blanks": "( Leerstelle )",
  3876. "Inclusion": "",
  3877. "DateFunction": "None",
  3878. "Generate": "None",
  3879. "RefreshLabel": "False",
  3880. "RefreshDescription": "False",
  3881. "RefreshShortName": "False",
  3882. "NewCatsLock": "False",
  3883. "CatLabFormat": "",
  3884. "Timerank": "0",
  3885. "UniqueCategories": "False",
  3886. "UniqueMove": "False"
  3887. },
  3888. {
  3889. "Type": "Levels",
  3890. "ID": "1569",
  3891. "Name": "Fahrzeug",
  3892. "Blanks": "( Leerstelle )",
  3893. "Inclusion": "",
  3894. "DateFunction": "None",
  3895. "Generate": "None",
  3896. "RefreshLabel": "False",
  3897. "RefreshDescription": "False",
  3898. "RefreshShortName": "False",
  3899. "NewCatsLock": "False",
  3900. "CatLabFormat": "",
  3901. "Timerank": "0",
  3902. "UniqueCategories": "False",
  3903. "UniqueMove": "False"
  3904. },
  3905. {
  3906. "Type": "Category"
  3907. },
  3908. {
  3909. "Type": "Category"
  3910. },
  3911. {
  3912. "Type": "Category"
  3913. },
  3914. {
  3915. "Type": "MapDrills"
  3916. },
  3917. {
  3918. "Type": "ViewName"
  3919. },
  3920. {
  3921. "Type": "ViewName"
  3922. },
  3923. {
  3924. "Type": "Dimension",
  3925. "ID": "1575",
  3926. "Name": "Kostenstelle",
  3927. "DimType": "Regular",
  3928. "EarliestDate": "",
  3929. "LatestDate": "",
  3930. "ManualPeriods": "",
  3931. "DaysInWeek": "",
  3932. "NewCatsLock": "False",
  3933. "ExcludeAutoPartitioning": "False",
  3934. "DimDefaultCategory": "0"
  3935. },
  3936. {
  3937. "Type": "Categories"
  3938. },
  3939. {
  3940. "Type": "Root",
  3941. "ID": "1577",
  3942. "Name": "Kostenstelle",
  3943. "Inclusion": "Generate",
  3944. "Lastuse": "20180820",
  3945. "Date": "",
  3946. "Filtered": "False",
  3947. "Suppressed": "False",
  3948. "Sign": "False",
  3949. "HideValue": "False",
  3950. "IsKeyOrphanage": "False",
  3951. "IsTruncated": "False",
  3952. "Blanks": "False"
  3953. },
  3954. {
  3955. "Type": "Drill",
  3956. "ID": "1579",
  3957. "Name": "Nach Kostenstelle",
  3958. "Label": "",
  3959. "Inclusion": "Suppress",
  3960. "Filtered": "False",
  3961. "Suppressed": "True",
  3962. "PrimaryDrill": "True",
  3963. "HideValue": "False",
  3964. "YearBegins": "",
  3965. "PartialWeek": "",
  3966. "ExtraWeek": "",
  3967. "WeekBegins": ""
  3968. },
  3969. {
  3970. "Type": "Levels",
  3971. "ID": "1585",
  3972. "Name": "Kostenstelle",
  3973. "Blanks": "( Leerstelle )",
  3974. "Inclusion": "",
  3975. "DateFunction": "None",
  3976. "Generate": "None",
  3977. "RefreshLabel": "False",
  3978. "RefreshDescription": "False",
  3979. "RefreshShortName": "False",
  3980. "NewCatsLock": "False",
  3981. "CatLabFormat": "",
  3982. "Timerank": "0",
  3983. "UniqueCategories": "False",
  3984. "UniqueMove": "False"
  3985. },
  3986. {
  3987. "Type": "Category"
  3988. },
  3989. {
  3990. "Type": "Category"
  3991. },
  3992. {
  3993. "Type": "MapDrills"
  3994. },
  3995. {
  3996. "Type": "ViewName"
  3997. },
  3998. {
  3999. "Type": "ViewName"
  4000. },
  4001. {
  4002. "Type": "Dimension",
  4003. "ID": "1591",
  4004. "Name": "Marke",
  4005. "DimType": "Regular",
  4006. "EarliestDate": "",
  4007. "LatestDate": "",
  4008. "ManualPeriods": "",
  4009. "DaysInWeek": "",
  4010. "NewCatsLock": "False",
  4011. "ExcludeAutoPartitioning": "False",
  4012. "DimDefaultCategory": "0"
  4013. },
  4014. {
  4015. "Type": "Categories"
  4016. },
  4017. {
  4018. "Type": "Root",
  4019. "ID": "1593",
  4020. "Name": "Marke",
  4021. "Inclusion": "Generate",
  4022. "Lastuse": "20180820",
  4023. "Date": "",
  4024. "Filtered": "False",
  4025. "Suppressed": "False",
  4026. "Sign": "False",
  4027. "HideValue": "False",
  4028. "IsKeyOrphanage": "False",
  4029. "IsTruncated": "False",
  4030. "Blanks": "False"
  4031. },
  4032. {
  4033. "Type": "Drill",
  4034. "ID": "1595",
  4035. "Name": "Nach Marke",
  4036. "Label": "",
  4037. "Inclusion": "Suppress",
  4038. "Filtered": "False",
  4039. "Suppressed": "True",
  4040. "PrimaryDrill": "True",
  4041. "HideValue": "False",
  4042. "YearBegins": "",
  4043. "PartialWeek": "",
  4044. "ExtraWeek": "",
  4045. "WeekBegins": ""
  4046. },
  4047. {
  4048. "Type": "Levels",
  4049. "ID": "1601",
  4050. "Name": "Marke",
  4051. "Blanks": "( Leerstelle )",
  4052. "Inclusion": "",
  4053. "DateFunction": "None",
  4054. "Generate": "None",
  4055. "RefreshLabel": "False",
  4056. "RefreshDescription": "False",
  4057. "RefreshShortName": "False",
  4058. "NewCatsLock": "False",
  4059. "CatLabFormat": "",
  4060. "Timerank": "0",
  4061. "UniqueCategories": "False",
  4062. "UniqueMove": "False"
  4063. },
  4064. {
  4065. "Type": "Category"
  4066. },
  4067. {
  4068. "Type": "Category"
  4069. },
  4070. {
  4071. "Type": "Category"
  4072. },
  4073. {
  4074. "Type": "MapDrills"
  4075. },
  4076. {
  4077. "Type": "ViewName"
  4078. },
  4079. {
  4080. "Type": "ViewName"
  4081. },
  4082. {
  4083. "Type": "Dimension",
  4084. "ID": "1651",
  4085. "Name": "Kunde",
  4086. "DimType": "Regular",
  4087. "EarliestDate": "",
  4088. "LatestDate": "",
  4089. "ManualPeriods": "",
  4090. "DaysInWeek": "",
  4091. "NewCatsLock": "False",
  4092. "ExcludeAutoPartitioning": "False",
  4093. "DimDefaultCategory": "0"
  4094. },
  4095. {
  4096. "Type": "Categories"
  4097. },
  4098. {
  4099. "Type": "Root",
  4100. "ID": "1653",
  4101. "Name": "Kunde",
  4102. "Inclusion": "Generate",
  4103. "Lastuse": "20180820",
  4104. "Date": "",
  4105. "Filtered": "False",
  4106. "Suppressed": "False",
  4107. "Sign": "False",
  4108. "HideValue": "False",
  4109. "IsKeyOrphanage": "False",
  4110. "IsTruncated": "False",
  4111. "Blanks": "False"
  4112. },
  4113. {
  4114. "Type": "Drill",
  4115. "ID": "1655",
  4116. "Name": "Nach Kunde",
  4117. "Label": "",
  4118. "Inclusion": "Suppress",
  4119. "Filtered": "False",
  4120. "Suppressed": "True",
  4121. "PrimaryDrill": "True",
  4122. "HideValue": "False",
  4123. "YearBegins": "",
  4124. "PartialWeek": "",
  4125. "ExtraWeek": "",
  4126. "WeekBegins": ""
  4127. },
  4128. {
  4129. "Type": "Levels",
  4130. "ID": "1661",
  4131. "Name": "Kunde",
  4132. "Blanks": "( Leerstelle )",
  4133. "Inclusion": "",
  4134. "DateFunction": "None",
  4135. "Generate": "None",
  4136. "RefreshLabel": "False",
  4137. "RefreshDescription": "False",
  4138. "RefreshShortName": "False",
  4139. "NewCatsLock": "False",
  4140. "CatLabFormat": "",
  4141. "Timerank": "0",
  4142. "UniqueCategories": "False",
  4143. "UniqueMove": "False"
  4144. },
  4145. {
  4146. "Type": "MapDrills"
  4147. },
  4148. {
  4149. "Type": "ViewName"
  4150. },
  4151. {
  4152. "Type": "ViewName"
  4153. },
  4154. {
  4155. "Type": "Dimension",
  4156. "ID": "1665",
  4157. "Name": "Auftrag Detail",
  4158. "DimType": "Regular",
  4159. "EarliestDate": "",
  4160. "LatestDate": "",
  4161. "ManualPeriods": "",
  4162. "DaysInWeek": "",
  4163. "NewCatsLock": "False",
  4164. "ExcludeAutoPartitioning": "False",
  4165. "DimDefaultCategory": "0"
  4166. },
  4167. {
  4168. "Type": "Categories"
  4169. },
  4170. {
  4171. "Type": "Root",
  4172. "ID": "1667",
  4173. "Name": "verk. AW",
  4174. "Inclusion": "Generate",
  4175. "Lastuse": "20180820",
  4176. "Date": "",
  4177. "Filtered": "False",
  4178. "Suppressed": "False",
  4179. "Sign": "False",
  4180. "HideValue": "False",
  4181. "IsKeyOrphanage": "False",
  4182. "IsTruncated": "False",
  4183. "Blanks": "False"
  4184. },
  4185. {
  4186. "Type": "Drill",
  4187. "ID": "1669",
  4188. "Name": "Nach verk. AW",
  4189. "Label": "",
  4190. "Inclusion": "Suppress",
  4191. "Filtered": "False",
  4192. "Suppressed": "True",
  4193. "PrimaryDrill": "True",
  4194. "HideValue": "False",
  4195. "YearBegins": "",
  4196. "PartialWeek": "",
  4197. "ExtraWeek": "",
  4198. "WeekBegins": ""
  4199. },
  4200. {
  4201. "Type": "Levels",
  4202. "ID": "10233",
  4203. "Name": "Serviceberater",
  4204. "Blanks": "( Leerstelle )",
  4205. "Inclusion": "",
  4206. "DateFunction": "None",
  4207. "Generate": "None",
  4208. "RefreshLabel": "False",
  4209. "RefreshDescription": "False",
  4210. "RefreshShortName": "False",
  4211. "NewCatsLock": "False",
  4212. "CatLabFormat": "",
  4213. "Timerank": "0",
  4214. "UniqueCategories": "False",
  4215. "UniqueMove": "False"
  4216. },
  4217. {
  4218. "Type": "Levels",
  4219. "ID": "10227",
  4220. "Name": "Order Number",
  4221. "Blanks": "( Leerstelle )",
  4222. "Inclusion": "",
  4223. "DateFunction": "None",
  4224. "Generate": "None",
  4225. "RefreshLabel": "False",
  4226. "RefreshDescription": "False",
  4227. "RefreshShortName": "False",
  4228. "NewCatsLock": "False",
  4229. "CatLabFormat": "",
  4230. "Timerank": "0",
  4231. "UniqueCategories": "False",
  4232. "UniqueMove": "False"
  4233. },
  4234. {
  4235. "Type": "MapDrills"
  4236. },
  4237. {
  4238. "Type": "ViewName"
  4239. },
  4240. {
  4241. "Type": "ViewName"
  4242. },
  4243. {
  4244. "Type": "Dimension",
  4245. "ID": "1693",
  4246. "Name": "Serviceberater",
  4247. "DimType": "Regular",
  4248. "EarliestDate": "",
  4249. "LatestDate": "",
  4250. "ManualPeriods": "",
  4251. "DaysInWeek": "",
  4252. "NewCatsLock": "False",
  4253. "ExcludeAutoPartitioning": "False",
  4254. "DimDefaultCategory": "0"
  4255. },
  4256. {
  4257. "Type": "Categories"
  4258. },
  4259. {
  4260. "Type": "Root",
  4261. "ID": "1695",
  4262. "Name": "Serviceberater",
  4263. "Inclusion": "Generate",
  4264. "Lastuse": "20180820",
  4265. "Date": "",
  4266. "Filtered": "False",
  4267. "Suppressed": "False",
  4268. "Sign": "False",
  4269. "HideValue": "False",
  4270. "IsKeyOrphanage": "False",
  4271. "IsTruncated": "False",
  4272. "Blanks": "False"
  4273. },
  4274. {
  4275. "Type": "Drill",
  4276. "ID": "1697",
  4277. "Name": "Nach Serviceberater",
  4278. "Label": "",
  4279. "Inclusion": "Suppress",
  4280. "Filtered": "False",
  4281. "Suppressed": "True",
  4282. "PrimaryDrill": "True",
  4283. "HideValue": "False",
  4284. "YearBegins": "",
  4285. "PartialWeek": "",
  4286. "ExtraWeek": "",
  4287. "WeekBegins": ""
  4288. },
  4289. {
  4290. "Type": "Levels",
  4291. "ID": "1703",
  4292. "Name": "Serviceberater",
  4293. "Blanks": "( Leerstelle )",
  4294. "Inclusion": "",
  4295. "DateFunction": "None",
  4296. "Generate": "None",
  4297. "RefreshLabel": "False",
  4298. "RefreshDescription": "False",
  4299. "RefreshShortName": "False",
  4300. "NewCatsLock": "False",
  4301. "CatLabFormat": "",
  4302. "Timerank": "0",
  4303. "UniqueCategories": "False",
  4304. "UniqueMove": "False"
  4305. },
  4306. {
  4307. "Type": "Levels",
  4308. "ID": "14777",
  4309. "Name": "Order Number",
  4310. "Blanks": "( Leer )",
  4311. "Inclusion": "",
  4312. "DateFunction": "None",
  4313. "Generate": "None",
  4314. "RefreshLabel": "False",
  4315. "RefreshDescription": "False",
  4316. "RefreshShortName": "False",
  4317. "NewCatsLock": "False",
  4318. "CatLabFormat": "",
  4319. "Timerank": "0",
  4320. "UniqueCategories": "False",
  4321. "UniqueMove": "False"
  4322. },
  4323. {
  4324. "Type": "MapDrills"
  4325. },
  4326. {
  4327. "Type": "ViewName"
  4328. },
  4329. {
  4330. "Type": "ViewName"
  4331. },
  4332. {
  4333. "Type": "Dimension",
  4334. "ID": "15741",
  4335. "Name": "Auftragsart",
  4336. "DimType": "Regular",
  4337. "EarliestDate": "",
  4338. "LatestDate": "",
  4339. "ManualPeriods": "",
  4340. "DaysInWeek": "",
  4341. "NewCatsLock": "False",
  4342. "ExcludeAutoPartitioning": "False",
  4343. "DimDefaultCategory": "0"
  4344. },
  4345. {
  4346. "Type": "Categories"
  4347. },
  4348. {
  4349. "Type": "Root",
  4350. "ID": "15743",
  4351. "Name": "Auftragsart",
  4352. "Inclusion": "Generate",
  4353. "Lastuse": "20200615",
  4354. "Date": "",
  4355. "Filtered": "False",
  4356. "Suppressed": "False",
  4357. "Sign": "False",
  4358. "HideValue": "False",
  4359. "IsKeyOrphanage": "False",
  4360. "IsTruncated": "False",
  4361. "Blanks": "False"
  4362. },
  4363. {
  4364. "Type": "Drill",
  4365. "ID": "15745",
  4366. "Name": "Nach Auftragsart",
  4367. "Label": "",
  4368. "Inclusion": "Suppress",
  4369. "Filtered": "False",
  4370. "Suppressed": "True",
  4371. "PrimaryDrill": "True",
  4372. "HideValue": "False",
  4373. "YearBegins": "",
  4374. "PartialWeek": "",
  4375. "ExtraWeek": "",
  4376. "WeekBegins": ""
  4377. },
  4378. {
  4379. "Type": "Levels",
  4380. "ID": "15751",
  4381. "Name": "Auftragsart",
  4382. "Blanks": "( Leer )",
  4383. "Inclusion": "",
  4384. "DateFunction": "None",
  4385. "Generate": "None",
  4386. "RefreshLabel": "False",
  4387. "RefreshDescription": "False",
  4388. "RefreshShortName": "False",
  4389. "NewCatsLock": "False",
  4390. "CatLabFormat": "",
  4391. "Timerank": "0",
  4392. "UniqueCategories": "False",
  4393. "UniqueMove": "False"
  4394. },
  4395. {
  4396. "Type": "MapDrills"
  4397. },
  4398. {
  4399. "Type": "ViewName"
  4400. },
  4401. {
  4402. "Type": "ViewName"
  4403. },
  4404. {
  4405. "Type": "Measure"
  4406. },
  4407. {
  4408. "Type": "Measure"
  4409. },
  4410. {
  4411. "Type": "Measure"
  4412. },
  4413. {
  4414. "Type": "Measure"
  4415. },
  4416. {
  4417. "Type": "Measure"
  4418. },
  4419. {
  4420. "Type": "Measure"
  4421. },
  4422. {
  4423. "Type": "Signon"
  4424. },
  4425. {
  4426. "Type": "Signon"
  4427. },
  4428. {
  4429. "Type": "Signon"
  4430. },
  4431. {
  4432. "Type": "Cube"
  4433. },
  4434. {
  4435. "Type": "DimensionView"
  4436. },
  4437. {
  4438. "Type": "DimensionView"
  4439. },
  4440. {
  4441. "Type": "DimensionView"
  4442. },
  4443. {
  4444. "Type": "DimensionView"
  4445. },
  4446. {
  4447. "Type": "DimensionView"
  4448. }
  4449. ]