V_Verkauf.mdl 477 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953
  1. Name "Neues Modell" ModelCodePage "ibm-5348_P100-1997" AutoAccess False
  2. UpdateCycle 87 ModelStamp 1193670307 Version "10.2.6111.504" ModelCategoryOrderDefault OrderUsePreference
  3. ModelOrderedByDefault False ModelNonRollupHierarchies False
  4. DataSource 1840423 "current_date_Prognose" Separator ";" SourceType FlatFile_ColNames
  5. CharacterSet Ansi DecimalSep "," Thousandsep "." Columns True Timing PopYesCreateDefault
  6. Source "c:\globalcube\system\ari\export\current_date_prognose.csv" SetCurrent True
  7. ServerSource False Speed False Presummarized False StreamExtractSize 0
  8. OrgName 1840425 "Bundeslaender Id" Origin Generated Offset 0 Column "Bundeslaender Id"
  9. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  10. OrgName 1840427 "Datum" Origin Generated Offset 1 Column "Invoice Date"
  11. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  12. OrgName 1840429 "Wochentage Id" Origin Generated Offset 2 Column "Wochentage Id"
  13. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  14. OrgName 1840431 "Arbeitstag Mofr" Origin Generated Offset 3 Column "Arbeitstag Mofr"
  15. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  16. OrgName 1840433 "Zaehler Mofr" Origin Generated Offset 4 Column "Zaehler Mofr"
  17. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  18. OrgName 1840435 "Summe Mofr" Origin Generated Offset 5 Column "Summe Mofr"
  19. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  20. OrgName 1840437 "Arbeitstag Mosa" Origin Generated Offset 6 Column "Arbeitstag Mosa"
  21. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  22. OrgName 1840439 "Zaehler Mosa" Origin Generated Offset 7 Column "Zaehler Mosa"
  23. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  24. OrgName 1840441 "Summe Mosa" Origin Generated Offset 8 Column "Summe Mosa"
  25. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  26. OrgName 1840443 "Feiertage Id" Origin Generated Offset 9 Column "Feiertage Id"
  27. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  28. OrgName 1840445 "Jahr" Origin Generated Offset 10 Column "Jahr" Storage Default
  29. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  30. OrgName 1840447 "Arbeitstag Nr Jahr" Origin Generated Offset 11 Column "Arbeitstag Nr Jahr"
  31. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  32. OrgName 1840449 "Gesamt Arbeitstage" Origin Generated Offset 12 Column "Gesamt Arbeitstage"
  33. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  34. DataSource 1840451 "NW_GW_VK_TIM" Separator ";" SourceType FlatFile_ColNames
  35. CharacterSet Ansi DecimalSep "," Thousandsep "." Columns True Timing PopYesCreateDefault
  36. Source "c:\globalcube\system\ari\export\nw_gw_vk_tim.csv" SetCurrent False
  37. ServerSource False Speed False Presummarized False StreamExtractSize 0
  38. OrgName 1840453 "No" Origin Generated Offset 0 Column "No" Storage Default
  39. Scale 0 Size 1 Decimals 0 Class Description InputScale 0 TimeArray Off
  40. ColSrcType None
  41. OrgName 1840455 "Name" Origin Generated Offset 1 Column "Name" Storage Default
  42. Scale 0 Size 1 Decimals 0 Class Description InputScale 0 TimeArray Off
  43. ColSrcType None
  44. OrgName 1840457 "Account Type" Origin Generated Offset 2 Column "Account Type"
  45. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  46. OrgName 1840459 "Department Code" Origin Generated Offset 14 Column "Department Code"
  47. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  48. OrgName 1840461 "Make Code" Origin Generated Offset 15 Column "Make Code"
  49. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  50. OrgName 1840463 "Income Balance" Origin Generated Offset 5 Column "Income Balance"
  51. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  52. OrgName 1840465 "Entry No" Origin Generated Offset 6 Column "Entry No"
  53. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  54. OrgName 1840467 "G L Account No" Origin Generated Offset 7 Column "G L Account No"
  55. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  56. OrgName 1840469 "Posting Date" Origin Generated Offset 8 Column "Posting Date"
  57. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  58. OrgName 1840471 "Document Type" Origin Generated Offset 9 Column "Document Type"
  59. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  60. OrgName 1840473 "Document No" Origin Generated Offset 10 Column "Document No"
  61. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  62. OrgName 1840475 "Description" Origin Generated Offset 11 Column "Description"
  63. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  64. OrgName 1840477 "Amount" Origin Generated Offset 12 Column "Amount" Storage Default
  65. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  66. OrgName 1840479 "Bal Account No" Origin Generated Offset 13 Column "Bal Account No"
  67. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  68. OrgName 1840485 "User Id" Origin Generated Offset 16 Column "User Id" Storage Default
  69. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  70. OrgName 1840487 "Source Code" Origin Generated Offset 17 Column "Source Code"
  71. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  72. OrgName 1840489 "Quantity" Origin Generated Offset 18 Column "Quantity"
  73. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  74. OrgName 1840491 "Debit Amount" Origin Generated Offset 19 Column "Debit Amount"
  75. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  76. OrgName 1840493 "Credit Amount" Origin Generated Offset 20 Column "Credit Amount"
  77. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  78. OrgName 1840495 "Document Date" Origin Generated Offset 21 Column "Document Date"
  79. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  80. OrgName 1840497 "Source Type" Origin Generated Offset 22 Column "Source Type"
  81. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  82. OrgName 1840499 "Source No" Origin Generated Offset 23 Column "Source No"
  83. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  84. OrgName 1840501 "No Series" Origin Generated Offset 24 Column "No Series"
  85. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  86. OrgName 1840503 "Branch Code" Origin Generated Offset 25 Column "Branch Code"
  87. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  88. OrgName 1840505 "Main Area" Origin Generated Offset 26 Column "Main Area"
  89. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  90. OrgName 1840507 "Vin" Origin Generated Offset 27 Column "Vin" Storage Default
  91. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  92. OrgName 1840509 "Book No" Origin Generated Offset 28 Column "Book No" Storage Default
  93. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  94. OrgName 1840511 "Veh Source Code" Origin Generated Offset 29 Column "Veh Source Code"
  95. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  96. OrgName 1840513 "Betrag" Origin Generated Offset 30 Column "Betrag" Storage Default
  97. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  98. OrgName 1840515 "Vin_Vehicle" Origin Generated Offset 31 Column "Vin_Vehicle"
  99. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  100. OrgName 1840517 "Vehicle Status" Origin Generated Offset 32 Column "Vehicle Status"
  101. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  102. OrgName 1840519 "Model_ori" Origin Generated Offset 33 Column "Model_ori"
  103. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  104. OrgName 1840521 "Type" Origin Generated Offset 34 Column "Type" Storage Default
  105. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  106. OrgName 1840523 "Class" Origin Generated Offset 35 Column "Class" Storage Default
  107. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  108. OrgName 1840525 "Model No" Origin Generated Offset 36 Column "Model No"
  109. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  110. OrgName 1840527 "Hauptbetrieb" Origin Generated Offset 37 Column "Hauptbetrieb"
  111. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  112. OrgName 1840529 "Standort_alt" Origin Generated Offset 38 Column "Standort_alt"
  113. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  114. OrgName 1840531 "Make Code_Vehicle" Origin Generated Offset 39 Column "Make Code_Vehicle"
  115. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  116. OrgName 1840533 "Fabrikat_ori" Origin Generated Offset 40 Column "Fabrikat_ori"
  117. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  118. OrgName 1840535 "Model" Origin Generated Offset 41 Column "Model" Storage Default
  119. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  120. OrgName 1840537 "Market Segment Code" Origin Generated Offset 42 Column "Market Segment Code"
  121. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  122. OrgName 1840539 "Modellbez" Origin Generated Offset 43 Column "Modellbez"
  123. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  124. OrgName 1840541 "Fahrzeugart" Origin Generated Offset 44 Column "Fahrzeugart"
  125. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  126. OrgName 1840543 "Vat Prod Posting Group" Origin Generated Offset 45 Column "Vat Prod Posting Group"
  127. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  128. OrgName 1840545 "Fahrzeugtyp" Origin Generated Offset 135 Column "Fahrzeugtyp"
  129. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  130. OrgName 1840547 "FZG" Origin Generated Offset 47 Column "FZG" Storage Default
  131. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  132. OrgName 1840997 "Fahrzeugtyp_alt" Origin Generated Offset 46 Column "Fahrzeugtyp_alt"
  133. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  134. OrgName 1840549 "Location Code" Origin Generated Offset 48 Column "Location Code"
  135. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  136. OrgName 1840551 "VB_Einkauf" Origin Generated Offset 49 Column "VB_Einkauf"
  137. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  138. OrgName 1840553 "Purchase Receipt Date" Origin Generated Offset 50 Column "Purchase Receipt Date"
  139. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  140. OrgName 1840555 "Standtage_ori" Origin Generated Offset 51 Column "Standtage_ori"
  141. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  142. OrgName 1840557 "Standtagestaffel" Origin Generated Offset 52 Column "Standtagestaffel"
  143. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  144. OrgName 1840559 "Initial Registration" Origin Generated Offset 53 Column "Initial Registration"
  145. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  146. OrgName 1840561 "EZ/Eingang" Origin Generated Offset 54 Column "EZ/Eingang"
  147. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  148. OrgName 1840563 "Polster" Origin Generated Offset 55 Column "Polster" Storage Default
  149. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  150. OrgName 1840565 "Farbe" Origin Generated Offset 56 Column "Farbe" Storage Default
  151. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  152. OrgName 1840567 "Einsatz_ori" Origin Generated Offset 57 Column "Einsatz_ori"
  153. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  154. OrgName 1840569 "Heute" Origin Generated Offset 58 Column "Heute" Storage Default
  155. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  156. OrgName 1840571 "Fahrzeugstatus" Origin Generated Offset 59 Column "Fahrzeugstatus"
  157. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  158. OrgName 1840573 "FZG-Liste" Origin Generated Offset 60 Column "FZG-Liste"
  159. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  160. OrgName 1840575 "Anzahl" Origin Generated Offset 61 Column "Anzahl" Storage Default
  161. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  162. OrgName 1840577 "Standtage" Origin Generated Offset 62 Column "Standtage"
  163. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  164. OrgName 1840579 "Inventory Posting Group" Origin Generated Offset 63 Column "Inventory Posting Group"
  165. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  166. OrgName 1840581 "Date Of Sale" Origin Generated Offset 64 Column "Date Of Sale"
  167. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  168. OrgName 1840583 "Invoice Date" Origin Generated Offset 65 Column "Invoice Date"
  169. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  170. OrgName 1840585 "Customer No" Origin Generated Offset 66 Column "Customer No"
  171. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  172. OrgName 1840587 "No_Customer" Origin Generated Offset 67 Column "No_Customer"
  173. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  174. OrgName 1840589 "Name_Customer" Origin Generated Offset 68 Column "Name_Customer"
  175. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  176. OrgName 1840591 "Kunde" Origin Generated Offset 69 Column "Kunde" Storage Default
  177. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  178. OrgName 1840593 "Customer Type" Origin Generated Offset 70 Column "Customer Type"
  179. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  180. OrgName 1840595 "Kundenart" Origin Generated Offset 71 Column "Kundenart"
  181. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  182. OrgName 1840597 "Old Customer No" Origin Generated Offset 73 Column "Old Customer No"
  183. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  184. OrgName 1840601 "No_Vorbesitzer" Origin Generated Offset 74 Column "No_Vorbesitzer"
  185. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  186. OrgName 1840603 "Name_Vorbesitzer" Origin Generated Offset 75 Column "Name_Vorbesitzer"
  187. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  188. OrgName 1840605 "Vorbesitzer" Origin Generated Offset 76 Column "Vorbesitzer"
  189. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  190. OrgName 1840607 "Engine Code" Origin Generated Offset 77 Column "Engine Code"
  191. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  192. OrgName 1840609 "Motor Code" Origin Generated Offset 78 Column "Motor Code"
  193. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  194. OrgName 1840611 "Geschäftsart" Origin Generated Offset 79 Column "Geschäftsart"
  195. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  196. OrgName 1840613 "FZG_Liste_1_ori" Origin Generated Offset 80 Column "FZG_Liste_1_ori"
  197. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  198. OrgName 1840615 "FZG_Liste_2" Origin Generated Offset 81 Column "FZG_Liste_2"
  199. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  200. OrgName 1840617 "FZG_Liste_3" Origin Generated Offset 82 Column "FZG_Liste_3"
  201. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  202. OrgName 1840619 "FZG_Liste_4" Origin Generated Offset 83 Column "FZG_Liste_4"
  203. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  204. OrgName 1840621 "Erlös" Origin Generated Offset 84 Column "Erlös" Storage Default
  205. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  206. OrgName 1840623 "Einsatz" Origin Generated Offset 85 Column "Einsatz" Storage Default
  207. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  208. OrgName 1840625 "EK Fahrzeug" Origin Generated Offset 86 Column "EK Fahrzeug"
  209. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  210. OrgName 1840627 "Bonus" Origin Generated Offset 87 Column "Bonus" Storage Default
  211. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  212. OrgName 1840629 "int. Kosten" Origin Generated Offset 88 Column "int. Kosten"
  213. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  214. OrgName 1840631 "Current Branch Book No" Origin Generated Offset 89 Column "Current Branch Book No"
  215. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  216. OrgName 1840633 "Current Book No" Origin Generated Offset 90 Column "Current Book No"
  217. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  218. OrgName 1840635 "Summe EK-FZG" Origin Generated Offset 91 Column "Summe EK-FZG"
  219. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  220. OrgName 1840637 "Fabrikat" Origin Generated Offset 92 Column "Fabrikat"
  221. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  222. OrgName 1840639 "Buchnummer gleich_ja_nein" Origin Generated Offset 93
  223. Column "Buchnummer gleich_ja_nein" Storage Default Scale 0 Size 1 Decimals 0
  224. InputScale 0 TimeArray Off ColSrcType None
  225. OrgName 1840641 "Menge1" Origin Generated Offset 94 Column "Menge1" Storage Default
  226. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  227. OrgName 1840643 "Menge2" Origin Generated Offset 95 Column "Menge2" Storage Default
  228. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  229. OrgName 1840645 "Menge3" Origin Generated Offset 96 Column "Menge3" Storage Default
  230. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  231. OrgName 1840647 "Menge4" Origin Generated Offset 97 Column "Menge4" Storage Default
  232. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  233. OrgName 1840649 "VIN + PostingDate" Origin Generated Offset 98 Column "VIN + PostingDate"
  234. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  235. OrgName 1840651 "Summe Menge4" Origin Generated Offset 99 Column "Summe Menge4"
  236. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  237. OrgName 1840653 "Menge_2_test" Origin Generated Offset 100 Column "Menge_2_test"
  238. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  239. OrgName 1840655 "Menge3_test" Origin Generated Offset 101 Column "Menge3_test"
  240. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  241. OrgName 1840657 "Menge4_test" Origin Generated Offset 102 Column "Menge4_test"
  242. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  243. OrgName 1840659 "Fahrzeugart_Schmidt" Origin Generated Offset 103 Column "Fahrzeugart_Schmidt"
  244. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  245. OrgName 1840661 "Salespers Purch Code_VLE" Origin Generated Offset 104
  246. Column "Salespers Purch Code_VLE" Storage Default Scale 0 Size 1 Decimals 0
  247. InputScale 0 TimeArray Off ColSrcType None
  248. OrgName 1840663 "Code_für_VEH_Ledger_Entry" Origin Generated Offset 105
  249. Column "Code_für_VEH_Ledger_Entry" Storage Default Scale 0 Size 1 Decimals 0
  250. InputScale 0 TimeArray Off ColSrcType None
  251. OrgName 1840665 "Name_für_VEH_Ledger_Entry" Origin Generated Offset 106
  252. Column "Name_für_VEH_Ledger_Entry" Storage Default Scale 0 Size 1 Decimals 0
  253. InputScale 0 TimeArray Off ColSrcType None
  254. OrgName 1840667 "Verkäufer" Origin Generated Offset 107 Column "Verkäufer"
  255. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  256. OrgName 1840669 "FZG_Liste_1_falsch" Origin Generated Offset 108 Column "FZG_Liste_1_falsch"
  257. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  258. OrgName 1840671 "FZG_Liste_0_ori" Origin Generated Offset 109 Column "FZG_Liste_0_ori"
  259. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  260. OrgName 1840673 "FZG_Liste_1" Origin Generated Offset 110 Column "FZG_Liste_1"
  261. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  262. OrgName 1840675 "FZG_Liste_0" Origin Generated Offset 111 Column "FZG_Liste_0"
  263. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  264. OrgName 1840677 "Beleg" Origin Generated Offset 112 Column "Beleg" Storage Default
  265. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  266. OrgName 1840679 "Standort_FIBU" Origin Generated Offset 113 Column "Standort_FIBU"
  267. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  268. OrgName 1840681 "Fahrzeugart_neu" Origin Generated Offset 114 Column "Fahrzeugart_neu"
  269. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  270. OrgName 1840683 "Standort" Origin Generated Offset 115 Column "Standort"
  271. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  272. OrgName 1840685 "Summe_Betrag" Origin Generated Offset 116 Column "Summe_Betrag"
  273. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  274. OrgName 1840687 "Country Code_Kunde" Origin Generated Offset 117 Column "Country Code_Kunde"
  275. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  276. OrgName 1840689 "Vat Bus Posting Group_Kunde" Origin Generated Offset 118
  277. Column "Vat Bus Posting Group_Kunde" Storage Default Scale 0 Size 1 Decimals 0
  278. InputScale 0 TimeArray Off ColSrcType None
  279. OrgName 1840691 "FZG_Liste_5_ori" Origin Generated Offset 119 Column "FZG_Liste_5_ori"
  280. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  281. OrgName 1840693 "Customer Group Code" Origin Generated Offset 120 Column "Customer Group Code"
  282. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  283. OrgName 1840695 "FZG_Liste_5" Origin Generated Offset 121 Column "FZG_Liste_5"
  284. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  285. OrgName 1840697 "FZG_Liste_6" Origin Generated Offset 122 Column "FZG_Liste_6"
  286. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  287. OrgName 1840699 "FZG_Liste_7" Origin Generated Offset 123 Column "FZG_Liste_7"
  288. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  289. OrgName 1840707 "FZG_Detail" Origin Generated Offset 124 Column "FZG_Detail"
  290. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  291. OrgName 1840709 "Konto" Origin Calculated Offset 0 Column "Konto" Storage Default
  292. Scale 0 Size 1 Decimals 0 Class Description InputScale 0 TimeArray Off
  293. ColSrcType None Calc "No@1840453" + ' - ' + "Name@1840455"
  294. OrgName 1840965 "Anz. Sätze" Origin Generated Offset 125 Column "Anz. Sätze"
  295. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  296. OrgName 1840967 "Menge_final" Origin Generated Offset 126 Column "Menge_final"
  297. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  298. OrgName 1840985 "No_Item" Origin Generated Offset 127 Column "No_Item"
  299. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  300. OrgName 1840987 "Description_Item" Origin Generated Offset 128 Column "Description_Item"
  301. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  302. OrgName 1840989 "Vehicle Type Code_Item" Origin Generated Offset 129 Column "Vehicle Type Code_Item"
  303. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  304. OrgName 1840999 "Modell_zwischen" Origin Generated Offset 130 Column "Modell_zwischen"
  305. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  306. OrgName 1841001 "Vehicle Category Code" Origin Generated Offset 131 Column "Vehicle Category Code"
  307. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  308. OrgName 1841003 "Summe Erlös FZG" Origin Generated Offset 132 Column "Summe Erlös FZG"
  309. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  310. OrgName 1841005 "Erlöse FZG" Origin Generated Offset 133 Column "Erlöse FZG"
  311. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  312. OrgName 1841007 "Modell_final" Origin Generated Offset 134 Column "Modell_final"
  313. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  314. DataSource 1840713 "NW_GW_VK_TIM_Grosskd" Separator ";" SourceType FlatFile_ColNames
  315. CharacterSet Ansi DecimalSep "," Thousandsep "." Columns True Timing PopYesCreateDefault
  316. Source "c:\globalcube\system\ari\export\nw_gw_vk_tim_grosskd.csv" SetCurrent False
  317. ServerSource False Speed False Presummarized False StreamExtractSize 0
  318. OrgName 1840715 "No" Origin Generated Offset 0 Column "No" Storage Default
  319. Scale 0 Size 1 Decimals 0 Class Description InputScale 0 TimeArray Off
  320. ColSrcType None
  321. OrgName 1840717 "Name" Origin Generated Offset 1 Column "Name" Storage Default
  322. Scale 0 Size 1 Decimals 0 Class Description InputScale 0 TimeArray Off
  323. ColSrcType None
  324. OrgName 1840719 "Account Type" Origin Generated Offset 2 Column "Account Type"
  325. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  326. OrgName 1840721 "Department Code" Origin Generated Offset 14 Column "Department Code"
  327. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  328. OrgName 1840723 "Make Code" Origin Generated Offset 15 Column "Make Code"
  329. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  330. OrgName 1840725 "Income Balance" Origin Generated Offset 5 Column "Income Balance"
  331. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  332. OrgName 1840727 "Entry No" Origin Generated Offset 6 Column "Entry No"
  333. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  334. OrgName 1840729 "G L Account No" Origin Generated Offset 7 Column "G L Account No"
  335. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  336. OrgName 1840731 "Posting Date" Origin Generated Offset 8 Column "Posting Date"
  337. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  338. OrgName 1840733 "Document Type" Origin Generated Offset 9 Column "Document Type"
  339. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  340. OrgName 1840735 "Document No" Origin Generated Offset 10 Column "Document No"
  341. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  342. OrgName 1840737 "Description" Origin Generated Offset 11 Column "Description"
  343. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  344. OrgName 1840739 "Amount" Origin Generated Offset 12 Column "Amount" Storage Default
  345. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  346. OrgName 1840741 "Bal Account No" Origin Generated Offset 13 Column "Bal Account No"
  347. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  348. OrgName 1840747 "User Id" Origin Generated Offset 16 Column "User Id" Storage Default
  349. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  350. OrgName 1840749 "Source Code" Origin Generated Offset 17 Column "Source Code"
  351. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  352. OrgName 1840751 "Quantity" Origin Generated Offset 18 Column "Quantity"
  353. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  354. OrgName 1840753 "Debit Amount" Origin Generated Offset 19 Column "Debit Amount"
  355. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  356. OrgName 1840755 "Credit Amount" Origin Generated Offset 20 Column "Credit Amount"
  357. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  358. OrgName 1840757 "Document Date" Origin Generated Offset 21 Column "Document Date"
  359. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  360. OrgName 1840759 "Source Type" Origin Generated Offset 22 Column "Source Type"
  361. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  362. OrgName 1840761 "Source No" Origin Generated Offset 23 Column "Source No"
  363. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  364. OrgName 1840763 "No Series" Origin Generated Offset 24 Column "No Series"
  365. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  366. OrgName 1840765 "Branch Code" Origin Generated Offset 25 Column "Branch Code"
  367. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  368. OrgName 1840767 "Main Area" Origin Generated Offset 26 Column "Main Area"
  369. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  370. OrgName 1840769 "Vin" Origin Generated Offset 27 Column "Vin" Storage Default
  371. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  372. OrgName 1840771 "Book No" Origin Generated Offset 28 Column "Book No" Storage Default
  373. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  374. OrgName 1840773 "Veh Source Code" Origin Generated Offset 29 Column "Veh Source Code"
  375. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  376. OrgName 1840775 "Betrag" Origin Generated Offset 30 Column "Betrag" Storage Default
  377. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  378. OrgName 1840777 "Vin_Vehicle" Origin Generated Offset 31 Column "Vin_Vehicle"
  379. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  380. OrgName 1840779 "Vehicle Status" Origin Generated Offset 32 Column "Vehicle Status"
  381. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  382. OrgName 1840781 "Model_ori" Origin Generated Offset 33 Column "Model_ori"
  383. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  384. OrgName 1840783 "Type" Origin Generated Offset 34 Column "Type" Storage Default
  385. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  386. OrgName 1840785 "Class" Origin Generated Offset 35 Column "Class" Storage Default
  387. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  388. OrgName 1840787 "Model No" Origin Generated Offset 36 Column "Model No"
  389. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  390. OrgName 1840789 "Hauptbetrieb" Origin Generated Offset 37 Column "Hauptbetrieb"
  391. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  392. OrgName 1840791 "Standort_alt" Origin Generated Offset 38 Column "Standort_alt"
  393. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  394. OrgName 1840793 "Make Code_Vehicle" Origin Generated Offset 39 Column "Make Code_Vehicle"
  395. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  396. OrgName 1840795 "Fabrikat_ori" Origin Generated Offset 40 Column "Fabrikat_ori"
  397. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  398. OrgName 1840797 "Model" Origin Generated Offset 41 Column "Model" Storage Default
  399. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  400. OrgName 1840799 "Market Segment Code" Origin Generated Offset 42 Column "Market Segment Code"
  401. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  402. OrgName 1840801 "Modellbez" Origin Generated Offset 43 Column "Modellbez"
  403. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  404. OrgName 1840803 "Fahrzeugart" Origin Generated Offset 44 Column "Fahrzeugart"
  405. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  406. OrgName 1840805 "Vat Prod Posting Group" Origin Generated Offset 45 Column "Vat Prod Posting Group"
  407. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  408. OrgName 1840807 "Fahrzeugtyp" Origin Generated Offset 46 Column "Fahrzeugtyp"
  409. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  410. OrgName 1840809 "FZG" Origin Generated Offset 47 Column "FZG" Storage Default
  411. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  412. OrgName 1840811 "Location Code" Origin Generated Offset 48 Column "Location Code"
  413. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  414. OrgName 1840813 "VB_Einkauf" Origin Generated Offset 49 Column "VB_Einkauf"
  415. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  416. OrgName 1840815 "Purchase Receipt Date" Origin Generated Offset 50 Column "Purchase Receipt Date"
  417. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  418. OrgName 1840817 "Standtage_ori" Origin Generated Offset 51 Column "Standtage_ori"
  419. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  420. OrgName 1840819 "Standtagestaffel" Origin Generated Offset 52 Column "Standtagestaffel"
  421. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  422. OrgName 1840821 "Initial Registration" Origin Generated Offset 53 Column "Initial Registration"
  423. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  424. OrgName 1840823 "EZ/Eingang" Origin Generated Offset 54 Column "EZ/Eingang"
  425. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  426. OrgName 1840825 "Polster" Origin Generated Offset 55 Column "Polster" Storage Default
  427. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  428. OrgName 1840827 "Farbe" Origin Generated Offset 56 Column "Farbe" Storage Default
  429. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  430. OrgName 1840829 "Einsatz_ori" Origin Generated Offset 57 Column "Einsatz_ori"
  431. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  432. OrgName 1840831 "Heute" Origin Generated Offset 58 Column "Heute" Storage Default
  433. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  434. OrgName 1840833 "Fahrzeugstatus" Origin Generated Offset 59 Column "Fahrzeugstatus"
  435. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  436. OrgName 1840835 "FZG-Liste" Origin Generated Offset 60 Column "FZG-Liste"
  437. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  438. OrgName 1840837 "Anzahl" Origin Generated Offset 61 Column "Anzahl" Storage Default
  439. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  440. OrgName 1840839 "Standtage" Origin Generated Offset 62 Column "Standtage"
  441. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  442. OrgName 1840841 "Inventory Posting Group" Origin Generated Offset 63 Column "Inventory Posting Group"
  443. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  444. OrgName 1840843 "Date Of Sale" Origin Generated Offset 64 Column "Date Of Sale"
  445. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  446. OrgName 1840845 "Invoice Date" Origin Generated Offset 65 Column "Invoice Date"
  447. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  448. OrgName 1840847 "Customer No" Origin Generated Offset 66 Column "Customer No"
  449. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  450. OrgName 1840849 "No_Customer" Origin Generated Offset 67 Column "No_Customer"
  451. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  452. OrgName 1840851 "Name_Customer" Origin Generated Offset 68 Column "Name_Customer"
  453. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  454. OrgName 1840853 "Kunde" Origin Generated Offset 69 Column "Kunde" Storage Default
  455. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  456. OrgName 1840855 "Customer Type" Origin Generated Offset 70 Column "Customer Type"
  457. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  458. OrgName 1840857 "Kundenart" Origin Generated Offset 71 Column "Kundenart"
  459. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  460. OrgName 1840859 "Old Customer No" Origin Generated Offset 73 Column "Old Customer No"
  461. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  462. OrgName 1840863 "No_Vorbesitzer" Origin Generated Offset 74 Column "No_Vorbesitzer"
  463. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  464. OrgName 1840865 "Name_Vorbesitzer" Origin Generated Offset 75 Column "Name_Vorbesitzer"
  465. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  466. OrgName 1840867 "Vorbesitzer" Origin Generated Offset 76 Column "Vorbesitzer"
  467. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  468. OrgName 1840869 "Engine Code" Origin Generated Offset 77 Column "Engine Code"
  469. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  470. OrgName 1840871 "Motor Code" Origin Generated Offset 78 Column "Motor Code"
  471. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  472. OrgName 1840873 "Geschäftsart" Origin Generated Offset 79 Column "Geschäftsart"
  473. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  474. OrgName 1840875 "FZG_Liste_1_ori" Origin Generated Offset 80 Column "FZG_Liste_1_ori"
  475. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  476. OrgName 1840877 "FZG_Liste_2" Origin Generated Offset 81 Column "FZG_Liste_2"
  477. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  478. OrgName 1840879 "FZG_Liste_3" Origin Generated Offset 82 Column "FZG_Liste_3"
  479. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  480. OrgName 1840881 "FZG_Liste_4" Origin Generated Offset 83 Column "FZG_Liste_4"
  481. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  482. OrgName 1840883 "Erlös" Origin Generated Offset 84 Column "Erlös" Storage Default
  483. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  484. OrgName 1840885 "Einsatz" Origin Generated Offset 85 Column "Einsatz" Storage Default
  485. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  486. OrgName 1840887 "EK Fahrzeug" Origin Generated Offset 86 Column "EK Fahrzeug"
  487. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  488. OrgName 1840889 "Bonus" Origin Generated Offset 87 Column "Bonus" Storage Default
  489. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  490. OrgName 1840891 "int. Kosten" Origin Generated Offset 88 Column "int. Kosten"
  491. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  492. OrgName 1840893 "Current Branch Book No" Origin Generated Offset 89 Column "Current Branch Book No"
  493. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  494. OrgName 1840895 "Current Book No" Origin Generated Offset 90 Column "Current Book No"
  495. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  496. OrgName 1840897 "Summe EK-FZG" Origin Generated Offset 91 Column "Summe EK-FZG"
  497. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  498. OrgName 1840899 "Fabrikat" Origin Generated Offset 92 Column "Fabrikat"
  499. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  500. OrgName 1840901 "Buchnummer gleich_ja_nein" Origin Generated Offset 93
  501. Column "Buchnummer gleich_ja_nein" Storage Default Scale 0 Size 1 Decimals 0
  502. InputScale 0 TimeArray Off ColSrcType None
  503. OrgName 1840903 "Menge1" Origin Generated Offset 94 Column "Menge1" Storage Default
  504. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  505. OrgName 1840905 "Menge2" Origin Generated Offset 95 Column "Menge2" Storage Default
  506. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  507. OrgName 1840907 "Menge3" Origin Generated Offset 96 Column "Menge3" Storage Default
  508. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  509. OrgName 1840909 "Menge4" Origin Generated Offset 97 Column "Menge4" Storage Default
  510. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  511. OrgName 1840911 "VIN + PostingDate" Origin Generated Offset 98 Column "VIN + PostingDate"
  512. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  513. OrgName 1840913 "Summe Menge4" Origin Generated Offset 99 Column "Summe Menge4"
  514. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  515. OrgName 1840915 "Menge_2_test" Origin Generated Offset 100 Column "Menge_2_test"
  516. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  517. OrgName 1840917 "Menge3_test" Origin Generated Offset 101 Column "Menge3_test"
  518. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  519. OrgName 1840919 "Menge4_test" Origin Generated Offset 102 Column "Menge4_test"
  520. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  521. OrgName 1840921 "Fahrzeugart_Schmidt" Origin Generated Offset 103 Column "Fahrzeugart_Schmidt"
  522. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  523. OrgName 1840923 "Salespers Purch Code_VLE" Origin Generated Offset 104
  524. Column "Salespers Purch Code_VLE" Storage Default Scale 0 Size 1 Decimals 0
  525. InputScale 0 TimeArray Off ColSrcType None
  526. OrgName 1840925 "Code_für_VEH_Ledger_Entry" Origin Generated Offset 105
  527. Column "Code_für_VEH_Ledger_Entry" Storage Default Scale 0 Size 1 Decimals 0
  528. InputScale 0 TimeArray Off ColSrcType None
  529. OrgName 1840927 "Name_für_VEH_Ledger_Entry" Origin Generated Offset 106
  530. Column "Name_für_VEH_Ledger_Entry" Storage Default Scale 0 Size 1 Decimals 0
  531. InputScale 0 TimeArray Off ColSrcType None
  532. OrgName 1840929 "Verkäufer" Origin Generated Offset 107 Column "Verkäufer"
  533. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  534. OrgName 1840931 "FZG_Liste_1_falsch" Origin Generated Offset 108 Column "FZG_Liste_1_falsch"
  535. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  536. OrgName 1840933 "FZG_Liste_0_ori" Origin Generated Offset 109 Column "FZG_Liste_0_ori"
  537. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  538. OrgName 1840935 "FZG_Liste_1" Origin Generated Offset 110 Column "FZG_Liste_1"
  539. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  540. OrgName 1840937 "FZG_Liste_0" Origin Generated Offset 111 Column "FZG_Liste_0"
  541. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  542. OrgName 1840939 "Beleg" Origin Generated Offset 112 Column "Beleg" Storage Default
  543. Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  544. OrgName 1840941 "Standort_FIBU" Origin Generated Offset 113 Column "Standort_FIBU"
  545. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  546. OrgName 1840943 "Fahrzeugart_neu" Origin Generated Offset 114 Column "Fahrzeugart_neu"
  547. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  548. OrgName 1840945 "Standort" Origin Generated Offset 115 Column "Standort"
  549. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  550. OrgName 1840947 "Summe_Betrag" Origin Generated Offset 116 Column "Summe_Betrag"
  551. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  552. OrgName 1840949 "Vat Bus Posting Group_Kunde" Origin Generated Offset 117
  553. Column "Vat Bus Posting Group_Kunde" Storage Default Scale 0 Size 1 Decimals 0
  554. InputScale 0 TimeArray Off ColSrcType None
  555. OrgName 1840951 "FZG_Liste_5_ori" Origin Generated Offset 118 Column "FZG_Liste_5_ori"
  556. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  557. OrgName 1840953 "Customer Group Code" Origin Generated Offset 119 Column "Customer Group Code"
  558. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  559. OrgName 1840955 "FZG_Liste_5" Origin Generated Offset 120 Column "FZG_Liste_5"
  560. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  561. OrgName 1840957 "FZG_Liste_6" Origin Generated Offset 121 Column "FZG_Liste_6"
  562. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  563. OrgName 1840959 "FZG_Liste_7" Origin Generated Offset 122 Column "FZG_Liste_7"
  564. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  565. OrgName 1840961 "FZG_Detail" Origin Generated Offset 123 Column "FZG_Detail"
  566. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  567. OrgName 1840969 "Menge_final" Origin Generated Offset 124 Column "Menge_final"
  568. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  569. OrgName 1840963 "Konto" Origin Calculated Offset 0 Column "Konto" Storage Default
  570. Scale 0 Size 1 Decimals 0 Class Description InputScale 0 TimeArray Off
  571. ColSrcType None Calc "No@1840715" + ' - ' + "Name@1840717"
  572. OrgName 1840991 "No_Item" Origin Generated Offset 125 Column "No_Item"
  573. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  574. OrgName 1840993 "Description_Item" Origin Generated Offset 126 Column "Description_Item"
  575. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  576. OrgName 1840995 "Vehicle Type Code_Item" Origin Generated Offset 127 Column "Vehicle Type Code_Item"
  577. Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 TimeArray Off ColSrcType None
  578. Dimension 669 "Zeit" DimType Date EarliestDate 19010101 LatestDate 21001231
  579. ManualPeriods False DaysInWeek 127 NewCatsLock False ExcludeAutoPartitioning False
  580. DimDefaultCategory 0
  581. Categories
  582. Root 673 "Zeit" Inclusion Generate Lastuse 20201216 Date 0 Filtered False
  583. Suppressed False Sign False HideValue False IsKeyOrphanage False IsTruncated False
  584. Blanks False
  585. Drill 675 "Nach Zeit" Label "Nach Zeit" Inclusion Suppress Filtered False
  586. Suppressed True PrimaryDrill True HideValue False YearBegins 20140101 PartialWeek Split
  587. ExtraWeek None WeekBegins Sunday
  588. Levels 681 "Jahr" Blanks "( Leerstelle )" Inclusion Generate DateFunction Year
  589. Generate Need RefreshLabel False RefreshDescription False RefreshShortName False
  590. NewCatsLock False CatLabFormat "YYYY" Timerank 10 UniqueCategories True
  591. UniqueMove False Associations 683 "Invoice Date" AssociationType Type_Query
  592. AssociationRole Role_Source AssociationReferenced "Invoice Date"
  593. Associations 685 "Invoice Date" AssociationContext 675 AssociationType Type_Query
  594. AssociationRole Role_OrderBy AssociationReferenced "Invoice Date" SortOrder Default
  595. SortAs Ascending
  596. Levels 687 "Quartal" Blanks "( Leerstelle )" Inclusion Generate DateFunction Quarter
  597. Generate None RefreshLabel False RefreshDescription False RefreshShortName False
  598. NewCatsLock False CatLabFormat "Q"". Q."" YYYY" Timerank 20 UniqueCategories True
  599. UniqueMove False Associations 689 "Invoice Date" AssociationType Type_Query
  600. AssociationRole Role_Source AssociationReferenced "Invoice Date"
  601. Associations 691 "Invoice Date" AssociationContext 675 AssociationType Type_Query
  602. AssociationRole Role_OrderBy AssociationReferenced "Invoice Date" SortOrder Default
  603. SortAs Ascending
  604. Levels 693 "Monat" Blanks "( Leerstelle )" Inclusion Generate DateFunction Month
  605. Generate None RefreshLabel False RefreshDescription False RefreshShortName False
  606. NewCatsLock False CatLabFormat "MMM/YYYY" Timerank 30 UniqueCategories True
  607. UniqueMove False Associations 695 "Invoice Date" AssociationType Type_Query
  608. AssociationRole Role_Source AssociationReferenced "Invoice Date"
  609. Associations 697 "Invoice Date" AssociationContext 675 AssociationType Type_Query
  610. AssociationRole Role_OrderBy AssociationReferenced "Invoice Date" SortOrder Default
  611. SortAs Ascending
  612. Levels 699 "Tag" Blanks "( Leerstelle )" Inclusion Generate DateFunction Day
  613. Generate All RefreshLabel False RefreshDescription False RefreshShortName False
  614. NewCatsLock False CatLabFormat "DD/MM/YYYY" Timerank 50 UniqueCategories True
  615. UniqueMove False Associations 701 "Invoice Date" AssociationType Type_Query
  616. AssociationRole Role_Source AssociationReferenced "Invoice Date"
  617. Associations 703 "Invoice Date" AssociationContext 675 AssociationType Type_Query
  618. AssociationRole Role_OrderBy AssociationReferenced "Invoice Date" SortOrder Default
  619. SortAs Ascending
  620. Category 446737 "20180101-20181231" Parent 675 Levels 681 OrderBy Drill 675
  621. Value "2018" Label "2018" Lastuse 20201216 SourceValue "2018" Date 20180101
  622. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  623. IsTruncated False Blanks False
  624. Category 446739 "20180101-20180331" Parent 446737 Levels 687 OrderBy Drill 675
  625. Value "20180101" Label "1. Q. 2018" Lastuse 20201216 SourceValue "20180101"
  626. Date 20180101 Filtered False Suppressed False Sign False HideValue False
  627. IsKeyOrphanage False IsTruncated False Blanks False
  628. Category 446741 "20180101-20180131" Parent 446739 Levels 693 OrderBy Drill 675
  629. Value "201801" Label "Jan./2018" Lastuse 20201216 SourceValue "201801"
  630. Date 20180101 Filtered False Suppressed False Sign False HideValue False
  631. IsKeyOrphanage False IsTruncated False Blanks False
  632. Category 446743 "20180101" Parent 446741 Levels 699 OrderBy Drill 675 Value "20180101"
  633. Label "01/01/2018" Lastuse 20181005 SourceValue "20180101" Date 20180101
  634. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  635. IsTruncated False Blanks False
  636. Category 446745 "20180102" Parent 446741 Levels 699 OrderBy Drill 675 Value "20180102"
  637. Label "02/01/2018" Lastuse 20201216 SourceValue "20180102" Date 20180102
  638. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  639. IsTruncated False Blanks False
  640. Category 446747 "20180103" Parent 446741 Levels 699 OrderBy Drill 675 Value "20180103"
  641. Label "03/01/2018" Lastuse 20181011 SourceValue "20180103" Date 20180103
  642. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  643. IsTruncated False Blanks False
  644. Category 446749 "20180104" Parent 446741 Levels 699 OrderBy Drill 675 Value "20180104"
  645. Label "04/01/2018" Lastuse 20201216 SourceValue "20180104" Date 20180104
  646. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  647. IsTruncated False Blanks False
  648. Category 446751 "20180105" Parent 446741 Levels 699 OrderBy Drill 675 Value "20180105"
  649. Label "05/01/2018" Lastuse 20201216 SourceValue "20180105" Date 20180105
  650. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  651. IsTruncated False Blanks False
  652. Category 446753 "20180106" Parent 446741 Levels 699 OrderBy Drill 675 Value "20180106"
  653. Label "06/01/2018" Lastuse 20181011 SourceValue "20180106" Date 20180106
  654. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  655. IsTruncated False Blanks False
  656. Category 446755 "20180107" Parent 446741 Levels 699 OrderBy Drill 675 Value "20180107"
  657. Label "07/01/2018" Lastuse 20181005 SourceValue "20180107" Date 20180107
  658. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  659. IsTruncated False Blanks False
  660. Category 446757 "20180108" Parent 446741 Levels 699 OrderBy Drill 675 Value "20180108"
  661. Label "08/01/2018" Lastuse 20201216 SourceValue "20180108" Date 20180108
  662. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  663. IsTruncated False Blanks False
  664. Category 446759 "20180109" Parent 446741 Levels 699 OrderBy Drill 675 Value "20180109"
  665. Label "09/01/2018" Lastuse 20201216 SourceValue "20180109" Date 20180109
  666. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  667. IsTruncated False Blanks False
  668. Category 446761 "20180110" Parent 446741 Levels 699 OrderBy Drill 675 Value "20180110"
  669. Label "10/01/2018" Lastuse 20201216 SourceValue "20180110" Date 20180110
  670. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  671. IsTruncated False Blanks False
  672. Category 446763 "20180111" Parent 446741 Levels 699 OrderBy Drill 675 Value "20180111"
  673. Label "11/01/2018" Lastuse 20201216 SourceValue "20180111" Date 20180111
  674. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  675. IsTruncated False Blanks False
  676. Category 446765 "20180112" Parent 446741 Levels 699 OrderBy Drill 675 Value "20180112"
  677. Label "12/01/2018" Lastuse 20201216 SourceValue "20180112" Date 20180112
  678. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  679. IsTruncated False Blanks False
  680. Category 446767 "20180113" Parent 446741 Levels 699 OrderBy Drill 675 Value "20180113"
  681. Label "13/01/2018" Lastuse 20181011 SourceValue "20180113" Date 20180113
  682. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  683. IsTruncated False Blanks False
  684. Category 446769 "20180114" Parent 446741 Levels 699 OrderBy Drill 675 Value "20180114"
  685. Label "14/01/2018" Lastuse 20181005 SourceValue "20180114" Date 20180114
  686. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  687. IsTruncated False Blanks False
  688. Category 446771 "20180115" Parent 446741 Levels 699 OrderBy Drill 675 Value "20180115"
  689. Label "15/01/2018" Lastuse 20201216 SourceValue "20180115" Date 20180115
  690. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  691. IsTruncated False Blanks False
  692. Category 446773 "20180116" Parent 446741 Levels 699 OrderBy Drill 675 Value "20180116"
  693. Label "16/01/2018" Lastuse 20201216 SourceValue "20180116" Date 20180116
  694. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  695. IsTruncated False Blanks False
  696. Category 446775 "20180117" Parent 446741 Levels 699 OrderBy Drill 675 Value "20180117"
  697. Label "17/01/2018" Lastuse 20201216 SourceValue "20180117" Date 20180117
  698. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  699. IsTruncated False Blanks False
  700. Category 446777 "20180118" Parent 446741 Levels 699 OrderBy Drill 675 Value "20180118"
  701. Label "18/01/2018" Lastuse 20201216 SourceValue "20180118" Date 20180118
  702. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  703. IsTruncated False Blanks False
  704. Category 446779 "20180119" Parent 446741 Levels 699 OrderBy Drill 675 Value "20180119"
  705. Label "19/01/2018" Lastuse 20201216 SourceValue "20180119" Date 20180119
  706. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  707. IsTruncated False Blanks False
  708. Category 446781 "20180120" Parent 446741 Levels 699 OrderBy Drill 675 Value "20180120"
  709. Label "20/01/2018" Lastuse 20181011 SourceValue "20180120" Date 20180120
  710. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  711. IsTruncated False Blanks False
  712. Category 446783 "20180121" Parent 446741 Levels 699 OrderBy Drill 675 Value "20180121"
  713. Label "21/01/2018" Lastuse 20181005 SourceValue "20180121" Date 20180121
  714. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  715. IsTruncated False Blanks False
  716. Category 446785 "20180122" Parent 446741 Levels 699 OrderBy Drill 675 Value "20180122"
  717. Label "22/01/2018" Lastuse 20201216 SourceValue "20180122" Date 20180122
  718. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  719. IsTruncated False Blanks False
  720. Category 446787 "20180123" Parent 446741 Levels 699 OrderBy Drill 675 Value "20180123"
  721. Label "23/01/2018" Lastuse 20201216 SourceValue "20180123" Date 20180123
  722. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  723. IsTruncated False Blanks False
  724. Category 446789 "20180124" Parent 446741 Levels 699 OrderBy Drill 675 Value "20180124"
  725. Label "24/01/2018" Lastuse 20201216 SourceValue "20180124" Date 20180124
  726. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  727. IsTruncated False Blanks False
  728. Category 446791 "20180125" Parent 446741 Levels 699 OrderBy Drill 675 Value "20180125"
  729. Label "25/01/2018" Lastuse 20201216 SourceValue "20180125" Date 20180125
  730. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  731. IsTruncated False Blanks False
  732. Category 446793 "20180126" Parent 446741 Levels 699 OrderBy Drill 675 Value "20180126"
  733. Label "26/01/2018" Lastuse 20201216 SourceValue "20180126" Date 20180126
  734. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  735. IsTruncated False Blanks False
  736. Category 446795 "20180127" Parent 446741 Levels 699 OrderBy Drill 675 Value "20180127"
  737. Label "27/01/2018" Lastuse 20181011 SourceValue "20180127" Date 20180127
  738. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  739. IsTruncated False Blanks False
  740. Category 446797 "20180128" Parent 446741 Levels 699 OrderBy Drill 675 Value "20180128"
  741. Label "28/01/2018" Lastuse 20181005 SourceValue "20180128" Date 20180128
  742. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  743. IsTruncated False Blanks False
  744. Category 446799 "20180129" Parent 446741 Levels 699 OrderBy Drill 675 Value "20180129"
  745. Label "29/01/2018" Lastuse 20201216 SourceValue "20180129" Date 20180129
  746. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  747. IsTruncated False Blanks False
  748. Category 446801 "20180130" Parent 446741 Levels 699 OrderBy Drill 675 Value "20180130"
  749. Label "30/01/2018" Lastuse 20201216 SourceValue "20180130" Date 20180130
  750. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  751. IsTruncated False Blanks False
  752. Category 446803 "20180131" Parent 446741 Levels 699 OrderBy Drill 675 Value "20180131"
  753. Label "31/01/2018" Lastuse 20201216 SourceValue "20180131" Date 20180131
  754. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  755. IsTruncated False Blanks False
  756. Category 446805 "20180201-20180228" Parent 446739 Levels 693 OrderBy Drill 675
  757. Value "201802" Label "Feb./2018" Lastuse 20201216 SourceValue "201802"
  758. Date 20180201 Filtered False Suppressed False Sign False HideValue False
  759. IsKeyOrphanage False IsTruncated False Blanks False
  760. Category 446807 "20180201" Parent 446805 Levels 699 OrderBy Drill 675 Value "20180201"
  761. Label "01/02/2018" Lastuse 20201216 SourceValue "20180201" Date 20180201
  762. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  763. IsTruncated False Blanks False
  764. Category 446809 "20180202" Parent 446805 Levels 699 OrderBy Drill 675 Value "20180202"
  765. Label "02/02/2018" Lastuse 20201216 SourceValue "20180202" Date 20180202
  766. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  767. IsTruncated False Blanks False
  768. Category 446811 "20180203" Parent 446805 Levels 699 OrderBy Drill 675 Value "20180203"
  769. Label "03/02/2018" Lastuse 20181011 SourceValue "20180203" Date 20180203
  770. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  771. IsTruncated False Blanks False
  772. Category 446813 "20180204" Parent 446805 Levels 699 OrderBy Drill 675 Value "20180204"
  773. Label "04/02/2018" Lastuse 20181005 SourceValue "20180204" Date 20180204
  774. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  775. IsTruncated False Blanks False
  776. Category 446815 "20180205" Parent 446805 Levels 699 OrderBy Drill 675 Value "20180205"
  777. Label "05/02/2018" Lastuse 20201216 SourceValue "20180205" Date 20180205
  778. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  779. IsTruncated False Blanks False
  780. Category 446817 "20180206" Parent 446805 Levels 699 OrderBy Drill 675 Value "20180206"
  781. Label "06/02/2018" Lastuse 20201216 SourceValue "20180206" Date 20180206
  782. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  783. IsTruncated False Blanks False
  784. Category 446819 "20180207" Parent 446805 Levels 699 OrderBy Drill 675 Value "20180207"
  785. Label "07/02/2018" Lastuse 20201216 SourceValue "20180207" Date 20180207
  786. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  787. IsTruncated False Blanks False
  788. Category 446821 "20180208" Parent 446805 Levels 699 OrderBy Drill 675 Value "20180208"
  789. Label "08/02/2018" Lastuse 20201216 SourceValue "20180208" Date 20180208
  790. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  791. IsTruncated False Blanks False
  792. Category 446823 "20180209" Parent 446805 Levels 699 OrderBy Drill 675 Value "20180209"
  793. Label "09/02/2018" Lastuse 20201216 SourceValue "20180209" Date 20180209
  794. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  795. IsTruncated False Blanks False
  796. Category 446825 "20180210" Parent 446805 Levels 699 OrderBy Drill 675 Value "20180210"
  797. Label "10/02/2018" Lastuse 20181011 SourceValue "20180210" Date 20180210
  798. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  799. IsTruncated False Blanks False
  800. Category 446827 "20180211" Parent 446805 Levels 699 OrderBy Drill 675 Value "20180211"
  801. Label "11/02/2018" Lastuse 20181005 SourceValue "20180211" Date 20180211
  802. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  803. IsTruncated False Blanks False
  804. Category 446829 "20180212" Parent 446805 Levels 699 OrderBy Drill 675 Value "20180212"
  805. Label "12/02/2018" Lastuse 20201216 SourceValue "20180212" Date 20180212
  806. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  807. IsTruncated False Blanks False
  808. Category 446831 "20180213" Parent 446805 Levels 699 OrderBy Drill 675 Value "20180213"
  809. Label "13/02/2018" Lastuse 20201216 SourceValue "20180213" Date 20180213
  810. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  811. IsTruncated False Blanks False
  812. Category 446833 "20180214" Parent 446805 Levels 699 OrderBy Drill 675 Value "20180214"
  813. Label "14/02/2018" Lastuse 20201216 SourceValue "20180214" Date 20180214
  814. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  815. IsTruncated False Blanks False
  816. Category 446835 "20180215" Parent 446805 Levels 699 OrderBy Drill 675 Value "20180215"
  817. Label "15/02/2018" Lastuse 20201216 SourceValue "20180215" Date 20180215
  818. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  819. IsTruncated False Blanks False
  820. Category 446837 "20180216" Parent 446805 Levels 699 OrderBy Drill 675 Value "20180216"
  821. Label "16/02/2018" Lastuse 20201216 SourceValue "20180216" Date 20180216
  822. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  823. IsTruncated False Blanks False
  824. Category 446839 "20180217" Parent 446805 Levels 699 OrderBy Drill 675 Value "20180217"
  825. Label "17/02/2018" Lastuse 20181011 SourceValue "20180217" Date 20180217
  826. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  827. IsTruncated False Blanks False
  828. Category 446841 "20180218" Parent 446805 Levels 699 OrderBy Drill 675 Value "20180218"
  829. Label "18/02/2018" Lastuse 20181005 SourceValue "20180218" Date 20180218
  830. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  831. IsTruncated False Blanks False
  832. Category 446843 "20180219" Parent 446805 Levels 699 OrderBy Drill 675 Value "20180219"
  833. Label "19/02/2018" Lastuse 20201216 SourceValue "20180219" Date 20180219
  834. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  835. IsTruncated False Blanks False
  836. Category 446845 "20180220" Parent 446805 Levels 699 OrderBy Drill 675 Value "20180220"
  837. Label "20/02/2018" Lastuse 20201216 SourceValue "20180220" Date 20180220
  838. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  839. IsTruncated False Blanks False
  840. Category 446847 "20180221" Parent 446805 Levels 699 OrderBy Drill 675 Value "20180221"
  841. Label "21/02/2018" Lastuse 20201216 SourceValue "20180221" Date 20180221
  842. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  843. IsTruncated False Blanks False
  844. Category 446849 "20180222" Parent 446805 Levels 699 OrderBy Drill 675 Value "20180222"
  845. Label "22/02/2018" Lastuse 20201216 SourceValue "20180222" Date 20180222
  846. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  847. IsTruncated False Blanks False
  848. Category 446851 "20180223" Parent 446805 Levels 699 OrderBy Drill 675 Value "20180223"
  849. Label "23/02/2018" Lastuse 20201216 SourceValue "20180223" Date 20180223
  850. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  851. IsTruncated False Blanks False
  852. Category 446853 "20180224" Parent 446805 Levels 699 OrderBy Drill 675 Value "20180224"
  853. Label "24/02/2018" Lastuse 20181011 SourceValue "20180224" Date 20180224
  854. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  855. IsTruncated False Blanks False
  856. Category 446855 "20180225" Parent 446805 Levels 699 OrderBy Drill 675 Value "20180225"
  857. Label "25/02/2018" Lastuse 20181005 SourceValue "20180225" Date 20180225
  858. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  859. IsTruncated False Blanks False
  860. Category 446857 "20180226" Parent 446805 Levels 699 OrderBy Drill 675 Value "20180226"
  861. Label "26/02/2018" Lastuse 20201216 SourceValue "20180226" Date 20180226
  862. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  863. IsTruncated False Blanks False
  864. Category 446859 "20180227" Parent 446805 Levels 699 OrderBy Drill 675 Value "20180227"
  865. Label "27/02/2018" Lastuse 20201216 SourceValue "20180227" Date 20180227
  866. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  867. IsTruncated False Blanks False
  868. Category 446861 "20180228" Parent 446805 Levels 699 OrderBy Drill 675 Value "20180228"
  869. Label "28/02/2018" Lastuse 20201216 SourceValue "20180228" Date 20180228
  870. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  871. IsTruncated False Blanks False
  872. Category 446863 "20180301-20180331" Parent 446739 Levels 693 OrderBy Drill 675
  873. Value "201803" Label "März/2018" Lastuse 20201216 SourceValue "201803"
  874. Date 20180301 Filtered False Suppressed False Sign False HideValue False
  875. IsKeyOrphanage False IsTruncated False Blanks False
  876. Category 446865 "20180301" Parent 446863 Levels 699 OrderBy Drill 675 Value "20180301"
  877. Label "01/03/2018" Lastuse 20201216 SourceValue "20180301" Date 20180301
  878. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  879. IsTruncated False Blanks False
  880. Category 446867 "20180302" Parent 446863 Levels 699 OrderBy Drill 675 Value "20180302"
  881. Label "02/03/2018" Lastuse 20201216 SourceValue "20180302" Date 20180302
  882. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  883. IsTruncated False Blanks False
  884. Category 446869 "20180303" Parent 446863 Levels 699 OrderBy Drill 675 Value "20180303"
  885. Label "03/03/2018" Lastuse 20181011 SourceValue "20180303" Date 20180303
  886. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  887. IsTruncated False Blanks False
  888. Category 446871 "20180304" Parent 446863 Levels 699 OrderBy Drill 675 Value "20180304"
  889. Label "04/03/2018" Lastuse 20181005 SourceValue "20180304" Date 20180304
  890. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  891. IsTruncated False Blanks False
  892. Category 446873 "20180305" Parent 446863 Levels 699 OrderBy Drill 675 Value "20180305"
  893. Label "05/03/2018" Lastuse 20201216 SourceValue "20180305" Date 20180305
  894. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  895. IsTruncated False Blanks False
  896. Category 446875 "20180306" Parent 446863 Levels 699 OrderBy Drill 675 Value "20180306"
  897. Label "06/03/2018" Lastuse 20201216 SourceValue "20180306" Date 20180306
  898. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  899. IsTruncated False Blanks False
  900. Category 446877 "20180307" Parent 446863 Levels 699 OrderBy Drill 675 Value "20180307"
  901. Label "07/03/2018" Lastuse 20201216 SourceValue "20180307" Date 20180307
  902. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  903. IsTruncated False Blanks False
  904. Category 446879 "20180308" Parent 446863 Levels 699 OrderBy Drill 675 Value "20180308"
  905. Label "08/03/2018" Lastuse 20201216 SourceValue "20180308" Date 20180308
  906. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  907. IsTruncated False Blanks False
  908. Category 446881 "20180309" Parent 446863 Levels 699 OrderBy Drill 675 Value "20180309"
  909. Label "09/03/2018" Lastuse 20201216 SourceValue "20180309" Date 20180309
  910. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  911. IsTruncated False Blanks False
  912. Category 446883 "20180310" Parent 446863 Levels 699 OrderBy Drill 675 Value "20180310"
  913. Label "10/03/2018" Lastuse 20181011 SourceValue "20180310" Date 20180310
  914. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  915. IsTruncated False Blanks False
  916. Category 446885 "20180311" Parent 446863 Levels 699 OrderBy Drill 675 Value "20180311"
  917. Label "11/03/2018" Lastuse 20181005 SourceValue "20180311" Date 20180311
  918. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  919. IsTruncated False Blanks False
  920. Category 446887 "20180312" Parent 446863 Levels 699 OrderBy Drill 675 Value "20180312"
  921. Label "12/03/2018" Lastuse 20201216 SourceValue "20180312" Date 20180312
  922. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  923. IsTruncated False Blanks False
  924. Category 446889 "20180313" Parent 446863 Levels 699 OrderBy Drill 675 Value "20180313"
  925. Label "13/03/2018" Lastuse 20181011 SourceValue "20180313" Date 20180313
  926. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  927. IsTruncated False Blanks False
  928. Category 446891 "20180314" Parent 446863 Levels 699 OrderBy Drill 675 Value "20180314"
  929. Label "14/03/2018" Lastuse 20201216 SourceValue "20180314" Date 20180314
  930. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  931. IsTruncated False Blanks False
  932. Category 446893 "20180315" Parent 446863 Levels 699 OrderBy Drill 675 Value "20180315"
  933. Label "15/03/2018" Lastuse 20201216 SourceValue "20180315" Date 20180315
  934. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  935. IsTruncated False Blanks False
  936. Category 446895 "20180316" Parent 446863 Levels 699 OrderBy Drill 675 Value "20180316"
  937. Label "16/03/2018" Lastuse 20201216 SourceValue "20180316" Date 20180316
  938. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  939. IsTruncated False Blanks False
  940. Category 446897 "20180317" Parent 446863 Levels 699 OrderBy Drill 675 Value "20180317"
  941. Label "17/03/2018" Lastuse 20181011 SourceValue "20180317" Date 20180317
  942. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  943. IsTruncated False Blanks False
  944. Category 446899 "20180318" Parent 446863 Levels 699 OrderBy Drill 675 Value "20180318"
  945. Label "18/03/2018" Lastuse 20181005 SourceValue "20180318" Date 20180318
  946. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  947. IsTruncated False Blanks False
  948. Category 446901 "20180319" Parent 446863 Levels 699 OrderBy Drill 675 Value "20180319"
  949. Label "19/03/2018" Lastuse 20201216 SourceValue "20180319" Date 20180319
  950. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  951. IsTruncated False Blanks False
  952. Category 446903 "20180320" Parent 446863 Levels 699 OrderBy Drill 675 Value "20180320"
  953. Label "20/03/2018" Lastuse 20201216 SourceValue "20180320" Date 20180320
  954. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  955. IsTruncated False Blanks False
  956. Category 446905 "20180321" Parent 446863 Levels 699 OrderBy Drill 675 Value "20180321"
  957. Label "21/03/2018" Lastuse 20201216 SourceValue "20180321" Date 20180321
  958. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  959. IsTruncated False Blanks False
  960. Category 446907 "20180322" Parent 446863 Levels 699 OrderBy Drill 675 Value "20180322"
  961. Label "22/03/2018" Lastuse 20201216 SourceValue "20180322" Date 20180322
  962. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  963. IsTruncated False Blanks False
  964. Category 446909 "20180323" Parent 446863 Levels 699 OrderBy Drill 675 Value "20180323"
  965. Label "23/03/2018" Lastuse 20201216 SourceValue "20180323" Date 20180323
  966. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  967. IsTruncated False Blanks False
  968. Category 446911 "20180324" Parent 446863 Levels 699 OrderBy Drill 675 Value "20180324"
  969. Label "24/03/2018" Lastuse 20181011 SourceValue "20180324" Date 20180324
  970. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  971. IsTruncated False Blanks False
  972. Category 446913 "20180325" Parent 446863 Levels 699 OrderBy Drill 675 Value "20180325"
  973. Label "25/03/2018" Lastuse 20181005 SourceValue "20180325" Date 20180325
  974. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  975. IsTruncated False Blanks False
  976. Category 446915 "20180326" Parent 446863 Levels 699 OrderBy Drill 675 Value "20180326"
  977. Label "26/03/2018" Lastuse 20201216 SourceValue "20180326" Date 20180326
  978. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  979. IsTruncated False Blanks False
  980. Category 446917 "20180327" Parent 446863 Levels 699 OrderBy Drill 675 Value "20180327"
  981. Label "27/03/2018" Lastuse 20201216 SourceValue "20180327" Date 20180327
  982. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  983. IsTruncated False Blanks False
  984. Category 446919 "20180328" Parent 446863 Levels 699 OrderBy Drill 675 Value "20180328"
  985. Label "28/03/2018" Lastuse 20201216 SourceValue "20180328" Date 20180328
  986. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  987. IsTruncated False Blanks False
  988. Category 446921 "20180329" Parent 446863 Levels 699 OrderBy Drill 675 Value "20180329"
  989. Label "29/03/2018" Lastuse 20201216 SourceValue "20180329" Date 20180329
  990. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  991. IsTruncated False Blanks False
  992. Category 446923 "20180330" Parent 446863 Levels 699 OrderBy Drill 675 Value "20180330"
  993. Label "30/03/2018" Lastuse 20181005 SourceValue "20180330" Date 20180330
  994. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  995. IsTruncated False Blanks False
  996. Category 446925 "20180331" Parent 446863 Levels 699 OrderBy Drill 675 Value "20180331"
  997. Label "31/03/2018" Lastuse 20201216 SourceValue "20180331" Date 20180331
  998. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  999. IsTruncated False Blanks False
  1000. Category 446927 "20180401-20180630" Parent 446737 Levels 687 OrderBy Drill 675
  1001. Value "20180401" Label "2. Q. 2018" Lastuse 20201216 SourceValue "20180401"
  1002. Date 20180401 Filtered False Suppressed False Sign False HideValue False
  1003. IsKeyOrphanage False IsTruncated False Blanks False
  1004. Category 446929 "20180401-20180430" Parent 446927 Levels 693 OrderBy Drill 675
  1005. Value "201804" Label "Apr./2018" Lastuse 20201216 SourceValue "201804"
  1006. Date 20180401 Filtered False Suppressed False Sign False HideValue False
  1007. IsKeyOrphanage False IsTruncated False Blanks False
  1008. Category 446931 "20180401" Parent 446929 Levels 699 OrderBy Drill 675 Value "20180401"
  1009. Label "01/04/2018" Lastuse 20181005 SourceValue "20180401" Date 20180401
  1010. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1011. IsTruncated False Blanks False
  1012. Category 446933 "20180402" Parent 446929 Levels 699 OrderBy Drill 675 Value "20180402"
  1013. Label "02/04/2018" Lastuse 20201216 SourceValue "20180402" Date 20180402
  1014. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1015. IsTruncated False Blanks False
  1016. Category 446935 "20180403" Parent 446929 Levels 699 OrderBy Drill 675 Value "20180403"
  1017. Label "03/04/2018" Lastuse 20201216 SourceValue "20180403" Date 20180403
  1018. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1019. IsTruncated False Blanks False
  1020. Category 446937 "20180404" Parent 446929 Levels 699 OrderBy Drill 675 Value "20180404"
  1021. Label "04/04/2018" Lastuse 20201216 SourceValue "20180404" Date 20180404
  1022. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1023. IsTruncated False Blanks False
  1024. Category 446939 "20180405" Parent 446929 Levels 699 OrderBy Drill 675 Value "20180405"
  1025. Label "05/04/2018" Lastuse 20201216 SourceValue "20180405" Date 20180405
  1026. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1027. IsTruncated False Blanks False
  1028. Category 446941 "20180406" Parent 446929 Levels 699 OrderBy Drill 675 Value "20180406"
  1029. Label "06/04/2018" Lastuse 20201216 SourceValue "20180406" Date 20180406
  1030. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1031. IsTruncated False Blanks False
  1032. Category 446943 "20180407" Parent 446929 Levels 699 OrderBy Drill 675 Value "20180407"
  1033. Label "07/04/2018" Lastuse 20181011 SourceValue "20180407" Date 20180407
  1034. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1035. IsTruncated False Blanks False
  1036. Category 446945 "20180408" Parent 446929 Levels 699 OrderBy Drill 675 Value "20180408"
  1037. Label "08/04/2018" Lastuse 20181005 SourceValue "20180408" Date 20180408
  1038. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1039. IsTruncated False Blanks False
  1040. Category 446947 "20180409" Parent 446929 Levels 699 OrderBy Drill 675 Value "20180409"
  1041. Label "09/04/2018" Lastuse 20201216 SourceValue "20180409" Date 20180409
  1042. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1043. IsTruncated False Blanks False
  1044. Category 446949 "20180410" Parent 446929 Levels 699 OrderBy Drill 675 Value "20180410"
  1045. Label "10/04/2018" Lastuse 20201216 SourceValue "20180410" Date 20180410
  1046. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1047. IsTruncated False Blanks False
  1048. Category 446951 "20180411" Parent 446929 Levels 699 OrderBy Drill 675 Value "20180411"
  1049. Label "11/04/2018" Lastuse 20201216 SourceValue "20180411" Date 20180411
  1050. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1051. IsTruncated False Blanks False
  1052. Category 446953 "20180412" Parent 446929 Levels 699 OrderBy Drill 675 Value "20180412"
  1053. Label "12/04/2018" Lastuse 20201216 SourceValue "20180412" Date 20180412
  1054. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1055. IsTruncated False Blanks False
  1056. Category 446955 "20180413" Parent 446929 Levels 699 OrderBy Drill 675 Value "20180413"
  1057. Label "13/04/2018" Lastuse 20201216 SourceValue "20180413" Date 20180413
  1058. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1059. IsTruncated False Blanks False
  1060. Category 446957 "20180414" Parent 446929 Levels 699 OrderBy Drill 675 Value "20180414"
  1061. Label "14/04/2018" Lastuse 20181011 SourceValue "20180414" Date 20180414
  1062. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1063. IsTruncated False Blanks False
  1064. Category 446959 "20180415" Parent 446929 Levels 699 OrderBy Drill 675 Value "20180415"
  1065. Label "15/04/2018" Lastuse 20181005 SourceValue "20180415" Date 20180415
  1066. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1067. IsTruncated False Blanks False
  1068. Category 446961 "20180416" Parent 446929 Levels 699 OrderBy Drill 675 Value "20180416"
  1069. Label "16/04/2018" Lastuse 20201216 SourceValue "20180416" Date 20180416
  1070. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1071. IsTruncated False Blanks False
  1072. Category 446963 "20180417" Parent 446929 Levels 699 OrderBy Drill 675 Value "20180417"
  1073. Label "17/04/2018" Lastuse 20201216 SourceValue "20180417" Date 20180417
  1074. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1075. IsTruncated False Blanks False
  1076. Category 446965 "20180418" Parent 446929 Levels 699 OrderBy Drill 675 Value "20180418"
  1077. Label "18/04/2018" Lastuse 20201216 SourceValue "20180418" Date 20180418
  1078. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1079. IsTruncated False Blanks False
  1080. Category 446967 "20180419" Parent 446929 Levels 699 OrderBy Drill 675 Value "20180419"
  1081. Label "19/04/2018" Lastuse 20201216 SourceValue "20180419" Date 20180419
  1082. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1083. IsTruncated False Blanks False
  1084. Category 446969 "20180420" Parent 446929 Levels 699 OrderBy Drill 675 Value "20180420"
  1085. Label "20/04/2018" Lastuse 20201216 SourceValue "20180420" Date 20180420
  1086. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1087. IsTruncated False Blanks False
  1088. Category 446971 "20180421" Parent 446929 Levels 699 OrderBy Drill 675 Value "20180421"
  1089. Label "21/04/2018" Lastuse 20181011 SourceValue "20180421" Date 20180421
  1090. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1091. IsTruncated False Blanks False
  1092. Category 446973 "20180422" Parent 446929 Levels 699 OrderBy Drill 675 Value "20180422"
  1093. Label "22/04/2018" Lastuse 20181005 SourceValue "20180422" Date 20180422
  1094. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1095. IsTruncated False Blanks False
  1096. Category 446975 "20180423" Parent 446929 Levels 699 OrderBy Drill 675 Value "20180423"
  1097. Label "23/04/2018" Lastuse 20201216 SourceValue "20180423" Date 20180423
  1098. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1099. IsTruncated False Blanks False
  1100. Category 446977 "20180424" Parent 446929 Levels 699 OrderBy Drill 675 Value "20180424"
  1101. Label "24/04/2018" Lastuse 20201216 SourceValue "20180424" Date 20180424
  1102. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1103. IsTruncated False Blanks False
  1104. Category 446979 "20180425" Parent 446929 Levels 699 OrderBy Drill 675 Value "20180425"
  1105. Label "25/04/2018" Lastuse 20201216 SourceValue "20180425" Date 20180425
  1106. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1107. IsTruncated False Blanks False
  1108. Category 446981 "20180426" Parent 446929 Levels 699 OrderBy Drill 675 Value "20180426"
  1109. Label "26/04/2018" Lastuse 20201216 SourceValue "20180426" Date 20180426
  1110. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1111. IsTruncated False Blanks False
  1112. Category 446983 "20180427" Parent 446929 Levels 699 OrderBy Drill 675 Value "20180427"
  1113. Label "27/04/2018" Lastuse 20201216 SourceValue "20180427" Date 20180427
  1114. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1115. IsTruncated False Blanks False
  1116. Category 446985 "20180428" Parent 446929 Levels 699 OrderBy Drill 675 Value "20180428"
  1117. Label "28/04/2018" Lastuse 20181011 SourceValue "20180428" Date 20180428
  1118. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1119. IsTruncated False Blanks False
  1120. Category 446987 "20180429" Parent 446929 Levels 699 OrderBy Drill 675 Value "20180429"
  1121. Label "29/04/2018" Lastuse 20181005 SourceValue "20180429" Date 20180429
  1122. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1123. IsTruncated False Blanks False
  1124. Category 446989 "20180430" Parent 446929 Levels 699 OrderBy Drill 675 Value "20180430"
  1125. Label "30/04/2018" Lastuse 20201216 SourceValue "20180430" Date 20180430
  1126. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1127. IsTruncated False Blanks False
  1128. Category 446991 "20180501-20180531" Parent 446927 Levels 693 OrderBy Drill 675
  1129. Value "201805" Label "Mai/2018" Lastuse 20201216 SourceValue "201805" Date 20180501
  1130. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1131. IsTruncated False Blanks False
  1132. Category 446993 "20180501" Parent 446991 Levels 699 OrderBy Drill 675 Value "20180501"
  1133. Label "01/05/2018" Lastuse 20181005 SourceValue "20180501" Date 20180501
  1134. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1135. IsTruncated False Blanks False
  1136. Category 446995 "20180502" Parent 446991 Levels 699 OrderBy Drill 675 Value "20180502"
  1137. Label "02/05/2018" Lastuse 20201216 SourceValue "20180502" Date 20180502
  1138. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1139. IsTruncated False Blanks False
  1140. Category 446997 "20180503" Parent 446991 Levels 699 OrderBy Drill 675 Value "20180503"
  1141. Label "03/05/2018" Lastuse 20201216 SourceValue "20180503" Date 20180503
  1142. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1143. IsTruncated False Blanks False
  1144. Category 446999 "20180504" Parent 446991 Levels 699 OrderBy Drill 675 Value "20180504"
  1145. Label "04/05/2018" Lastuse 20201216 SourceValue "20180504" Date 20180504
  1146. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1147. IsTruncated False Blanks False
  1148. Category 447001 "20180505" Parent 446991 Levels 699 OrderBy Drill 675 Value "20180505"
  1149. Label "05/05/2018" Lastuse 20181011 SourceValue "20180505" Date 20180505
  1150. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1151. IsTruncated False Blanks False
  1152. Category 447003 "20180506" Parent 446991 Levels 699 OrderBy Drill 675 Value "20180506"
  1153. Label "06/05/2018" Lastuse 20181005 SourceValue "20180506" Date 20180506
  1154. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1155. IsTruncated False Blanks False
  1156. Category 447005 "20180507" Parent 446991 Levels 699 OrderBy Drill 675 Value "20180507"
  1157. Label "07/05/2018" Lastuse 20201216 SourceValue "20180507" Date 20180507
  1158. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1159. IsTruncated False Blanks False
  1160. Category 447007 "20180508" Parent 446991 Levels 699 OrderBy Drill 675 Value "20180508"
  1161. Label "08/05/2018" Lastuse 20201216 SourceValue "20180508" Date 20180508
  1162. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1163. IsTruncated False Blanks False
  1164. Category 447009 "20180509" Parent 446991 Levels 699 OrderBy Drill 675 Value "20180509"
  1165. Label "09/05/2018" Lastuse 20201216 SourceValue "20180509" Date 20180509
  1166. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1167. IsTruncated False Blanks False
  1168. Category 447011 "20180510" Parent 446991 Levels 699 OrderBy Drill 675 Value "20180510"
  1169. Label "10/05/2018" Lastuse 20181005 SourceValue "20180510" Date 20180510
  1170. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1171. IsTruncated False Blanks False
  1172. Category 447013 "20180511" Parent 446991 Levels 699 OrderBy Drill 675 Value "20180511"
  1173. Label "11/05/2018" Lastuse 20201216 SourceValue "20180511" Date 20180511
  1174. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1175. IsTruncated False Blanks False
  1176. Category 447015 "20180512" Parent 446991 Levels 699 OrderBy Drill 675 Value "20180512"
  1177. Label "12/05/2018" Lastuse 20181011 SourceValue "20180512" Date 20180512
  1178. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1179. IsTruncated False Blanks False
  1180. Category 447017 "20180513" Parent 446991 Levels 699 OrderBy Drill 675 Value "20180513"
  1181. Label "13/05/2018" Lastuse 20181005 SourceValue "20180513" Date 20180513
  1182. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1183. IsTruncated False Blanks False
  1184. Category 447019 "20180514" Parent 446991 Levels 699 OrderBy Drill 675 Value "20180514"
  1185. Label "14/05/2018" Lastuse 20201216 SourceValue "20180514" Date 20180514
  1186. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1187. IsTruncated False Blanks False
  1188. Category 447021 "20180515" Parent 446991 Levels 699 OrderBy Drill 675 Value "20180515"
  1189. Label "15/05/2018" Lastuse 20201216 SourceValue "20180515" Date 20180515
  1190. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1191. IsTruncated False Blanks False
  1192. Category 447023 "20180516" Parent 446991 Levels 699 OrderBy Drill 675 Value "20180516"
  1193. Label "16/05/2018" Lastuse 20201216 SourceValue "20180516" Date 20180516
  1194. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1195. IsTruncated False Blanks False
  1196. Category 447025 "20180517" Parent 446991 Levels 699 OrderBy Drill 675 Value "20180517"
  1197. Label "17/05/2018" Lastuse 20201216 SourceValue "20180517" Date 20180517
  1198. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1199. IsTruncated False Blanks False
  1200. Category 447027 "20180518" Parent 446991 Levels 699 OrderBy Drill 675 Value "20180518"
  1201. Label "18/05/2018" Lastuse 20201216 SourceValue "20180518" Date 20180518
  1202. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1203. IsTruncated False Blanks False
  1204. Category 447029 "20180519" Parent 446991 Levels 699 OrderBy Drill 675 Value "20180519"
  1205. Label "19/05/2018" Lastuse 20181011 SourceValue "20180519" Date 20180519
  1206. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1207. IsTruncated False Blanks False
  1208. Category 447031 "20180520" Parent 446991 Levels 699 OrderBy Drill 675 Value "20180520"
  1209. Label "20/05/2018" Lastuse 20181005 SourceValue "20180520" Date 20180520
  1210. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1211. IsTruncated False Blanks False
  1212. Category 447033 "20180521" Parent 446991 Levels 699 OrderBy Drill 675 Value "20180521"
  1213. Label "21/05/2018" Lastuse 20181005 SourceValue "20180521" Date 20180521
  1214. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1215. IsTruncated False Blanks False
  1216. Category 447035 "20180522" Parent 446991 Levels 699 OrderBy Drill 675 Value "20180522"
  1217. Label "22/05/2018" Lastuse 20201216 SourceValue "20180522" Date 20180522
  1218. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1219. IsTruncated False Blanks False
  1220. Category 447037 "20180523" Parent 446991 Levels 699 OrderBy Drill 675 Value "20180523"
  1221. Label "23/05/2018" Lastuse 20201216 SourceValue "20180523" Date 20180523
  1222. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1223. IsTruncated False Blanks False
  1224. Category 447039 "20180524" Parent 446991 Levels 699 OrderBy Drill 675 Value "20180524"
  1225. Label "24/05/2018" Lastuse 20201216 SourceValue "20180524" Date 20180524
  1226. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1227. IsTruncated False Blanks False
  1228. Category 447041 "20180525" Parent 446991 Levels 699 OrderBy Drill 675 Value "20180525"
  1229. Label "25/05/2018" Lastuse 20201216 SourceValue "20180525" Date 20180525
  1230. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1231. IsTruncated False Blanks False
  1232. Category 447043 "20180526" Parent 446991 Levels 699 OrderBy Drill 675 Value "20180526"
  1233. Label "26/05/2018" Lastuse 20181011 SourceValue "20180526" Date 20180526
  1234. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1235. IsTruncated False Blanks False
  1236. Category 447045 "20180527" Parent 446991 Levels 699 OrderBy Drill 675 Value "20180527"
  1237. Label "27/05/2018" Lastuse 20181005 SourceValue "20180527" Date 20180527
  1238. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1239. IsTruncated False Blanks False
  1240. Category 447047 "20180528" Parent 446991 Levels 699 OrderBy Drill 675 Value "20180528"
  1241. Label "28/05/2018" Lastuse 20201216 SourceValue "20180528" Date 20180528
  1242. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1243. IsTruncated False Blanks False
  1244. Category 447049 "20180529" Parent 446991 Levels 699 OrderBy Drill 675 Value "20180529"
  1245. Label "29/05/2018" Lastuse 20201216 SourceValue "20180529" Date 20180529
  1246. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1247. IsTruncated False Blanks False
  1248. Category 447051 "20180530" Parent 446991 Levels 699 OrderBy Drill 675 Value "20180530"
  1249. Label "30/05/2018" Lastuse 20201216 SourceValue "20180530" Date 20180530
  1250. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1251. IsTruncated False Blanks False
  1252. Category 447053 "20180531" Parent 446991 Levels 699 OrderBy Drill 675 Value "20180531"
  1253. Label "31/05/2018" Lastuse 20201216 SourceValue "20180531" Date 20180531
  1254. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1255. IsTruncated False Blanks False
  1256. Category 447055 "20180601-20180630" Parent 446927 Levels 693 OrderBy Drill 675
  1257. Value "201806" Label "Juni/2018" Lastuse 20201216 SourceValue "201806"
  1258. Date 20180601 Filtered False Suppressed False Sign False HideValue False
  1259. IsKeyOrphanage False IsTruncated False Blanks False
  1260. Category 447057 "20180601" Parent 447055 Levels 699 OrderBy Drill 675 Value "20180601"
  1261. Label "01/06/2018" Lastuse 20201216 SourceValue "20180601" Date 20180601
  1262. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1263. IsTruncated False Blanks False
  1264. Category 447059 "20180602" Parent 447055 Levels 699 OrderBy Drill 675 Value "20180602"
  1265. Label "02/06/2018" Lastuse 20181011 SourceValue "20180602" Date 20180602
  1266. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1267. IsTruncated False Blanks False
  1268. Category 447061 "20180603" Parent 447055 Levels 699 OrderBy Drill 675 Value "20180603"
  1269. Label "03/06/2018" Lastuse 20181005 SourceValue "20180603" Date 20180603
  1270. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1271. IsTruncated False Blanks False
  1272. Category 447063 "20180604" Parent 447055 Levels 699 OrderBy Drill 675 Value "20180604"
  1273. Label "04/06/2018" Lastuse 20201216 SourceValue "20180604" Date 20180604
  1274. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1275. IsTruncated False Blanks False
  1276. Category 447065 "20180605" Parent 447055 Levels 699 OrderBy Drill 675 Value "20180605"
  1277. Label "05/06/2018" Lastuse 20201216 SourceValue "20180605" Date 20180605
  1278. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1279. IsTruncated False Blanks False
  1280. Category 447067 "20180606" Parent 447055 Levels 699 OrderBy Drill 675 Value "20180606"
  1281. Label "06/06/2018" Lastuse 20201216 SourceValue "20180606" Date 20180606
  1282. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1283. IsTruncated False Blanks False
  1284. Category 447069 "20180607" Parent 447055 Levels 699 OrderBy Drill 675 Value "20180607"
  1285. Label "07/06/2018" Lastuse 20201216 SourceValue "20180607" Date 20180607
  1286. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1287. IsTruncated False Blanks False
  1288. Category 447071 "20180608" Parent 447055 Levels 699 OrderBy Drill 675 Value "20180608"
  1289. Label "08/06/2018" Lastuse 20201216 SourceValue "20180608" Date 20180608
  1290. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1291. IsTruncated False Blanks False
  1292. Category 447073 "20180609" Parent 447055 Levels 699 OrderBy Drill 675 Value "20180609"
  1293. Label "09/06/2018" Lastuse 20181011 SourceValue "20180609" Date 20180609
  1294. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1295. IsTruncated False Blanks False
  1296. Category 447075 "20180610" Parent 447055 Levels 699 OrderBy Drill 675 Value "20180610"
  1297. Label "10/06/2018" Lastuse 20181005 SourceValue "20180610" Date 20180610
  1298. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1299. IsTruncated False Blanks False
  1300. Category 447077 "20180611" Parent 447055 Levels 699 OrderBy Drill 675 Value "20180611"
  1301. Label "11/06/2018" Lastuse 20201216 SourceValue "20180611" Date 20180611
  1302. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1303. IsTruncated False Blanks False
  1304. Category 447079 "20180612" Parent 447055 Levels 699 OrderBy Drill 675 Value "20180612"
  1305. Label "12/06/2018" Lastuse 20201216 SourceValue "20180612" Date 20180612
  1306. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1307. IsTruncated False Blanks False
  1308. Category 447081 "20180613" Parent 447055 Levels 699 OrderBy Drill 675 Value "20180613"
  1309. Label "13/06/2018" Lastuse 20201216 SourceValue "20180613" Date 20180613
  1310. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1311. IsTruncated False Blanks False
  1312. Category 447083 "20180614" Parent 447055 Levels 699 OrderBy Drill 675 Value "20180614"
  1313. Label "14/06/2018" Lastuse 20201216 SourceValue "20180614" Date 20180614
  1314. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1315. IsTruncated False Blanks False
  1316. Category 447085 "20180615" Parent 447055 Levels 699 OrderBy Drill 675 Value "20180615"
  1317. Label "15/06/2018" Lastuse 20201216 SourceValue "20180615" Date 20180615
  1318. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1319. IsTruncated False Blanks False
  1320. Category 447087 "20180616" Parent 447055 Levels 699 OrderBy Drill 675 Value "20180616"
  1321. Label "16/06/2018" Lastuse 20181011 SourceValue "20180616" Date 20180616
  1322. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1323. IsTruncated False Blanks False
  1324. Category 447089 "20180617" Parent 447055 Levels 699 OrderBy Drill 675 Value "20180617"
  1325. Label "17/06/2018" Lastuse 20181005 SourceValue "20180617" Date 20180617
  1326. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1327. IsTruncated False Blanks False
  1328. Category 447091 "20180618" Parent 447055 Levels 699 OrderBy Drill 675 Value "20180618"
  1329. Label "18/06/2018" Lastuse 20201216 SourceValue "20180618" Date 20180618
  1330. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1331. IsTruncated False Blanks False
  1332. Category 447093 "20180619" Parent 447055 Levels 699 OrderBy Drill 675 Value "20180619"
  1333. Label "19/06/2018" Lastuse 20201216 SourceValue "20180619" Date 20180619
  1334. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1335. IsTruncated False Blanks False
  1336. Category 447095 "20180620" Parent 447055 Levels 699 OrderBy Drill 675 Value "20180620"
  1337. Label "20/06/2018" Lastuse 20201216 SourceValue "20180620" Date 20180620
  1338. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1339. IsTruncated False Blanks False
  1340. Category 447097 "20180621" Parent 447055 Levels 699 OrderBy Drill 675 Value "20180621"
  1341. Label "21/06/2018" Lastuse 20201216 SourceValue "20180621" Date 20180621
  1342. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1343. IsTruncated False Blanks False
  1344. Category 447099 "20180622" Parent 447055 Levels 699 OrderBy Drill 675 Value "20180622"
  1345. Label "22/06/2018" Lastuse 20201216 SourceValue "20180622" Date 20180622
  1346. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1347. IsTruncated False Blanks False
  1348. Category 447101 "20180623" Parent 447055 Levels 699 OrderBy Drill 675 Value "20180623"
  1349. Label "23/06/2018" Lastuse 20181011 SourceValue "20180623" Date 20180623
  1350. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1351. IsTruncated False Blanks False
  1352. Category 447103 "20180624" Parent 447055 Levels 699 OrderBy Drill 675 Value "20180624"
  1353. Label "24/06/2018" Lastuse 20181005 SourceValue "20180624" Date 20180624
  1354. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1355. IsTruncated False Blanks False
  1356. Category 447105 "20180625" Parent 447055 Levels 699 OrderBy Drill 675 Value "20180625"
  1357. Label "25/06/2018" Lastuse 20201216 SourceValue "20180625" Date 20180625
  1358. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1359. IsTruncated False Blanks False
  1360. Category 447107 "20180626" Parent 447055 Levels 699 OrderBy Drill 675 Value "20180626"
  1361. Label "26/06/2018" Lastuse 20201216 SourceValue "20180626" Date 20180626
  1362. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1363. IsTruncated False Blanks False
  1364. Category 447109 "20180627" Parent 447055 Levels 699 OrderBy Drill 675 Value "20180627"
  1365. Label "27/06/2018" Lastuse 20201216 SourceValue "20180627" Date 20180627
  1366. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1367. IsTruncated False Blanks False
  1368. Category 447111 "20180628" Parent 447055 Levels 699 OrderBy Drill 675 Value "20180628"
  1369. Label "28/06/2018" Lastuse 20201216 SourceValue "20180628" Date 20180628
  1370. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1371. IsTruncated False Blanks False
  1372. Category 447113 "20180629" Parent 447055 Levels 699 OrderBy Drill 675 Value "20180629"
  1373. Label "29/06/2018" Lastuse 20201216 SourceValue "20180629" Date 20180629
  1374. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1375. IsTruncated False Blanks False
  1376. Category 447115 "20180630" Parent 447055 Levels 699 OrderBy Drill 675 Value "20180630"
  1377. Label "30/06/2018" Lastuse 20181011 SourceValue "20180630" Date 20180630
  1378. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1379. IsTruncated False Blanks False
  1380. Category 447117 "20180701-20180930" Parent 446737 Levels 687 OrderBy Drill 675
  1381. Value "20180701" Label "3. Q. 2018" Lastuse 20201216 SourceValue "20180701"
  1382. Date 20180701 Filtered False Suppressed False Sign False HideValue False
  1383. IsKeyOrphanage False IsTruncated False Blanks False
  1384. Category 447119 "20180701-20180731" Parent 447117 Levels 693 OrderBy Drill 675
  1385. Value "201807" Label "Juli/2018" Lastuse 20201216 SourceValue "201807"
  1386. Date 20180701 Filtered False Suppressed False Sign False HideValue False
  1387. IsKeyOrphanage False IsTruncated False Blanks False
  1388. Category 447121 "20180701" Parent 447119 Levels 699 OrderBy Drill 675 Value "20180701"
  1389. Label "01/07/2018" Lastuse 20181005 SourceValue "20180701" Date 20180701
  1390. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1391. IsTruncated False Blanks False
  1392. Category 447123 "20180702" Parent 447119 Levels 699 OrderBy Drill 675 Value "20180702"
  1393. Label "02/07/2018" Lastuse 20201216 SourceValue "20180702" Date 20180702
  1394. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1395. IsTruncated False Blanks False
  1396. Category 447125 "20180703" Parent 447119 Levels 699 OrderBy Drill 675 Value "20180703"
  1397. Label "03/07/2018" Lastuse 20201216 SourceValue "20180703" Date 20180703
  1398. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1399. IsTruncated False Blanks False
  1400. Category 447127 "20180704" Parent 447119 Levels 699 OrderBy Drill 675 Value "20180704"
  1401. Label "04/07/2018" Lastuse 20201216 SourceValue "20180704" Date 20180704
  1402. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1403. IsTruncated False Blanks False
  1404. Category 447129 "20180705" Parent 447119 Levels 699 OrderBy Drill 675 Value "20180705"
  1405. Label "05/07/2018" Lastuse 20201216 SourceValue "20180705" Date 20180705
  1406. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1407. IsTruncated False Blanks False
  1408. Category 447131 "20180706" Parent 447119 Levels 699 OrderBy Drill 675 Value "20180706"
  1409. Label "06/07/2018" Lastuse 20201216 SourceValue "20180706" Date 20180706
  1410. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1411. IsTruncated False Blanks False
  1412. Category 447133 "20180707" Parent 447119 Levels 699 OrderBy Drill 675 Value "20180707"
  1413. Label "07/07/2018" Lastuse 20181011 SourceValue "20180707" Date 20180707
  1414. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1415. IsTruncated False Blanks False
  1416. Category 447135 "20180708" Parent 447119 Levels 699 OrderBy Drill 675 Value "20180708"
  1417. Label "08/07/2018" Lastuse 20181005 SourceValue "20180708" Date 20180708
  1418. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1419. IsTruncated False Blanks False
  1420. Category 447137 "20180709" Parent 447119 Levels 699 OrderBy Drill 675 Value "20180709"
  1421. Label "09/07/2018" Lastuse 20201216 SourceValue "20180709" Date 20180709
  1422. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1423. IsTruncated False Blanks False
  1424. Category 447139 "20180710" Parent 447119 Levels 699 OrderBy Drill 675 Value "20180710"
  1425. Label "10/07/2018" Lastuse 20201216 SourceValue "20180710" Date 20180710
  1426. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1427. IsTruncated False Blanks False
  1428. Category 447141 "20180711" Parent 447119 Levels 699 OrderBy Drill 675 Value "20180711"
  1429. Label "11/07/2018" Lastuse 20201216 SourceValue "20180711" Date 20180711
  1430. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1431. IsTruncated False Blanks False
  1432. Category 447143 "20180712" Parent 447119 Levels 699 OrderBy Drill 675 Value "20180712"
  1433. Label "12/07/2018" Lastuse 20201216 SourceValue "20180712" Date 20180712
  1434. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1435. IsTruncated False Blanks False
  1436. Category 447145 "20180713" Parent 447119 Levels 699 OrderBy Drill 675 Value "20180713"
  1437. Label "13/07/2018" Lastuse 20201216 SourceValue "20180713" Date 20180713
  1438. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1439. IsTruncated False Blanks False
  1440. Category 447147 "20180714" Parent 447119 Levels 699 OrderBy Drill 675 Value "20180714"
  1441. Label "14/07/2018" Lastuse 20181011 SourceValue "20180714" Date 20180714
  1442. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1443. IsTruncated False Blanks False
  1444. Category 447149 "20180715" Parent 447119 Levels 699 OrderBy Drill 675 Value "20180715"
  1445. Label "15/07/2018" Lastuse 20181005 SourceValue "20180715" Date 20180715
  1446. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1447. IsTruncated False Blanks False
  1448. Category 447151 "20180716" Parent 447119 Levels 699 OrderBy Drill 675 Value "20180716"
  1449. Label "16/07/2018" Lastuse 20201216 SourceValue "20180716" Date 20180716
  1450. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1451. IsTruncated False Blanks False
  1452. Category 447153 "20180717" Parent 447119 Levels 699 OrderBy Drill 675 Value "20180717"
  1453. Label "17/07/2018" Lastuse 20201216 SourceValue "20180717" Date 20180717
  1454. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1455. IsTruncated False Blanks False
  1456. Category 447155 "20180718" Parent 447119 Levels 699 OrderBy Drill 675 Value "20180718"
  1457. Label "18/07/2018" Lastuse 20201216 SourceValue "20180718" Date 20180718
  1458. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1459. IsTruncated False Blanks False
  1460. Category 447157 "20180719" Parent 447119 Levels 699 OrderBy Drill 675 Value "20180719"
  1461. Label "19/07/2018" Lastuse 20201216 SourceValue "20180719" Date 20180719
  1462. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1463. IsTruncated False Blanks False
  1464. Category 447159 "20180720" Parent 447119 Levels 699 OrderBy Drill 675 Value "20180720"
  1465. Label "20/07/2018" Lastuse 20201216 SourceValue "20180720" Date 20180720
  1466. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1467. IsTruncated False Blanks False
  1468. Category 447161 "20180721" Parent 447119 Levels 699 OrderBy Drill 675 Value "20180721"
  1469. Label "21/07/2018" Lastuse 20181011 SourceValue "20180721" Date 20180721
  1470. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1471. IsTruncated False Blanks False
  1472. Category 447163 "20180722" Parent 447119 Levels 699 OrderBy Drill 675 Value "20180722"
  1473. Label "22/07/2018" Lastuse 20181005 SourceValue "20180722" Date 20180722
  1474. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1475. IsTruncated False Blanks False
  1476. Category 447165 "20180723" Parent 447119 Levels 699 OrderBy Drill 675 Value "20180723"
  1477. Label "23/07/2018" Lastuse 20201216 SourceValue "20180723" Date 20180723
  1478. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1479. IsTruncated False Blanks False
  1480. Category 447167 "20180724" Parent 447119 Levels 699 OrderBy Drill 675 Value "20180724"
  1481. Label "24/07/2018" Lastuse 20201216 SourceValue "20180724" Date 20180724
  1482. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1483. IsTruncated False Blanks False
  1484. Category 447169 "20180725" Parent 447119 Levels 699 OrderBy Drill 675 Value "20180725"
  1485. Label "25/07/2018" Lastuse 20201216 SourceValue "20180725" Date 20180725
  1486. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1487. IsTruncated False Blanks False
  1488. Category 447171 "20180726" Parent 447119 Levels 699 OrderBy Drill 675 Value "20180726"
  1489. Label "26/07/2018" Lastuse 20201216 SourceValue "20180726" Date 20180726
  1490. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1491. IsTruncated False Blanks False
  1492. Category 447173 "20180727" Parent 447119 Levels 699 OrderBy Drill 675 Value "20180727"
  1493. Label "27/07/2018" Lastuse 20201216 SourceValue "20180727" Date 20180727
  1494. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1495. IsTruncated False Blanks False
  1496. Category 447175 "20180728" Parent 447119 Levels 699 OrderBy Drill 675 Value "20180728"
  1497. Label "28/07/2018" Lastuse 20181011 SourceValue "20180728" Date 20180728
  1498. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1499. IsTruncated False Blanks False
  1500. Category 447177 "20180729" Parent 447119 Levels 699 OrderBy Drill 675 Value "20180729"
  1501. Label "29/07/2018" Lastuse 20181005 SourceValue "20180729" Date 20180729
  1502. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1503. IsTruncated False Blanks False
  1504. Category 447179 "20180730" Parent 447119 Levels 699 OrderBy Drill 675 Value "20180730"
  1505. Label "30/07/2018" Lastuse 20201216 SourceValue "20180730" Date 20180730
  1506. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1507. IsTruncated False Blanks False
  1508. Category 447181 "20180731" Parent 447119 Levels 699 OrderBy Drill 675 Value "20180731"
  1509. Label "31/07/2018" Lastuse 20201216 SourceValue "20180731" Date 20180731
  1510. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1511. IsTruncated False Blanks False
  1512. Category 447183 "20180801-20180831" Parent 447117 Levels 693 OrderBy Drill 675
  1513. Value "201808" Label "Aug./2018" Lastuse 20201216 SourceValue "201808"
  1514. Date 20180801 Filtered False Suppressed False Sign False HideValue False
  1515. IsKeyOrphanage False IsTruncated False Blanks False
  1516. Category 447185 "20180801" Parent 447183 Levels 699 OrderBy Drill 675 Value "20180801"
  1517. Label "01/08/2018" Lastuse 20201216 SourceValue "20180801" Date 20180801
  1518. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1519. IsTruncated False Blanks False
  1520. Category 447187 "20180802" Parent 447183 Levels 699 OrderBy Drill 675 Value "20180802"
  1521. Label "02/08/2018" Lastuse 20201216 SourceValue "20180802" Date 20180802
  1522. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1523. IsTruncated False Blanks False
  1524. Category 447189 "20180803" Parent 447183 Levels 699 OrderBy Drill 675 Value "20180803"
  1525. Label "03/08/2018" Lastuse 20201216 SourceValue "20180803" Date 20180803
  1526. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1527. IsTruncated False Blanks False
  1528. Category 447191 "20180804" Parent 447183 Levels 699 OrderBy Drill 675 Value "20180804"
  1529. Label "04/08/2018" Lastuse 20181011 SourceValue "20180804" Date 20180804
  1530. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1531. IsTruncated False Blanks False
  1532. Category 447193 "20180805" Parent 447183 Levels 699 OrderBy Drill 675 Value "20180805"
  1533. Label "05/08/2018" Lastuse 20181005 SourceValue "20180805" Date 20180805
  1534. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1535. IsTruncated False Blanks False
  1536. Category 447195 "20180806" Parent 447183 Levels 699 OrderBy Drill 675 Value "20180806"
  1537. Label "06/08/2018" Lastuse 20201216 SourceValue "20180806" Date 20180806
  1538. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1539. IsTruncated False Blanks False
  1540. Category 447197 "20180807" Parent 447183 Levels 699 OrderBy Drill 675 Value "20180807"
  1541. Label "07/08/2018" Lastuse 20201216 SourceValue "20180807" Date 20180807
  1542. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1543. IsTruncated False Blanks False
  1544. Category 447199 "20180808" Parent 447183 Levels 699 OrderBy Drill 675 Value "20180808"
  1545. Label "08/08/2018" Lastuse 20201216 SourceValue "20180808" Date 20180808
  1546. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1547. IsTruncated False Blanks False
  1548. Category 447201 "20180809" Parent 447183 Levels 699 OrderBy Drill 675 Value "20180809"
  1549. Label "09/08/2018" Lastuse 20201216 SourceValue "20180809" Date 20180809
  1550. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1551. IsTruncated False Blanks False
  1552. Category 447203 "20180810" Parent 447183 Levels 699 OrderBy Drill 675 Value "20180810"
  1553. Label "10/08/2018" Lastuse 20201216 SourceValue "20180810" Date 20180810
  1554. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1555. IsTruncated False Blanks False
  1556. Category 447205 "20180811" Parent 447183 Levels 699 OrderBy Drill 675 Value "20180811"
  1557. Label "11/08/2018" Lastuse 20181011 SourceValue "20180811" Date 20180811
  1558. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1559. IsTruncated False Blanks False
  1560. Category 447207 "20180812" Parent 447183 Levels 699 OrderBy Drill 675 Value "20180812"
  1561. Label "12/08/2018" Lastuse 20181005 SourceValue "20180812" Date 20180812
  1562. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1563. IsTruncated False Blanks False
  1564. Category 447209 "20180813" Parent 447183 Levels 699 OrderBy Drill 675 Value "20180813"
  1565. Label "13/08/2018" Lastuse 20201216 SourceValue "20180813" Date 20180813
  1566. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1567. IsTruncated False Blanks False
  1568. Category 447211 "20180814" Parent 447183 Levels 699 OrderBy Drill 675 Value "20180814"
  1569. Label "14/08/2018" Lastuse 20201216 SourceValue "20180814" Date 20180814
  1570. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1571. IsTruncated False Blanks False
  1572. Category 447213 "20180815" Parent 447183 Levels 699 OrderBy Drill 675 Value "20180815"
  1573. Label "15/08/2018" Lastuse 20201216 SourceValue "20180815" Date 20180815
  1574. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1575. IsTruncated False Blanks False
  1576. Category 447215 "20180816" Parent 447183 Levels 699 OrderBy Drill 675 Value "20180816"
  1577. Label "16/08/2018" Lastuse 20201216 SourceValue "20180816" Date 20180816
  1578. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1579. IsTruncated False Blanks False
  1580. Category 447217 "20180817" Parent 447183 Levels 699 OrderBy Drill 675 Value "20180817"
  1581. Label "17/08/2018" Lastuse 20201216 SourceValue "20180817" Date 20180817
  1582. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1583. IsTruncated False Blanks False
  1584. Category 447219 "20180818" Parent 447183 Levels 699 OrderBy Drill 675 Value "20180818"
  1585. Label "18/08/2018" Lastuse 20181011 SourceValue "20180818" Date 20180818
  1586. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1587. IsTruncated False Blanks False
  1588. Category 447221 "20180819" Parent 447183 Levels 699 OrderBy Drill 675 Value "20180819"
  1589. Label "19/08/2018" Lastuse 20181005 SourceValue "20180819" Date 20180819
  1590. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1591. IsTruncated False Blanks False
  1592. Category 447223 "20180820" Parent 447183 Levels 699 OrderBy Drill 675 Value "20180820"
  1593. Label "20/08/2018" Lastuse 20201216 SourceValue "20180820" Date 20180820
  1594. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1595. IsTruncated False Blanks False
  1596. Category 447225 "20180821" Parent 447183 Levels 699 OrderBy Drill 675 Value "20180821"
  1597. Label "21/08/2018" Lastuse 20201216 SourceValue "20180821" Date 20180821
  1598. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1599. IsTruncated False Blanks False
  1600. Category 447227 "20180822" Parent 447183 Levels 699 OrderBy Drill 675 Value "20180822"
  1601. Label "22/08/2018" Lastuse 20201216 SourceValue "20180822" Date 20180822
  1602. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1603. IsTruncated False Blanks False
  1604. Category 447229 "20180823" Parent 447183 Levels 699 OrderBy Drill 675 Value "20180823"
  1605. Label "23/08/2018" Lastuse 20201216 SourceValue "20180823" Date 20180823
  1606. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1607. IsTruncated False Blanks False
  1608. Category 447231 "20180824" Parent 447183 Levels 699 OrderBy Drill 675 Value "20180824"
  1609. Label "24/08/2018" Lastuse 20201216 SourceValue "20180824" Date 20180824
  1610. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1611. IsTruncated False Blanks False
  1612. Category 447233 "20180825" Parent 447183 Levels 699 OrderBy Drill 675 Value "20180825"
  1613. Label "25/08/2018" Lastuse 20181011 SourceValue "20180825" Date 20180825
  1614. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1615. IsTruncated False Blanks False
  1616. Category 447235 "20180826" Parent 447183 Levels 699 OrderBy Drill 675 Value "20180826"
  1617. Label "26/08/2018" Lastuse 20181005 SourceValue "20180826" Date 20180826
  1618. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1619. IsTruncated False Blanks False
  1620. Category 447237 "20180827" Parent 447183 Levels 699 OrderBy Drill 675 Value "20180827"
  1621. Label "27/08/2018" Lastuse 20201216 SourceValue "20180827" Date 20180827
  1622. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1623. IsTruncated False Blanks False
  1624. Category 447239 "20180828" Parent 447183 Levels 699 OrderBy Drill 675 Value "20180828"
  1625. Label "28/08/2018" Lastuse 20201216 SourceValue "20180828" Date 20180828
  1626. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1627. IsTruncated False Blanks False
  1628. Category 447241 "20180829" Parent 447183 Levels 699 OrderBy Drill 675 Value "20180829"
  1629. Label "29/08/2018" Lastuse 20201216 SourceValue "20180829" Date 20180829
  1630. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1631. IsTruncated False Blanks False
  1632. Category 447243 "20180830" Parent 447183 Levels 699 OrderBy Drill 675 Value "20180830"
  1633. Label "30/08/2018" Lastuse 20201216 SourceValue "20180830" Date 20180830
  1634. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1635. IsTruncated False Blanks False
  1636. Category 447245 "20180831" Parent 447183 Levels 699 OrderBy Drill 675 Value "20180831"
  1637. Label "31/08/2018" Lastuse 20201216 SourceValue "20180831" Date 20180831
  1638. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1639. IsTruncated False Blanks False
  1640. Category 447247 "20180901-20180930" Parent 447117 Levels 693 OrderBy Drill 675
  1641. Value "201809" Label "Sept./2018" Lastuse 20201216 SourceValue "201809"
  1642. Date 20180901 Filtered False Suppressed False Sign False HideValue False
  1643. IsKeyOrphanage False IsTruncated False Blanks False
  1644. Category 447249 "20180901" Parent 447247 Levels 699 OrderBy Drill 675 Value "20180901"
  1645. Label "01/09/2018" Lastuse 20181011 SourceValue "20180901" Date 20180901
  1646. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1647. IsTruncated False Blanks False
  1648. Category 447251 "20180902" Parent 447247 Levels 699 OrderBy Drill 675 Value "20180902"
  1649. Label "02/09/2018" Lastuse 20181005 SourceValue "20180902" Date 20180902
  1650. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1651. IsTruncated False Blanks False
  1652. Category 447253 "20180903" Parent 447247 Levels 699 OrderBy Drill 675 Value "20180903"
  1653. Label "03/09/2018" Lastuse 20201216 SourceValue "20180903" Date 20180903
  1654. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1655. IsTruncated False Blanks False
  1656. Category 447255 "20180904" Parent 447247 Levels 699 OrderBy Drill 675 Value "20180904"
  1657. Label "04/09/2018" Lastuse 20201216 SourceValue "20180904" Date 20180904
  1658. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1659. IsTruncated False Blanks False
  1660. Category 447257 "20180905" Parent 447247 Levels 699 OrderBy Drill 675 Value "20180905"
  1661. Label "05/09/2018" Lastuse 20201216 SourceValue "20180905" Date 20180905
  1662. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1663. IsTruncated False Blanks False
  1664. Category 447259 "20180906" Parent 447247 Levels 699 OrderBy Drill 675 Value "20180906"
  1665. Label "06/09/2018" Lastuse 20201216 SourceValue "20180906" Date 20180906
  1666. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1667. IsTruncated False Blanks False
  1668. Category 447261 "20180907" Parent 447247 Levels 699 OrderBy Drill 675 Value "20180907"
  1669. Label "07/09/2018" Lastuse 20201216 SourceValue "20180907" Date 20180907
  1670. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1671. IsTruncated False Blanks False
  1672. Category 447263 "20180908" Parent 447247 Levels 699 OrderBy Drill 675 Value "20180908"
  1673. Label "08/09/2018" Lastuse 20181011 SourceValue "20180908" Date 20180908
  1674. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1675. IsTruncated False Blanks False
  1676. Category 447265 "20180909" Parent 447247 Levels 699 OrderBy Drill 675 Value "20180909"
  1677. Label "09/09/2018" Lastuse 20181005 SourceValue "20180909" Date 20180909
  1678. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1679. IsTruncated False Blanks False
  1680. Category 447267 "20180910" Parent 447247 Levels 699 OrderBy Drill 675 Value "20180910"
  1681. Label "10/09/2018" Lastuse 20201216 SourceValue "20180910" Date 20180910
  1682. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1683. IsTruncated False Blanks False
  1684. Category 447269 "20180911" Parent 447247 Levels 699 OrderBy Drill 675 Value "20180911"
  1685. Label "11/09/2018" Lastuse 20201216 SourceValue "20180911" Date 20180911
  1686. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1687. IsTruncated False Blanks False
  1688. Category 447271 "20180912" Parent 447247 Levels 699 OrderBy Drill 675 Value "20180912"
  1689. Label "12/09/2018" Lastuse 20201216 SourceValue "20180912" Date 20180912
  1690. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1691. IsTruncated False Blanks False
  1692. Category 447273 "20180913" Parent 447247 Levels 699 OrderBy Drill 675 Value "20180913"
  1693. Label "13/09/2018" Lastuse 20201216 SourceValue "20180913" Date 20180913
  1694. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1695. IsTruncated False Blanks False
  1696. Category 447275 "20180914" Parent 447247 Levels 699 OrderBy Drill 675 Value "20180914"
  1697. Label "14/09/2018" Lastuse 20201216 SourceValue "20180914" Date 20180914
  1698. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1699. IsTruncated False Blanks False
  1700. Category 447277 "20180915" Parent 447247 Levels 699 OrderBy Drill 675 Value "20180915"
  1701. Label "15/09/2018" Lastuse 20181011 SourceValue "20180915" Date 20180915
  1702. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1703. IsTruncated False Blanks False
  1704. Category 447279 "20180916" Parent 447247 Levels 699 OrderBy Drill 675 Value "20180916"
  1705. Label "16/09/2018" Lastuse 20181005 SourceValue "20180916" Date 20180916
  1706. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1707. IsTruncated False Blanks False
  1708. Category 447281 "20180917" Parent 447247 Levels 699 OrderBy Drill 675 Value "20180917"
  1709. Label "17/09/2018" Lastuse 20201216 SourceValue "20180917" Date 20180917
  1710. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1711. IsTruncated False Blanks False
  1712. Category 447283 "20180918" Parent 447247 Levels 699 OrderBy Drill 675 Value "20180918"
  1713. Label "18/09/2018" Lastuse 20201216 SourceValue "20180918" Date 20180918
  1714. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1715. IsTruncated False Blanks False
  1716. Category 447285 "20180919" Parent 447247 Levels 699 OrderBy Drill 675 Value "20180919"
  1717. Label "19/09/2018" Lastuse 20201216 SourceValue "20180919" Date 20180919
  1718. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1719. IsTruncated False Blanks False
  1720. Category 447287 "20180920" Parent 447247 Levels 699 OrderBy Drill 675 Value "20180920"
  1721. Label "20/09/2018" Lastuse 20201216 SourceValue "20180920" Date 20180920
  1722. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1723. IsTruncated False Blanks False
  1724. Category 447289 "20180921" Parent 447247 Levels 699 OrderBy Drill 675 Value "20180921"
  1725. Label "21/09/2018" Lastuse 20181011 SourceValue "20180921" Date 20180921
  1726. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1727. IsTruncated False Blanks False
  1728. Category 447291 "20180922" Parent 447247 Levels 699 OrderBy Drill 675 Value "20180922"
  1729. Label "22/09/2018" Lastuse 20181011 SourceValue "20180922" Date 20180922
  1730. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1731. IsTruncated False Blanks False
  1732. Category 447293 "20180923" Parent 447247 Levels 699 OrderBy Drill 675 Value "20180923"
  1733. Label "23/09/2018" Lastuse 20181005 SourceValue "20180923" Date 20180923
  1734. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1735. IsTruncated False Blanks False
  1736. Category 447295 "20180924" Parent 447247 Levels 699 OrderBy Drill 675 Value "20180924"
  1737. Label "24/09/2018" Lastuse 20201216 SourceValue "20180924" Date 20180924
  1738. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1739. IsTruncated False Blanks False
  1740. Category 447297 "20180925" Parent 447247 Levels 699 OrderBy Drill 675 Value "20180925"
  1741. Label "25/09/2018" Lastuse 20181011 SourceValue "20180925" Date 20180925
  1742. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1743. IsTruncated False Blanks False
  1744. Category 447299 "20180926" Parent 447247 Levels 699 OrderBy Drill 675 Value "20180926"
  1745. Label "26/09/2018" Lastuse 20181011 SourceValue "20180926" Date 20180926
  1746. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1747. IsTruncated False Blanks False
  1748. Category 447301 "20180927" Parent 447247 Levels 699 OrderBy Drill 675 Value "20180927"
  1749. Label "27/09/2018" Lastuse 20201216 SourceValue "20180927" Date 20180927
  1750. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1751. IsTruncated False Blanks False
  1752. Category 447303 "20180928" Parent 447247 Levels 699 OrderBy Drill 675 Value "20180928"
  1753. Label "28/09/2018" Lastuse 20201216 SourceValue "20180928" Date 20180928
  1754. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1755. IsTruncated False Blanks False
  1756. Category 447305 "20180929" Parent 447247 Levels 699 OrderBy Drill 675 Value "20180929"
  1757. Label "29/09/2018" Lastuse 20201216 SourceValue "20180929" Date 20180929
  1758. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1759. IsTruncated False Blanks False
  1760. Category 447307 "20180930" Parent 447247 Levels 699 OrderBy Drill 675 Value "20180930"
  1761. Label "30/09/2018" Lastuse 20181005 SourceValue "20180930" Date 20180930
  1762. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1763. IsTruncated False Blanks False
  1764. Category 447309 "20181001-20181231" Parent 446737 Levels 687 OrderBy Drill 675
  1765. Value "20181001" Label "4. Q. 2018" Lastuse 20201216 SourceValue "20181001"
  1766. Date 20181001 Filtered False Suppressed False Sign False HideValue False
  1767. IsKeyOrphanage False IsTruncated False Blanks False
  1768. Category 447311 "20181001-20181031" Parent 447309 Levels 693 OrderBy Drill 675
  1769. Value "201810" Label "Okt./2018" Lastuse 20201216 SourceValue "201810"
  1770. Date 20181001 Filtered False Suppressed False Sign False HideValue False
  1771. IsKeyOrphanage False IsTruncated False Blanks False
  1772. Category 447313 "20181001" Parent 447311 Levels 699 OrderBy Drill 675 Value "20181001"
  1773. Label "01/10/2018" Lastuse 20201216 SourceValue "20181001" Date 20181001
  1774. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1775. IsTruncated False Blanks False
  1776. Category 447315 "20181002" Parent 447311 Levels 699 OrderBy Drill 675 Value "20181002"
  1777. Label "02/10/2018" Lastuse 20201216 SourceValue "20181002" Date 20181002
  1778. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1779. IsTruncated False Blanks False
  1780. Category 447317 "20181003" Parent 447311 Levels 699 OrderBy Drill 675 Value "20181003"
  1781. Label "03/10/2018" Lastuse 20181005 SourceValue "20181003" Date 20181003
  1782. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1783. IsTruncated False Blanks False
  1784. Category 447319 "20181004" Parent 447311 Levels 699 OrderBy Drill 675 Value "20181004"
  1785. Label "04/10/2018" Lastuse 20201216 SourceValue "20181004" Date 20181004
  1786. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1787. IsTruncated False Blanks False
  1788. Category 447321 "20181005" Parent 447311 Levels 699 OrderBy Drill 675 Value "20181005"
  1789. Label "05/10/2018" Lastuse 20201216 SourceValue "20181005" Date 20181005
  1790. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1791. IsTruncated False Blanks False
  1792. Category 447323 "20181006" Parent 447311 Levels 699 OrderBy Drill 675 Value "20181006"
  1793. Label "06/10/2018" Lastuse 20201216 SourceValue "20181006" Date 20181006
  1794. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1795. IsTruncated False Blanks False
  1796. Category 447325 "20181007" Parent 447311 Levels 699 OrderBy Drill 675 Value "20181007"
  1797. Label "07/10/2018" Lastuse 20181005 SourceValue "20181007" Date 20181007
  1798. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1799. IsTruncated False Blanks False
  1800. Category 447327 "20181008" Parent 447311 Levels 699 OrderBy Drill 675 Value "20181008"
  1801. Label "08/10/2018" Lastuse 20201216 SourceValue "20181008" Date 20181008
  1802. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1803. IsTruncated False Blanks False
  1804. Category 447329 "20181009" Parent 447311 Levels 699 OrderBy Drill 675 Value "20181009"
  1805. Label "09/10/2018" Lastuse 20201216 SourceValue "20181009" Date 20181009
  1806. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1807. IsTruncated False Blanks False
  1808. Category 447331 "20181010" Parent 447311 Levels 699 OrderBy Drill 675 Value "20181010"
  1809. Label "10/10/2018" Lastuse 20201216 SourceValue "20181010" Date 20181010
  1810. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1811. IsTruncated False Blanks False
  1812. Category 447333 "20181011" Parent 447311 Levels 699 OrderBy Drill 675 Value "20181011"
  1813. Label "11/10/2018" Lastuse 20201216 SourceValue "20181011" Date 20181011
  1814. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1815. IsTruncated False Blanks False
  1816. Category 447335 "20181012" Parent 447311 Levels 699 OrderBy Drill 675 Value "20181012"
  1817. Label "12/10/2018" Lastuse 20201216 SourceValue "20181012" Date 20181012
  1818. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1819. IsTruncated False Blanks False
  1820. Category 447337 "20181013" Parent 447311 Levels 699 OrderBy Drill 675 Value "20181013"
  1821. Label "13/10/2018" Lastuse 20181005 SourceValue "20181013" Date 20181013
  1822. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1823. IsTruncated False Blanks False
  1824. Category 447339 "20181014" Parent 447311 Levels 699 OrderBy Drill 675 Value "20181014"
  1825. Label "14/10/2018" Lastuse 20181005 SourceValue "20181014" Date 20181014
  1826. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1827. IsTruncated False Blanks False
  1828. Category 447341 "20181015" Parent 447311 Levels 699 OrderBy Drill 675 Value "20181015"
  1829. Label "15/10/2018" Lastuse 20201216 SourceValue "20181015" Date 20181015
  1830. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1831. IsTruncated False Blanks False
  1832. Category 447343 "20181016" Parent 447311 Levels 699 OrderBy Drill 675 Value "20181016"
  1833. Label "16/10/2018" Lastuse 20201216 SourceValue "20181016" Date 20181016
  1834. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1835. IsTruncated False Blanks False
  1836. Category 447345 "20181017" Parent 447311 Levels 699 OrderBy Drill 675 Value "20181017"
  1837. Label "17/10/2018" Lastuse 20201216 SourceValue "20181017" Date 20181017
  1838. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1839. IsTruncated False Blanks False
  1840. Category 447347 "20181018" Parent 447311 Levels 699 OrderBy Drill 675 Value "20181018"
  1841. Label "18/10/2018" Lastuse 20201216 SourceValue "20181018" Date 20181018
  1842. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1843. IsTruncated False Blanks False
  1844. Category 447349 "20181019" Parent 447311 Levels 699 OrderBy Drill 675 Value "20181019"
  1845. Label "19/10/2018" Lastuse 20201216 SourceValue "20181019" Date 20181019
  1846. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1847. IsTruncated False Blanks False
  1848. Category 447351 "20181020" Parent 447311 Levels 699 OrderBy Drill 675 Value "20181020"
  1849. Label "20/10/2018" Lastuse 20181005 SourceValue "20181020" Date 20181020
  1850. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1851. IsTruncated False Blanks False
  1852. Category 447353 "20181021" Parent 447311 Levels 699 OrderBy Drill 675 Value "20181021"
  1853. Label "21/10/2018" Lastuse 20181005 SourceValue "20181021" Date 20181021
  1854. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1855. IsTruncated False Blanks False
  1856. Category 447355 "20181022" Parent 447311 Levels 699 OrderBy Drill 675 Value "20181022"
  1857. Label "22/10/2018" Lastuse 20201216 SourceValue "20181022" Date 20181022
  1858. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1859. IsTruncated False Blanks False
  1860. Category 447357 "20181023" Parent 447311 Levels 699 OrderBy Drill 675 Value "20181023"
  1861. Label "23/10/2018" Lastuse 20201216 SourceValue "20181023" Date 20181023
  1862. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1863. IsTruncated False Blanks False
  1864. Category 447359 "20181024" Parent 447311 Levels 699 OrderBy Drill 675 Value "20181024"
  1865. Label "24/10/2018" Lastuse 20201216 SourceValue "20181024" Date 20181024
  1866. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1867. IsTruncated False Blanks False
  1868. Category 447361 "20181025" Parent 447311 Levels 699 OrderBy Drill 675 Value "20181025"
  1869. Label "25/10/2018" Lastuse 20201216 SourceValue "20181025" Date 20181025
  1870. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1871. IsTruncated False Blanks False
  1872. Category 447363 "20181026" Parent 447311 Levels 699 OrderBy Drill 675 Value "20181026"
  1873. Label "26/10/2018" Lastuse 20201216 SourceValue "20181026" Date 20181026
  1874. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1875. IsTruncated False Blanks False
  1876. Category 447365 "20181027" Parent 447311 Levels 699 OrderBy Drill 675 Value "20181027"
  1877. Label "27/10/2018" Lastuse 20181005 SourceValue "20181027" Date 20181027
  1878. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1879. IsTruncated False Blanks False
  1880. Category 447367 "20181028" Parent 447311 Levels 699 OrderBy Drill 675 Value "20181028"
  1881. Label "28/10/2018" Lastuse 20181005 SourceValue "20181028" Date 20181028
  1882. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1883. IsTruncated False Blanks False
  1884. Category 447369 "20181029" Parent 447311 Levels 699 OrderBy Drill 675 Value "20181029"
  1885. Label "29/10/2018" Lastuse 20201216 SourceValue "20181029" Date 20181029
  1886. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1887. IsTruncated False Blanks False
  1888. Category 447371 "20181030" Parent 447311 Levels 699 OrderBy Drill 675 Value "20181030"
  1889. Label "30/10/2018" Lastuse 20201216 SourceValue "20181030" Date 20181030
  1890. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1891. IsTruncated False Blanks False
  1892. Category 447373 "20181031" Parent 447311 Levels 699 OrderBy Drill 675 Value "20181031"
  1893. Label "31/10/2018" Lastuse 20181005 SourceValue "20181031" Date 20181031
  1894. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1895. IsTruncated False Blanks False
  1896. Category 447375 "20181101-20181130" Parent 447309 Levels 693 OrderBy Drill 675
  1897. Value "201811" Label "Nov./2018" Lastuse 20201216 SourceValue "201811"
  1898. Date 20181101 Filtered False Suppressed False Sign False HideValue False
  1899. IsKeyOrphanage False IsTruncated False Blanks False
  1900. Category 447377 "20181101" Parent 447375 Levels 699 OrderBy Drill 675 Value "20181101"
  1901. Label "01/11/2018" Lastuse 20201216 SourceValue "20181101" Date 20181101
  1902. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1903. IsTruncated False Blanks False
  1904. Category 447379 "20181102" Parent 447375 Levels 699 OrderBy Drill 675 Value "20181102"
  1905. Label "02/11/2018" Lastuse 20201216 SourceValue "20181102" Date 20181102
  1906. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1907. IsTruncated False Blanks False
  1908. Category 447381 "20181103" Parent 447375 Levels 699 OrderBy Drill 675 Value "20181103"
  1909. Label "03/11/2018" Lastuse 20181005 SourceValue "20181103" Date 20181103
  1910. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1911. IsTruncated False Blanks False
  1912. Category 447383 "20181104" Parent 447375 Levels 699 OrderBy Drill 675 Value "20181104"
  1913. Label "04/11/2018" Lastuse 20181005 SourceValue "20181104" Date 20181104
  1914. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1915. IsTruncated False Blanks False
  1916. Category 447385 "20181105" Parent 447375 Levels 699 OrderBy Drill 675 Value "20181105"
  1917. Label "05/11/2018" Lastuse 20201216 SourceValue "20181105" Date 20181105
  1918. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1919. IsTruncated False Blanks False
  1920. Category 447387 "20181106" Parent 447375 Levels 699 OrderBy Drill 675 Value "20181106"
  1921. Label "06/11/2018" Lastuse 20201216 SourceValue "20181106" Date 20181106
  1922. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1923. IsTruncated False Blanks False
  1924. Category 447389 "20181107" Parent 447375 Levels 699 OrderBy Drill 675 Value "20181107"
  1925. Label "07/11/2018" Lastuse 20201216 SourceValue "20181107" Date 20181107
  1926. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1927. IsTruncated False Blanks False
  1928. Category 447391 "20181108" Parent 447375 Levels 699 OrderBy Drill 675 Value "20181108"
  1929. Label "08/11/2018" Lastuse 20201216 SourceValue "20181108" Date 20181108
  1930. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1931. IsTruncated False Blanks False
  1932. Category 447393 "20181109" Parent 447375 Levels 699 OrderBy Drill 675 Value "20181109"
  1933. Label "09/11/2018" Lastuse 20201216 SourceValue "20181109" Date 20181109
  1934. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1935. IsTruncated False Blanks False
  1936. Category 447395 "20181110" Parent 447375 Levels 699 OrderBy Drill 675 Value "20181110"
  1937. Label "10/11/2018" Lastuse 20181005 SourceValue "20181110" Date 20181110
  1938. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1939. IsTruncated False Blanks False
  1940. Category 447397 "20181111" Parent 447375 Levels 699 OrderBy Drill 675 Value "20181111"
  1941. Label "11/11/2018" Lastuse 20181005 SourceValue "20181111" Date 20181111
  1942. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1943. IsTruncated False Blanks False
  1944. Category 447399 "20181112" Parent 447375 Levels 699 OrderBy Drill 675 Value "20181112"
  1945. Label "12/11/2018" Lastuse 20201216 SourceValue "20181112" Date 20181112
  1946. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1947. IsTruncated False Blanks False
  1948. Category 447401 "20181113" Parent 447375 Levels 699 OrderBy Drill 675 Value "20181113"
  1949. Label "13/11/2018" Lastuse 20201216 SourceValue "20181113" Date 20181113
  1950. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1951. IsTruncated False Blanks False
  1952. Category 447403 "20181114" Parent 447375 Levels 699 OrderBy Drill 675 Value "20181114"
  1953. Label "14/11/2018" Lastuse 20201216 SourceValue "20181114" Date 20181114
  1954. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1955. IsTruncated False Blanks False
  1956. Category 447405 "20181115" Parent 447375 Levels 699 OrderBy Drill 675 Value "20181115"
  1957. Label "15/11/2018" Lastuse 20201216 SourceValue "20181115" Date 20181115
  1958. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1959. IsTruncated False Blanks False
  1960. Category 447407 "20181116" Parent 447375 Levels 699 OrderBy Drill 675 Value "20181116"
  1961. Label "16/11/2018" Lastuse 20201216 SourceValue "20181116" Date 20181116
  1962. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1963. IsTruncated False Blanks False
  1964. Category 447409 "20181117" Parent 447375 Levels 699 OrderBy Drill 675 Value "20181117"
  1965. Label "17/11/2018" Lastuse 20181005 SourceValue "20181117" Date 20181117
  1966. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1967. IsTruncated False Blanks False
  1968. Category 447411 "20181118" Parent 447375 Levels 699 OrderBy Drill 675 Value "20181118"
  1969. Label "18/11/2018" Lastuse 20181005 SourceValue "20181118" Date 20181118
  1970. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1971. IsTruncated False Blanks False
  1972. Category 447413 "20181119" Parent 447375 Levels 699 OrderBy Drill 675 Value "20181119"
  1973. Label "19/11/2018" Lastuse 20201216 SourceValue "20181119" Date 20181119
  1974. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1975. IsTruncated False Blanks False
  1976. Category 447415 "20181120" Parent 447375 Levels 699 OrderBy Drill 675 Value "20181120"
  1977. Label "20/11/2018" Lastuse 20201216 SourceValue "20181120" Date 20181120
  1978. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1979. IsTruncated False Blanks False
  1980. Category 447417 "20181121" Parent 447375 Levels 699 OrderBy Drill 675 Value "20181121"
  1981. Label "21/11/2018" Lastuse 20201216 SourceValue "20181121" Date 20181121
  1982. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1983. IsTruncated False Blanks False
  1984. Category 447419 "20181122" Parent 447375 Levels 699 OrderBy Drill 675 Value "20181122"
  1985. Label "22/11/2018" Lastuse 20201216 SourceValue "20181122" Date 20181122
  1986. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1987. IsTruncated False Blanks False
  1988. Category 447421 "20181123" Parent 447375 Levels 699 OrderBy Drill 675 Value "20181123"
  1989. Label "23/11/2018" Lastuse 20201216 SourceValue "20181123" Date 20181123
  1990. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1991. IsTruncated False Blanks False
  1992. Category 447423 "20181124" Parent 447375 Levels 699 OrderBy Drill 675 Value "20181124"
  1993. Label "24/11/2018" Lastuse 20181005 SourceValue "20181124" Date 20181124
  1994. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1995. IsTruncated False Blanks False
  1996. Category 447425 "20181125" Parent 447375 Levels 699 OrderBy Drill 675 Value "20181125"
  1997. Label "25/11/2018" Lastuse 20181005 SourceValue "20181125" Date 20181125
  1998. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  1999. IsTruncated False Blanks False
  2000. Category 447427 "20181126" Parent 447375 Levels 699 OrderBy Drill 675 Value "20181126"
  2001. Label "26/11/2018" Lastuse 20201216 SourceValue "20181126" Date 20181126
  2002. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2003. IsTruncated False Blanks False
  2004. Category 447429 "20181127" Parent 447375 Levels 699 OrderBy Drill 675 Value "20181127"
  2005. Label "27/11/2018" Lastuse 20201216 SourceValue "20181127" Date 20181127
  2006. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2007. IsTruncated False Blanks False
  2008. Category 447431 "20181128" Parent 447375 Levels 699 OrderBy Drill 675 Value "20181128"
  2009. Label "28/11/2018" Lastuse 20201216 SourceValue "20181128" Date 20181128
  2010. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2011. IsTruncated False Blanks False
  2012. Category 447433 "20181129" Parent 447375 Levels 699 OrderBy Drill 675 Value "20181129"
  2013. Label "29/11/2018" Lastuse 20201216 SourceValue "20181129" Date 20181129
  2014. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2015. IsTruncated False Blanks False
  2016. Category 447435 "20181130" Parent 447375 Levels 699 OrderBy Drill 675 Value "20181130"
  2017. Label "30/11/2018" Lastuse 20201216 SourceValue "20181130" Date 20181130
  2018. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2019. IsTruncated False Blanks False
  2020. Category 447437 "20181201-20181231" Parent 447309 Levels 693 OrderBy Drill 675
  2021. Value "201812" Label "Dez./2018" Lastuse 20201216 SourceValue "201812"
  2022. Date 20181201 Filtered False Suppressed False Sign False HideValue False
  2023. IsKeyOrphanage False IsTruncated False Blanks False
  2024. Category 447439 "20181201" Parent 447437 Levels 699 OrderBy Drill 675 Value "20181201"
  2025. Label "01/12/2018" Lastuse 20181005 SourceValue "20181201" Date 20181201
  2026. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2027. IsTruncated False Blanks False
  2028. Category 447441 "20181202" Parent 447437 Levels 699 OrderBy Drill 675 Value "20181202"
  2029. Label "02/12/2018" Lastuse 20181005 SourceValue "20181202" Date 20181202
  2030. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2031. IsTruncated False Blanks False
  2032. Category 447443 "20181203" Parent 447437 Levels 699 OrderBy Drill 675 Value "20181203"
  2033. Label "03/12/2018" Lastuse 20201216 SourceValue "20181203" Date 20181203
  2034. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2035. IsTruncated False Blanks False
  2036. Category 447445 "20181204" Parent 447437 Levels 699 OrderBy Drill 675 Value "20181204"
  2037. Label "04/12/2018" Lastuse 20201216 SourceValue "20181204" Date 20181204
  2038. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2039. IsTruncated False Blanks False
  2040. Category 447447 "20181205" Parent 447437 Levels 699 OrderBy Drill 675 Value "20181205"
  2041. Label "05/12/2018" Lastuse 20201216 SourceValue "20181205" Date 20181205
  2042. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2043. IsTruncated False Blanks False
  2044. Category 447449 "20181206" Parent 447437 Levels 699 OrderBy Drill 675 Value "20181206"
  2045. Label "06/12/2018" Lastuse 20201216 SourceValue "20181206" Date 20181206
  2046. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2047. IsTruncated False Blanks False
  2048. Category 447451 "20181207" Parent 447437 Levels 699 OrderBy Drill 675 Value "20181207"
  2049. Label "07/12/2018" Lastuse 20201216 SourceValue "20181207" Date 20181207
  2050. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2051. IsTruncated False Blanks False
  2052. Category 447453 "20181208" Parent 447437 Levels 699 OrderBy Drill 675 Value "20181208"
  2053. Label "08/12/2018" Lastuse 20181005 SourceValue "20181208" Date 20181208
  2054. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2055. IsTruncated False Blanks False
  2056. Category 447455 "20181209" Parent 447437 Levels 699 OrderBy Drill 675 Value "20181209"
  2057. Label "09/12/2018" Lastuse 20181005 SourceValue "20181209" Date 20181209
  2058. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2059. IsTruncated False Blanks False
  2060. Category 447457 "20181210" Parent 447437 Levels 699 OrderBy Drill 675 Value "20181210"
  2061. Label "10/12/2018" Lastuse 20201216 SourceValue "20181210" Date 20181210
  2062. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2063. IsTruncated False Blanks False
  2064. Category 447459 "20181211" Parent 447437 Levels 699 OrderBy Drill 675 Value "20181211"
  2065. Label "11/12/2018" Lastuse 20201216 SourceValue "20181211" Date 20181211
  2066. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2067. IsTruncated False Blanks False
  2068. Category 447461 "20181212" Parent 447437 Levels 699 OrderBy Drill 675 Value "20181212"
  2069. Label "12/12/2018" Lastuse 20201216 SourceValue "20181212" Date 20181212
  2070. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2071. IsTruncated False Blanks False
  2072. Category 447463 "20181213" Parent 447437 Levels 699 OrderBy Drill 675 Value "20181213"
  2073. Label "13/12/2018" Lastuse 20201216 SourceValue "20181213" Date 20181213
  2074. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2075. IsTruncated False Blanks False
  2076. Category 447465 "20181214" Parent 447437 Levels 699 OrderBy Drill 675 Value "20181214"
  2077. Label "14/12/2018" Lastuse 20201216 SourceValue "20181214" Date 20181214
  2078. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2079. IsTruncated False Blanks False
  2080. Category 447467 "20181215" Parent 447437 Levels 699 OrderBy Drill 675 Value "20181215"
  2081. Label "15/12/2018" Lastuse 20181005 SourceValue "20181215" Date 20181215
  2082. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2083. IsTruncated False Blanks False
  2084. Category 447469 "20181216" Parent 447437 Levels 699 OrderBy Drill 675 Value "20181216"
  2085. Label "16/12/2018" Lastuse 20181005 SourceValue "20181216" Date 20181216
  2086. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2087. IsTruncated False Blanks False
  2088. Category 447471 "20181217" Parent 447437 Levels 699 OrderBy Drill 675 Value "20181217"
  2089. Label "17/12/2018" Lastuse 20201216 SourceValue "20181217" Date 20181217
  2090. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2091. IsTruncated False Blanks False
  2092. Category 447473 "20181218" Parent 447437 Levels 699 OrderBy Drill 675 Value "20181218"
  2093. Label "18/12/2018" Lastuse 20201216 SourceValue "20181218" Date 20181218
  2094. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2095. IsTruncated False Blanks False
  2096. Category 447475 "20181219" Parent 447437 Levels 699 OrderBy Drill 675 Value "20181219"
  2097. Label "19/12/2018" Lastuse 20201216 SourceValue "20181219" Date 20181219
  2098. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2099. IsTruncated False Blanks False
  2100. Category 447477 "20181220" Parent 447437 Levels 699 OrderBy Drill 675 Value "20181220"
  2101. Label "20/12/2018" Lastuse 20201216 SourceValue "20181220" Date 20181220
  2102. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2103. IsTruncated False Blanks False
  2104. Category 447479 "20181221" Parent 447437 Levels 699 OrderBy Drill 675 Value "20181221"
  2105. Label "21/12/2018" Lastuse 20201216 SourceValue "20181221" Date 20181221
  2106. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2107. IsTruncated False Blanks False
  2108. Category 447481 "20181222" Parent 447437 Levels 699 OrderBy Drill 675 Value "20181222"
  2109. Label "22/12/2018" Lastuse 20181005 SourceValue "20181222" Date 20181222
  2110. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2111. IsTruncated False Blanks False
  2112. Category 447483 "20181223" Parent 447437 Levels 699 OrderBy Drill 675 Value "20181223"
  2113. Label "23/12/2018" Lastuse 20181005 SourceValue "20181223" Date 20181223
  2114. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2115. IsTruncated False Blanks False
  2116. Category 447485 "20181224" Parent 447437 Levels 699 OrderBy Drill 675 Value "20181224"
  2117. Label "24/12/2018" Lastuse 20201216 SourceValue "20181224" Date 20181224
  2118. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2119. IsTruncated False Blanks False
  2120. Category 447487 "20181225" Parent 447437 Levels 699 OrderBy Drill 675 Value "20181225"
  2121. Label "25/12/2018" Lastuse 20181005 SourceValue "20181225" Date 20181225
  2122. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2123. IsTruncated False Blanks False
  2124. Category 447489 "20181226" Parent 447437 Levels 699 OrderBy Drill 675 Value "20181226"
  2125. Label "26/12/2018" Lastuse 20181005 SourceValue "20181226" Date 20181226
  2126. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2127. IsTruncated False Blanks False
  2128. Category 447491 "20181227" Parent 447437 Levels 699 OrderBy Drill 675 Value "20181227"
  2129. Label "27/12/2018" Lastuse 20201216 SourceValue "20181227" Date 20181227
  2130. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2131. IsTruncated False Blanks False
  2132. Category 447493 "20181228" Parent 447437 Levels 699 OrderBy Drill 675 Value "20181228"
  2133. Label "28/12/2018" Lastuse 20201216 SourceValue "20181228" Date 20181228
  2134. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2135. IsTruncated False Blanks False
  2136. Category 447495 "20181229" Parent 447437 Levels 699 OrderBy Drill 675 Value "20181229"
  2137. Label "29/12/2018" Lastuse 20181005 SourceValue "20181229" Date 20181229
  2138. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2139. IsTruncated False Blanks False
  2140. Category 447497 "20181230" Parent 447437 Levels 699 OrderBy Drill 675 Value "20181230"
  2141. Label "30/12/2018" Lastuse 20181005 SourceValue "20181230" Date 20181230
  2142. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2143. IsTruncated False Blanks False
  2144. Category 447499 "20181231" Parent 447437 Levels 699 OrderBy Drill 675 Value "20181231"
  2145. Label "31/12/2018" Lastuse 20201216 SourceValue "20181231" Date 20181231
  2146. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2147. IsTruncated False Blanks False
  2148. Category 1022965 "20190101-20191231" Parent 675 Levels 681 OrderBy Drill 675
  2149. Value "2019" Label "2019" Lastuse 20201216 SourceValue "2019" Date 20190101
  2150. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2151. IsTruncated False Blanks False
  2152. Category 1023333 "20190101-20190331" Parent 1022965 Levels 687 OrderBy Drill 675
  2153. Value "20190101" Label "1. Q. 2019" Lastuse 20201216 SourceValue "20190101"
  2154. Date 20190101 Filtered False Suppressed False Sign False HideValue False
  2155. IsKeyOrphanage False IsTruncated False Blanks False
  2156. Category 1031449 "20190101-20190131" Parent 1023333 Levels 693 OrderBy Drill 675
  2157. Value "201901" Label "Jan./2019" Lastuse 20201216 SourceValue "201901"
  2158. Date 20190101 Filtered False Suppressed False Sign False HideValue False
  2159. IsKeyOrphanage False IsTruncated False Blanks False
  2160. Category 1031451 "20190101" Parent 1031449 Levels 699 OrderBy Drill 675
  2161. Value "20190101" Label "01/01/2019" Lastuse 20201216 SourceValue "20190101"
  2162. Date 20190101 Filtered False Suppressed False Sign False HideValue False
  2163. IsKeyOrphanage False IsTruncated False Blanks False
  2164. Category 1031453 "20190102" Parent 1031449 Levels 699 OrderBy Drill 675
  2165. Value "20190102" Label "02/01/2019" Lastuse 20201216 SourceValue "20190102"
  2166. Date 20190102 Filtered False Suppressed False Sign False HideValue False
  2167. IsKeyOrphanage False IsTruncated False Blanks False
  2168. Category 1031455 "20190103" Parent 1031449 Levels 699 OrderBy Drill 675
  2169. Value "20190103" Label "03/01/2019" Lastuse 20201216 SourceValue "20190103"
  2170. Date 20190103 Filtered False Suppressed False Sign False HideValue False
  2171. IsKeyOrphanage False IsTruncated False Blanks False
  2172. Category 1031457 "20190104" Parent 1031449 Levels 699 OrderBy Drill 675
  2173. Value "20190104" Label "04/01/2019" Lastuse 20201216 SourceValue "20190104"
  2174. Date 20190104 Filtered False Suppressed False Sign False HideValue False
  2175. IsKeyOrphanage False IsTruncated False Blanks False
  2176. Category 1031459 "20190105" Parent 1031449 Levels 699 OrderBy Drill 675
  2177. Value "20190105" Label "05/01/2019" Lastuse 20201216 SourceValue "20190105"
  2178. Date 20190105 Filtered False Suppressed False Sign False HideValue False
  2179. IsKeyOrphanage False IsTruncated False Blanks False
  2180. Category 1031461 "20190106" Parent 1031449 Levels 699 OrderBy Drill 675
  2181. Value "20190106" Label "06/01/2019" Lastuse 20201216 SourceValue "20190106"
  2182. Date 20190106 Filtered False Suppressed False Sign False HideValue False
  2183. IsKeyOrphanage False IsTruncated False Blanks False
  2184. Category 1031463 "20190107" Parent 1031449 Levels 699 OrderBy Drill 675
  2185. Value "20190107" Label "07/01/2019" Lastuse 20201216 SourceValue "20190107"
  2186. Date 20190107 Filtered False Suppressed False Sign False HideValue False
  2187. IsKeyOrphanage False IsTruncated False Blanks False
  2188. Category 1031465 "20190108" Parent 1031449 Levels 699 OrderBy Drill 675
  2189. Value "20190108" Label "08/01/2019" Lastuse 20201216 SourceValue "20190108"
  2190. Date 20190108 Filtered False Suppressed False Sign False HideValue False
  2191. IsKeyOrphanage False IsTruncated False Blanks False
  2192. Category 1031467 "20190109" Parent 1031449 Levels 699 OrderBy Drill 675
  2193. Value "20190109" Label "09/01/2019" Lastuse 20201216 SourceValue "20190109"
  2194. Date 20190109 Filtered False Suppressed False Sign False HideValue False
  2195. IsKeyOrphanage False IsTruncated False Blanks False
  2196. Category 1031469 "20190110" Parent 1031449 Levels 699 OrderBy Drill 675
  2197. Value "20190110" Label "10/01/2019" Lastuse 20201216 SourceValue "20190110"
  2198. Date 20190110 Filtered False Suppressed False Sign False HideValue False
  2199. IsKeyOrphanage False IsTruncated False Blanks False
  2200. Category 1031471 "20190111" Parent 1031449 Levels 699 OrderBy Drill 675
  2201. Value "20190111" Label "11/01/2019" Lastuse 20201216 SourceValue "20190111"
  2202. Date 20190111 Filtered False Suppressed False Sign False HideValue False
  2203. IsKeyOrphanage False IsTruncated False Blanks False
  2204. Category 1031473 "20190112" Parent 1031449 Levels 699 OrderBy Drill 675
  2205. Value "20190112" Label "12/01/2019" Lastuse 20201216 SourceValue "20190112"
  2206. Date 20190112 Filtered False Suppressed False Sign False HideValue False
  2207. IsKeyOrphanage False IsTruncated False Blanks False
  2208. Category 1031475 "20190113" Parent 1031449 Levels 699 OrderBy Drill 675
  2209. Value "20190113" Label "13/01/2019" Lastuse 20201216 SourceValue "20190113"
  2210. Date 20190113 Filtered False Suppressed False Sign False HideValue False
  2211. IsKeyOrphanage False IsTruncated False Blanks False
  2212. Category 1031477 "20190114" Parent 1031449 Levels 699 OrderBy Drill 675
  2213. Value "20190114" Label "14/01/2019" Lastuse 20201216 SourceValue "20190114"
  2214. Date 20190114 Filtered False Suppressed False Sign False HideValue False
  2215. IsKeyOrphanage False IsTruncated False Blanks False
  2216. Category 1031479 "20190115" Parent 1031449 Levels 699 OrderBy Drill 675
  2217. Value "20190115" Label "15/01/2019" Lastuse 20201216 SourceValue "20190115"
  2218. Date 20190115 Filtered False Suppressed False Sign False HideValue False
  2219. IsKeyOrphanage False IsTruncated False Blanks False
  2220. Category 1031481 "20190116" Parent 1031449 Levels 699 OrderBy Drill 675
  2221. Value "20190116" Label "16/01/2019" Lastuse 20201216 SourceValue "20190116"
  2222. Date 20190116 Filtered False Suppressed False Sign False HideValue False
  2223. IsKeyOrphanage False IsTruncated False Blanks False
  2224. Category 1031483 "20190117" Parent 1031449 Levels 699 OrderBy Drill 675
  2225. Value "20190117" Label "17/01/2019" Lastuse 20201216 SourceValue "20190117"
  2226. Date 20190117 Filtered False Suppressed False Sign False HideValue False
  2227. IsKeyOrphanage False IsTruncated False Blanks False
  2228. Category 1031485 "20190118" Parent 1031449 Levels 699 OrderBy Drill 675
  2229. Value "20190118" Label "18/01/2019" Lastuse 20201216 SourceValue "20190118"
  2230. Date 20190118 Filtered False Suppressed False Sign False HideValue False
  2231. IsKeyOrphanage False IsTruncated False Blanks False
  2232. Category 1031487 "20190119" Parent 1031449 Levels 699 OrderBy Drill 675
  2233. Value "20190119" Label "19/01/2019" Lastuse 20201216 SourceValue "20190119"
  2234. Date 20190119 Filtered False Suppressed False Sign False HideValue False
  2235. IsKeyOrphanage False IsTruncated False Blanks False
  2236. Category 1031489 "20190120" Parent 1031449 Levels 699 OrderBy Drill 675
  2237. Value "20190120" Label "20/01/2019" Lastuse 20201216 SourceValue "20190120"
  2238. Date 20190120 Filtered False Suppressed False Sign False HideValue False
  2239. IsKeyOrphanage False IsTruncated False Blanks False
  2240. Category 1031491 "20190121" Parent 1031449 Levels 699 OrderBy Drill 675
  2241. Value "20190121" Label "21/01/2019" Lastuse 20201216 SourceValue "20190121"
  2242. Date 20190121 Filtered False Suppressed False Sign False HideValue False
  2243. IsKeyOrphanage False IsTruncated False Blanks False
  2244. Category 1031493 "20190122" Parent 1031449 Levels 699 OrderBy Drill 675
  2245. Value "20190122" Label "22/01/2019" Lastuse 20201216 SourceValue "20190122"
  2246. Date 20190122 Filtered False Suppressed False Sign False HideValue False
  2247. IsKeyOrphanage False IsTruncated False Blanks False
  2248. Category 1031495 "20190123" Parent 1031449 Levels 699 OrderBy Drill 675
  2249. Value "20190123" Label "23/01/2019" Lastuse 20201216 SourceValue "20190123"
  2250. Date 20190123 Filtered False Suppressed False Sign False HideValue False
  2251. IsKeyOrphanage False IsTruncated False Blanks False
  2252. Category 1031497 "20190124" Parent 1031449 Levels 699 OrderBy Drill 675
  2253. Value "20190124" Label "24/01/2019" Lastuse 20201216 SourceValue "20190124"
  2254. Date 20190124 Filtered False Suppressed False Sign False HideValue False
  2255. IsKeyOrphanage False IsTruncated False Blanks False
  2256. Category 1031499 "20190125" Parent 1031449 Levels 699 OrderBy Drill 675
  2257. Value "20190125" Label "25/01/2019" Lastuse 20201216 SourceValue "20190125"
  2258. Date 20190125 Filtered False Suppressed False Sign False HideValue False
  2259. IsKeyOrphanage False IsTruncated False Blanks False
  2260. Category 1031501 "20190126" Parent 1031449 Levels 699 OrderBy Drill 675
  2261. Value "20190126" Label "26/01/2019" Lastuse 20201216 SourceValue "20190126"
  2262. Date 20190126 Filtered False Suppressed False Sign False HideValue False
  2263. IsKeyOrphanage False IsTruncated False Blanks False
  2264. Category 1031503 "20190127" Parent 1031449 Levels 699 OrderBy Drill 675
  2265. Value "20190127" Label "27/01/2019" Lastuse 20201216 SourceValue "20190127"
  2266. Date 20190127 Filtered False Suppressed False Sign False HideValue False
  2267. IsKeyOrphanage False IsTruncated False Blanks False
  2268. Category 1031505 "20190128" Parent 1031449 Levels 699 OrderBy Drill 675
  2269. Value "20190128" Label "28/01/2019" Lastuse 20201216 SourceValue "20190128"
  2270. Date 20190128 Filtered False Suppressed False Sign False HideValue False
  2271. IsKeyOrphanage False IsTruncated False Blanks False
  2272. Category 1031507 "20190129" Parent 1031449 Levels 699 OrderBy Drill 675
  2273. Value "20190129" Label "29/01/2019" Lastuse 20201216 SourceValue "20190129"
  2274. Date 20190129 Filtered False Suppressed False Sign False HideValue False
  2275. IsKeyOrphanage False IsTruncated False Blanks False
  2276. Category 1031509 "20190130" Parent 1031449 Levels 699 OrderBy Drill 675
  2277. Value "20190130" Label "30/01/2019" Lastuse 20201216 SourceValue "20190130"
  2278. Date 20190130 Filtered False Suppressed False Sign False HideValue False
  2279. IsKeyOrphanage False IsTruncated False Blanks False
  2280. Category 1031511 "20190131" Parent 1031449 Levels 699 OrderBy Drill 675
  2281. Value "20190131" Label "31/01/2019" Lastuse 20201216 SourceValue "20190131"
  2282. Date 20190131 Filtered False Suppressed False Sign False HideValue False
  2283. IsKeyOrphanage False IsTruncated False Blanks False
  2284. Category 1031733 "20190201-20190228" Parent 1023333 Levels 693 OrderBy Drill 675
  2285. Value "201902" Label "Feb./2019" Lastuse 20201216 SourceValue "201902"
  2286. Date 20190201 Filtered False Suppressed False Sign False HideValue False
  2287. IsKeyOrphanage False IsTruncated False Blanks False
  2288. Category 1031735 "20190201" Parent 1031733 Levels 699 OrderBy Drill 675
  2289. Value "20190201" Label "01/02/2019" Lastuse 20201216 SourceValue "20190201"
  2290. Date 20190201 Filtered False Suppressed False Sign False HideValue False
  2291. IsKeyOrphanage False IsTruncated False Blanks False
  2292. Category 1031737 "20190202" Parent 1031733 Levels 699 OrderBy Drill 675
  2293. Value "20190202" Label "02/02/2019" Lastuse 20201216 SourceValue "20190202"
  2294. Date 20190202 Filtered False Suppressed False Sign False HideValue False
  2295. IsKeyOrphanage False IsTruncated False Blanks False
  2296. Category 1031739 "20190203" Parent 1031733 Levels 699 OrderBy Drill 675
  2297. Value "20190203" Label "03/02/2019" Lastuse 20201216 SourceValue "20190203"
  2298. Date 20190203 Filtered False Suppressed False Sign False HideValue False
  2299. IsKeyOrphanage False IsTruncated False Blanks False
  2300. Category 1031741 "20190204" Parent 1031733 Levels 699 OrderBy Drill 675
  2301. Value "20190204" Label "04/02/2019" Lastuse 20201216 SourceValue "20190204"
  2302. Date 20190204 Filtered False Suppressed False Sign False HideValue False
  2303. IsKeyOrphanage False IsTruncated False Blanks False
  2304. Category 1031743 "20190205" Parent 1031733 Levels 699 OrderBy Drill 675
  2305. Value "20190205" Label "05/02/2019" Lastuse 20201216 SourceValue "20190205"
  2306. Date 20190205 Filtered False Suppressed False Sign False HideValue False
  2307. IsKeyOrphanage False IsTruncated False Blanks False
  2308. Category 1031745 "20190206" Parent 1031733 Levels 699 OrderBy Drill 675
  2309. Value "20190206" Label "06/02/2019" Lastuse 20201216 SourceValue "20190206"
  2310. Date 20190206 Filtered False Suppressed False Sign False HideValue False
  2311. IsKeyOrphanage False IsTruncated False Blanks False
  2312. Category 1031747 "20190207" Parent 1031733 Levels 699 OrderBy Drill 675
  2313. Value "20190207" Label "07/02/2019" Lastuse 20201216 SourceValue "20190207"
  2314. Date 20190207 Filtered False Suppressed False Sign False HideValue False
  2315. IsKeyOrphanage False IsTruncated False Blanks False
  2316. Category 1031749 "20190208" Parent 1031733 Levels 699 OrderBy Drill 675
  2317. Value "20190208" Label "08/02/2019" Lastuse 20201216 SourceValue "20190208"
  2318. Date 20190208 Filtered False Suppressed False Sign False HideValue False
  2319. IsKeyOrphanage False IsTruncated False Blanks False
  2320. Category 1031751 "20190209" Parent 1031733 Levels 699 OrderBy Drill 675
  2321. Value "20190209" Label "09/02/2019" Lastuse 20201216 SourceValue "20190209"
  2322. Date 20190209 Filtered False Suppressed False Sign False HideValue False
  2323. IsKeyOrphanage False IsTruncated False Blanks False
  2324. Category 1031753 "20190210" Parent 1031733 Levels 699 OrderBy Drill 675
  2325. Value "20190210" Label "10/02/2019" Lastuse 20201216 SourceValue "20190210"
  2326. Date 20190210 Filtered False Suppressed False Sign False HideValue False
  2327. IsKeyOrphanage False IsTruncated False Blanks False
  2328. Category 1031755 "20190211" Parent 1031733 Levels 699 OrderBy Drill 675
  2329. Value "20190211" Label "11/02/2019" Lastuse 20201216 SourceValue "20190211"
  2330. Date 20190211 Filtered False Suppressed False Sign False HideValue False
  2331. IsKeyOrphanage False IsTruncated False Blanks False
  2332. Category 1031757 "20190212" Parent 1031733 Levels 699 OrderBy Drill 675
  2333. Value "20190212" Label "12/02/2019" Lastuse 20201216 SourceValue "20190212"
  2334. Date 20190212 Filtered False Suppressed False Sign False HideValue False
  2335. IsKeyOrphanage False IsTruncated False Blanks False
  2336. Category 1031759 "20190213" Parent 1031733 Levels 699 OrderBy Drill 675
  2337. Value "20190213" Label "13/02/2019" Lastuse 20201216 SourceValue "20190213"
  2338. Date 20190213 Filtered False Suppressed False Sign False HideValue False
  2339. IsKeyOrphanage False IsTruncated False Blanks False
  2340. Category 1031761 "20190214" Parent 1031733 Levels 699 OrderBy Drill 675
  2341. Value "20190214" Label "14/02/2019" Lastuse 20201216 SourceValue "20190214"
  2342. Date 20190214 Filtered False Suppressed False Sign False HideValue False
  2343. IsKeyOrphanage False IsTruncated False Blanks False
  2344. Category 1031763 "20190215" Parent 1031733 Levels 699 OrderBy Drill 675
  2345. Value "20190215" Label "15/02/2019" Lastuse 20201216 SourceValue "20190215"
  2346. Date 20190215 Filtered False Suppressed False Sign False HideValue False
  2347. IsKeyOrphanage False IsTruncated False Blanks False
  2348. Category 1031765 "20190216" Parent 1031733 Levels 699 OrderBy Drill 675
  2349. Value "20190216" Label "16/02/2019" Lastuse 20201216 SourceValue "20190216"
  2350. Date 20190216 Filtered False Suppressed False Sign False HideValue False
  2351. IsKeyOrphanage False IsTruncated False Blanks False
  2352. Category 1031767 "20190217" Parent 1031733 Levels 699 OrderBy Drill 675
  2353. Value "20190217" Label "17/02/2019" Lastuse 20201216 SourceValue "20190217"
  2354. Date 20190217 Filtered False Suppressed False Sign False HideValue False
  2355. IsKeyOrphanage False IsTruncated False Blanks False
  2356. Category 1031769 "20190218" Parent 1031733 Levels 699 OrderBy Drill 675
  2357. Value "20190218" Label "18/02/2019" Lastuse 20201216 SourceValue "20190218"
  2358. Date 20190218 Filtered False Suppressed False Sign False HideValue False
  2359. IsKeyOrphanage False IsTruncated False Blanks False
  2360. Category 1031771 "20190219" Parent 1031733 Levels 699 OrderBy Drill 675
  2361. Value "20190219" Label "19/02/2019" Lastuse 20201216 SourceValue "20190219"
  2362. Date 20190219 Filtered False Suppressed False Sign False HideValue False
  2363. IsKeyOrphanage False IsTruncated False Blanks False
  2364. Category 1031773 "20190220" Parent 1031733 Levels 699 OrderBy Drill 675
  2365. Value "20190220" Label "20/02/2019" Lastuse 20201216 SourceValue "20190220"
  2366. Date 20190220 Filtered False Suppressed False Sign False HideValue False
  2367. IsKeyOrphanage False IsTruncated False Blanks False
  2368. Category 1031775 "20190221" Parent 1031733 Levels 699 OrderBy Drill 675
  2369. Value "20190221" Label "21/02/2019" Lastuse 20201216 SourceValue "20190221"
  2370. Date 20190221 Filtered False Suppressed False Sign False HideValue False
  2371. IsKeyOrphanage False IsTruncated False Blanks False
  2372. Category 1031777 "20190222" Parent 1031733 Levels 699 OrderBy Drill 675
  2373. Value "20190222" Label "22/02/2019" Lastuse 20201216 SourceValue "20190222"
  2374. Date 20190222 Filtered False Suppressed False Sign False HideValue False
  2375. IsKeyOrphanage False IsTruncated False Blanks False
  2376. Category 1031779 "20190223" Parent 1031733 Levels 699 OrderBy Drill 675
  2377. Value "20190223" Label "23/02/2019" Lastuse 20201216 SourceValue "20190223"
  2378. Date 20190223 Filtered False Suppressed False Sign False HideValue False
  2379. IsKeyOrphanage False IsTruncated False Blanks False
  2380. Category 1031781 "20190224" Parent 1031733 Levels 699 OrderBy Drill 675
  2381. Value "20190224" Label "24/02/2019" Lastuse 20201216 SourceValue "20190224"
  2382. Date 20190224 Filtered False Suppressed False Sign False HideValue False
  2383. IsKeyOrphanage False IsTruncated False Blanks False
  2384. Category 1031783 "20190225" Parent 1031733 Levels 699 OrderBy Drill 675
  2385. Value "20190225" Label "25/02/2019" Lastuse 20201216 SourceValue "20190225"
  2386. Date 20190225 Filtered False Suppressed False Sign False HideValue False
  2387. IsKeyOrphanage False IsTruncated False Blanks False
  2388. Category 1031785 "20190226" Parent 1031733 Levels 699 OrderBy Drill 675
  2389. Value "20190226" Label "26/02/2019" Lastuse 20201216 SourceValue "20190226"
  2390. Date 20190226 Filtered False Suppressed False Sign False HideValue False
  2391. IsKeyOrphanage False IsTruncated False Blanks False
  2392. Category 1031787 "20190227" Parent 1031733 Levels 699 OrderBy Drill 675
  2393. Value "20190227" Label "27/02/2019" Lastuse 20201216 SourceValue "20190227"
  2394. Date 20190227 Filtered False Suppressed False Sign False HideValue False
  2395. IsKeyOrphanage False IsTruncated False Blanks False
  2396. Category 1031789 "20190228" Parent 1031733 Levels 699 OrderBy Drill 675
  2397. Value "20190228" Label "28/02/2019" Lastuse 20201216 SourceValue "20190228"
  2398. Date 20190228 Filtered False Suppressed False Sign False HideValue False
  2399. IsKeyOrphanage False IsTruncated False Blanks False
  2400. Category 1023335 "20190301-20190331" Parent 1023333 Levels 693 OrderBy Drill 675
  2401. Value "201903" Label "März/2019" Lastuse 20201216 SourceValue "201903"
  2402. Date 20190301 Filtered False Suppressed False Sign False HideValue False
  2403. IsKeyOrphanage False IsTruncated False Blanks False
  2404. Category 1023337 "20190301" Parent 1023335 Levels 699 OrderBy Drill 675
  2405. Value "20190301" Label "01/03/2019" Lastuse 20201216 SourceValue "20190301"
  2406. Date 20190301 Filtered False Suppressed False Sign False HideValue False
  2407. IsKeyOrphanage False IsTruncated False Blanks False
  2408. Category 1023339 "20190302" Parent 1023335 Levels 699 OrderBy Drill 675
  2409. Value "20190302" Label "02/03/2019" Lastuse 20201216 SourceValue "20190302"
  2410. Date 20190302 Filtered False Suppressed False Sign False HideValue False
  2411. IsKeyOrphanage False IsTruncated False Blanks False
  2412. Category 1023341 "20190303" Parent 1023335 Levels 699 OrderBy Drill 675
  2413. Value "20190303" Label "03/03/2019" Lastuse 20201216 SourceValue "20190303"
  2414. Date 20190303 Filtered False Suppressed False Sign False HideValue False
  2415. IsKeyOrphanage False IsTruncated False Blanks False
  2416. Category 1023343 "20190304" Parent 1023335 Levels 699 OrderBy Drill 675
  2417. Value "20190304" Label "04/03/2019" Lastuse 20201216 SourceValue "20190304"
  2418. Date 20190304 Filtered False Suppressed False Sign False HideValue False
  2419. IsKeyOrphanage False IsTruncated False Blanks False
  2420. Category 1023345 "20190305" Parent 1023335 Levels 699 OrderBy Drill 675
  2421. Value "20190305" Label "05/03/2019" Lastuse 20201216 SourceValue "20190305"
  2422. Date 20190305 Filtered False Suppressed False Sign False HideValue False
  2423. IsKeyOrphanage False IsTruncated False Blanks False
  2424. Category 1023347 "20190306" Parent 1023335 Levels 699 OrderBy Drill 675
  2425. Value "20190306" Label "06/03/2019" Lastuse 20201216 SourceValue "20190306"
  2426. Date 20190306 Filtered False Suppressed False Sign False HideValue False
  2427. IsKeyOrphanage False IsTruncated False Blanks False
  2428. Category 1023349 "20190307" Parent 1023335 Levels 699 OrderBy Drill 675
  2429. Value "20190307" Label "07/03/2019" Lastuse 20201216 SourceValue "20190307"
  2430. Date 20190307 Filtered False Suppressed False Sign False HideValue False
  2431. IsKeyOrphanage False IsTruncated False Blanks False
  2432. Category 1023351 "20190308" Parent 1023335 Levels 699 OrderBy Drill 675
  2433. Value "20190308" Label "08/03/2019" Lastuse 20201216 SourceValue "20190308"
  2434. Date 20190308 Filtered False Suppressed False Sign False HideValue False
  2435. IsKeyOrphanage False IsTruncated False Blanks False
  2436. Category 1023353 "20190309" Parent 1023335 Levels 699 OrderBy Drill 675
  2437. Value "20190309" Label "09/03/2019" Lastuse 20201216 SourceValue "20190309"
  2438. Date 20190309 Filtered False Suppressed False Sign False HideValue False
  2439. IsKeyOrphanage False IsTruncated False Blanks False
  2440. Category 1023355 "20190310" Parent 1023335 Levels 699 OrderBy Drill 675
  2441. Value "20190310" Label "10/03/2019" Lastuse 20201216 SourceValue "20190310"
  2442. Date 20190310 Filtered False Suppressed False Sign False HideValue False
  2443. IsKeyOrphanage False IsTruncated False Blanks False
  2444. Category 1023357 "20190311" Parent 1023335 Levels 699 OrderBy Drill 675
  2445. Value "20190311" Label "11/03/2019" Lastuse 20201216 SourceValue "20190311"
  2446. Date 20190311 Filtered False Suppressed False Sign False HideValue False
  2447. IsKeyOrphanage False IsTruncated False Blanks False
  2448. Category 1023359 "20190312" Parent 1023335 Levels 699 OrderBy Drill 675
  2449. Value "20190312" Label "12/03/2019" Lastuse 20201216 SourceValue "20190312"
  2450. Date 20190312 Filtered False Suppressed False Sign False HideValue False
  2451. IsKeyOrphanage False IsTruncated False Blanks False
  2452. Category 1023361 "20190313" Parent 1023335 Levels 699 OrderBy Drill 675
  2453. Value "20190313" Label "13/03/2019" Lastuse 20201216 SourceValue "20190313"
  2454. Date 20190313 Filtered False Suppressed False Sign False HideValue False
  2455. IsKeyOrphanage False IsTruncated False Blanks False
  2456. Category 1023363 "20190314" Parent 1023335 Levels 699 OrderBy Drill 675
  2457. Value "20190314" Label "14/03/2019" Lastuse 20201216 SourceValue "20190314"
  2458. Date 20190314 Filtered False Suppressed False Sign False HideValue False
  2459. IsKeyOrphanage False IsTruncated False Blanks False
  2460. Category 1023365 "20190315" Parent 1023335 Levels 699 OrderBy Drill 675
  2461. Value "20190315" Label "15/03/2019" Lastuse 20201216 SourceValue "20190315"
  2462. Date 20190315 Filtered False Suppressed False Sign False HideValue False
  2463. IsKeyOrphanage False IsTruncated False Blanks False
  2464. Category 1023367 "20190316" Parent 1023335 Levels 699 OrderBy Drill 675
  2465. Value "20190316" Label "16/03/2019" Lastuse 20201216 SourceValue "20190316"
  2466. Date 20190316 Filtered False Suppressed False Sign False HideValue False
  2467. IsKeyOrphanage False IsTruncated False Blanks False
  2468. Category 1023369 "20190317" Parent 1023335 Levels 699 OrderBy Drill 675
  2469. Value "20190317" Label "17/03/2019" Lastuse 20201216 SourceValue "20190317"
  2470. Date 20190317 Filtered False Suppressed False Sign False HideValue False
  2471. IsKeyOrphanage False IsTruncated False Blanks False
  2472. Category 1023371 "20190318" Parent 1023335 Levels 699 OrderBy Drill 675
  2473. Value "20190318" Label "18/03/2019" Lastuse 20201216 SourceValue "20190318"
  2474. Date 20190318 Filtered False Suppressed False Sign False HideValue False
  2475. IsKeyOrphanage False IsTruncated False Blanks False
  2476. Category 1023373 "20190319" Parent 1023335 Levels 699 OrderBy Drill 675
  2477. Value "20190319" Label "19/03/2019" Lastuse 20201216 SourceValue "20190319"
  2478. Date 20190319 Filtered False Suppressed False Sign False HideValue False
  2479. IsKeyOrphanage False IsTruncated False Blanks False
  2480. Category 1023375 "20190320" Parent 1023335 Levels 699 OrderBy Drill 675
  2481. Value "20190320" Label "20/03/2019" Lastuse 20201216 SourceValue "20190320"
  2482. Date 20190320 Filtered False Suppressed False Sign False HideValue False
  2483. IsKeyOrphanage False IsTruncated False Blanks False
  2484. Category 1023377 "20190321" Parent 1023335 Levels 699 OrderBy Drill 675
  2485. Value "20190321" Label "21/03/2019" Lastuse 20201216 SourceValue "20190321"
  2486. Date 20190321 Filtered False Suppressed False Sign False HideValue False
  2487. IsKeyOrphanage False IsTruncated False Blanks False
  2488. Category 1023379 "20190322" Parent 1023335 Levels 699 OrderBy Drill 675
  2489. Value "20190322" Label "22/03/2019" Lastuse 20201216 SourceValue "20190322"
  2490. Date 20190322 Filtered False Suppressed False Sign False HideValue False
  2491. IsKeyOrphanage False IsTruncated False Blanks False
  2492. Category 1023381 "20190323" Parent 1023335 Levels 699 OrderBy Drill 675
  2493. Value "20190323" Label "23/03/2019" Lastuse 20201216 SourceValue "20190323"
  2494. Date 20190323 Filtered False Suppressed False Sign False HideValue False
  2495. IsKeyOrphanage False IsTruncated False Blanks False
  2496. Category 1023383 "20190324" Parent 1023335 Levels 699 OrderBy Drill 675
  2497. Value "20190324" Label "24/03/2019" Lastuse 20201216 SourceValue "20190324"
  2498. Date 20190324 Filtered False Suppressed False Sign False HideValue False
  2499. IsKeyOrphanage False IsTruncated False Blanks False
  2500. Category 1023385 "20190325" Parent 1023335 Levels 699 OrderBy Drill 675
  2501. Value "20190325" Label "25/03/2019" Lastuse 20201216 SourceValue "20190325"
  2502. Date 20190325 Filtered False Suppressed False Sign False HideValue False
  2503. IsKeyOrphanage False IsTruncated False Blanks False
  2504. Category 1023387 "20190326" Parent 1023335 Levels 699 OrderBy Drill 675
  2505. Value "20190326" Label "26/03/2019" Lastuse 20201216 SourceValue "20190326"
  2506. Date 20190326 Filtered False Suppressed False Sign False HideValue False
  2507. IsKeyOrphanage False IsTruncated False Blanks False
  2508. Category 1023389 "20190327" Parent 1023335 Levels 699 OrderBy Drill 675
  2509. Value "20190327" Label "27/03/2019" Lastuse 20201216 SourceValue "20190327"
  2510. Date 20190327 Filtered False Suppressed False Sign False HideValue False
  2511. IsKeyOrphanage False IsTruncated False Blanks False
  2512. Category 1023391 "20190328" Parent 1023335 Levels 699 OrderBy Drill 675
  2513. Value "20190328" Label "28/03/2019" Lastuse 20201216 SourceValue "20190328"
  2514. Date 20190328 Filtered False Suppressed False Sign False HideValue False
  2515. IsKeyOrphanage False IsTruncated False Blanks False
  2516. Category 1023393 "20190329" Parent 1023335 Levels 699 OrderBy Drill 675
  2517. Value "20190329" Label "29/03/2019" Lastuse 20201216 SourceValue "20190329"
  2518. Date 20190329 Filtered False Suppressed False Sign False HideValue False
  2519. IsKeyOrphanage False IsTruncated False Blanks False
  2520. Category 1023395 "20190330" Parent 1023335 Levels 699 OrderBy Drill 675
  2521. Value "20190330" Label "30/03/2019" Lastuse 20201216 SourceValue "20190330"
  2522. Date 20190330 Filtered False Suppressed False Sign False HideValue False
  2523. IsKeyOrphanage False IsTruncated False Blanks False
  2524. Category 1023397 "20190331" Parent 1023335 Levels 699 OrderBy Drill 675
  2525. Value "20190331" Label "31/03/2019" Lastuse 20201216 SourceValue "20190331"
  2526. Date 20190331 Filtered False Suppressed False Sign False HideValue False
  2527. IsKeyOrphanage False IsTruncated False Blanks False
  2528. Category 1025535 "20190401-20190630" Parent 1022965 Levels 687 OrderBy Drill 675
  2529. Value "20190401" Label "2. Q. 2019" Lastuse 20201216 SourceValue "20190401"
  2530. Date 20190401 Filtered False Suppressed False Sign False HideValue False
  2531. IsKeyOrphanage False IsTruncated False Blanks False
  2532. Category 1025537 "20190401-20190430" Parent 1025535 Levels 693 OrderBy Drill 675
  2533. Value "201904" Label "Apr./2019" Lastuse 20201216 SourceValue "201904"
  2534. Date 20190401 Filtered False Suppressed False Sign False HideValue False
  2535. IsKeyOrphanage False IsTruncated False Blanks False
  2536. Category 1025539 "20190401" Parent 1025537 Levels 699 OrderBy Drill 675
  2537. Value "20190401" Label "01/04/2019" Lastuse 20201216 SourceValue "20190401"
  2538. Date 20190401 Filtered False Suppressed False Sign False HideValue False
  2539. IsKeyOrphanage False IsTruncated False Blanks False
  2540. Category 1025541 "20190402" Parent 1025537 Levels 699 OrderBy Drill 675
  2541. Value "20190402" Label "02/04/2019" Lastuse 20201216 SourceValue "20190402"
  2542. Date 20190402 Filtered False Suppressed False Sign False HideValue False
  2543. IsKeyOrphanage False IsTruncated False Blanks False
  2544. Category 1025543 "20190403" Parent 1025537 Levels 699 OrderBy Drill 675
  2545. Value "20190403" Label "03/04/2019" Lastuse 20201216 SourceValue "20190403"
  2546. Date 20190403 Filtered False Suppressed False Sign False HideValue False
  2547. IsKeyOrphanage False IsTruncated False Blanks False
  2548. Category 1025545 "20190404" Parent 1025537 Levels 699 OrderBy Drill 675
  2549. Value "20190404" Label "04/04/2019" Lastuse 20201216 SourceValue "20190404"
  2550. Date 20190404 Filtered False Suppressed False Sign False HideValue False
  2551. IsKeyOrphanage False IsTruncated False Blanks False
  2552. Category 1025547 "20190405" Parent 1025537 Levels 699 OrderBy Drill 675
  2553. Value "20190405" Label "05/04/2019" Lastuse 20201216 SourceValue "20190405"
  2554. Date 20190405 Filtered False Suppressed False Sign False HideValue False
  2555. IsKeyOrphanage False IsTruncated False Blanks False
  2556. Category 1025549 "20190406" Parent 1025537 Levels 699 OrderBy Drill 675
  2557. Value "20190406" Label "06/04/2019" Lastuse 20201216 SourceValue "20190406"
  2558. Date 20190406 Filtered False Suppressed False Sign False HideValue False
  2559. IsKeyOrphanage False IsTruncated False Blanks False
  2560. Category 1025551 "20190407" Parent 1025537 Levels 699 OrderBy Drill 675
  2561. Value "20190407" Label "07/04/2019" Lastuse 20201216 SourceValue "20190407"
  2562. Date 20190407 Filtered False Suppressed False Sign False HideValue False
  2563. IsKeyOrphanage False IsTruncated False Blanks False
  2564. Category 1025553 "20190408" Parent 1025537 Levels 699 OrderBy Drill 675
  2565. Value "20190408" Label "08/04/2019" Lastuse 20201216 SourceValue "20190408"
  2566. Date 20190408 Filtered False Suppressed False Sign False HideValue False
  2567. IsKeyOrphanage False IsTruncated False Blanks False
  2568. Category 1025555 "20190409" Parent 1025537 Levels 699 OrderBy Drill 675
  2569. Value "20190409" Label "09/04/2019" Lastuse 20201216 SourceValue "20190409"
  2570. Date 20190409 Filtered False Suppressed False Sign False HideValue False
  2571. IsKeyOrphanage False IsTruncated False Blanks False
  2572. Category 1025557 "20190410" Parent 1025537 Levels 699 OrderBy Drill 675
  2573. Value "20190410" Label "10/04/2019" Lastuse 20201216 SourceValue "20190410"
  2574. Date 20190410 Filtered False Suppressed False Sign False HideValue False
  2575. IsKeyOrphanage False IsTruncated False Blanks False
  2576. Category 1025559 "20190411" Parent 1025537 Levels 699 OrderBy Drill 675
  2577. Value "20190411" Label "11/04/2019" Lastuse 20201216 SourceValue "20190411"
  2578. Date 20190411 Filtered False Suppressed False Sign False HideValue False
  2579. IsKeyOrphanage False IsTruncated False Blanks False
  2580. Category 1025561 "20190412" Parent 1025537 Levels 699 OrderBy Drill 675
  2581. Value "20190412" Label "12/04/2019" Lastuse 20201216 SourceValue "20190412"
  2582. Date 20190412 Filtered False Suppressed False Sign False HideValue False
  2583. IsKeyOrphanage False IsTruncated False Blanks False
  2584. Category 1025563 "20190413" Parent 1025537 Levels 699 OrderBy Drill 675
  2585. Value "20190413" Label "13/04/2019" Lastuse 20201216 SourceValue "20190413"
  2586. Date 20190413 Filtered False Suppressed False Sign False HideValue False
  2587. IsKeyOrphanage False IsTruncated False Blanks False
  2588. Category 1025565 "20190414" Parent 1025537 Levels 699 OrderBy Drill 675
  2589. Value "20190414" Label "14/04/2019" Lastuse 20201216 SourceValue "20190414"
  2590. Date 20190414 Filtered False Suppressed False Sign False HideValue False
  2591. IsKeyOrphanage False IsTruncated False Blanks False
  2592. Category 1025567 "20190415" Parent 1025537 Levels 699 OrderBy Drill 675
  2593. Value "20190415" Label "15/04/2019" Lastuse 20201216 SourceValue "20190415"
  2594. Date 20190415 Filtered False Suppressed False Sign False HideValue False
  2595. IsKeyOrphanage False IsTruncated False Blanks False
  2596. Category 1025569 "20190416" Parent 1025537 Levels 699 OrderBy Drill 675
  2597. Value "20190416" Label "16/04/2019" Lastuse 20201216 SourceValue "20190416"
  2598. Date 20190416 Filtered False Suppressed False Sign False HideValue False
  2599. IsKeyOrphanage False IsTruncated False Blanks False
  2600. Category 1025571 "20190417" Parent 1025537 Levels 699 OrderBy Drill 675
  2601. Value "20190417" Label "17/04/2019" Lastuse 20201216 SourceValue "20190417"
  2602. Date 20190417 Filtered False Suppressed False Sign False HideValue False
  2603. IsKeyOrphanage False IsTruncated False Blanks False
  2604. Category 1025573 "20190418" Parent 1025537 Levels 699 OrderBy Drill 675
  2605. Value "20190418" Label "18/04/2019" Lastuse 20201216 SourceValue "20190418"
  2606. Date 20190418 Filtered False Suppressed False Sign False HideValue False
  2607. IsKeyOrphanage False IsTruncated False Blanks False
  2608. Category 1025575 "20190419" Parent 1025537 Levels 699 OrderBy Drill 675
  2609. Value "20190419" Label "19/04/2019" Lastuse 20201216 SourceValue "20190419"
  2610. Date 20190419 Filtered False Suppressed False Sign False HideValue False
  2611. IsKeyOrphanage False IsTruncated False Blanks False
  2612. Category 1025577 "20190420" Parent 1025537 Levels 699 OrderBy Drill 675
  2613. Value "20190420" Label "20/04/2019" Lastuse 20201216 SourceValue "20190420"
  2614. Date 20190420 Filtered False Suppressed False Sign False HideValue False
  2615. IsKeyOrphanage False IsTruncated False Blanks False
  2616. Category 1025579 "20190421" Parent 1025537 Levels 699 OrderBy Drill 675
  2617. Value "20190421" Label "21/04/2019" Lastuse 20201216 SourceValue "20190421"
  2618. Date 20190421 Filtered False Suppressed False Sign False HideValue False
  2619. IsKeyOrphanage False IsTruncated False Blanks False
  2620. Category 1025581 "20190422" Parent 1025537 Levels 699 OrderBy Drill 675
  2621. Value "20190422" Label "22/04/2019" Lastuse 20201216 SourceValue "20190422"
  2622. Date 20190422 Filtered False Suppressed False Sign False HideValue False
  2623. IsKeyOrphanage False IsTruncated False Blanks False
  2624. Category 1025583 "20190423" Parent 1025537 Levels 699 OrderBy Drill 675
  2625. Value "20190423" Label "23/04/2019" Lastuse 20201216 SourceValue "20190423"
  2626. Date 20190423 Filtered False Suppressed False Sign False HideValue False
  2627. IsKeyOrphanage False IsTruncated False Blanks False
  2628. Category 1025585 "20190424" Parent 1025537 Levels 699 OrderBy Drill 675
  2629. Value "20190424" Label "24/04/2019" Lastuse 20201216 SourceValue "20190424"
  2630. Date 20190424 Filtered False Suppressed False Sign False HideValue False
  2631. IsKeyOrphanage False IsTruncated False Blanks False
  2632. Category 1025587 "20190425" Parent 1025537 Levels 699 OrderBy Drill 675
  2633. Value "20190425" Label "25/04/2019" Lastuse 20201216 SourceValue "20190425"
  2634. Date 20190425 Filtered False Suppressed False Sign False HideValue False
  2635. IsKeyOrphanage False IsTruncated False Blanks False
  2636. Category 1025589 "20190426" Parent 1025537 Levels 699 OrderBy Drill 675
  2637. Value "20190426" Label "26/04/2019" Lastuse 20201216 SourceValue "20190426"
  2638. Date 20190426 Filtered False Suppressed False Sign False HideValue False
  2639. IsKeyOrphanage False IsTruncated False Blanks False
  2640. Category 1025591 "20190427" Parent 1025537 Levels 699 OrderBy Drill 675
  2641. Value "20190427" Label "27/04/2019" Lastuse 20201216 SourceValue "20190427"
  2642. Date 20190427 Filtered False Suppressed False Sign False HideValue False
  2643. IsKeyOrphanage False IsTruncated False Blanks False
  2644. Category 1025593 "20190428" Parent 1025537 Levels 699 OrderBy Drill 675
  2645. Value "20190428" Label "28/04/2019" Lastuse 20201216 SourceValue "20190428"
  2646. Date 20190428 Filtered False Suppressed False Sign False HideValue False
  2647. IsKeyOrphanage False IsTruncated False Blanks False
  2648. Category 1025595 "20190429" Parent 1025537 Levels 699 OrderBy Drill 675
  2649. Value "20190429" Label "29/04/2019" Lastuse 20201216 SourceValue "20190429"
  2650. Date 20190429 Filtered False Suppressed False Sign False HideValue False
  2651. IsKeyOrphanage False IsTruncated False Blanks False
  2652. Category 1025597 "20190430" Parent 1025537 Levels 699 OrderBy Drill 675
  2653. Value "20190430" Label "30/04/2019" Lastuse 20201216 SourceValue "20190430"
  2654. Date 20190430 Filtered False Suppressed False Sign False HideValue False
  2655. IsKeyOrphanage False IsTruncated False Blanks False
  2656. Category 1037901 "20190501-20190531" Parent 1025535 Levels 693 OrderBy Drill 675
  2657. Value "201905" Label "Mai/2019" Lastuse 20201216 SourceValue "201905" Date 20190501
  2658. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  2659. IsTruncated False Blanks False
  2660. Category 1037903 "20190501" Parent 1037901 Levels 699 OrderBy Drill 675
  2661. Value "20190501" Label "01/05/2019" Lastuse 20201216 SourceValue "20190501"
  2662. Date 20190501 Filtered False Suppressed False Sign False HideValue False
  2663. IsKeyOrphanage False IsTruncated False Blanks False
  2664. Category 1037905 "20190502" Parent 1037901 Levels 699 OrderBy Drill 675
  2665. Value "20190502" Label "02/05/2019" Lastuse 20201216 SourceValue "20190502"
  2666. Date 20190502 Filtered False Suppressed False Sign False HideValue False
  2667. IsKeyOrphanage False IsTruncated False Blanks False
  2668. Category 1037907 "20190503" Parent 1037901 Levels 699 OrderBy Drill 675
  2669. Value "20190503" Label "03/05/2019" Lastuse 20201216 SourceValue "20190503"
  2670. Date 20190503 Filtered False Suppressed False Sign False HideValue False
  2671. IsKeyOrphanage False IsTruncated False Blanks False
  2672. Category 1037909 "20190504" Parent 1037901 Levels 699 OrderBy Drill 675
  2673. Value "20190504" Label "04/05/2019" Lastuse 20201216 SourceValue "20190504"
  2674. Date 20190504 Filtered False Suppressed False Sign False HideValue False
  2675. IsKeyOrphanage False IsTruncated False Blanks False
  2676. Category 1037911 "20190505" Parent 1037901 Levels 699 OrderBy Drill 675
  2677. Value "20190505" Label "05/05/2019" Lastuse 20201216 SourceValue "20190505"
  2678. Date 20190505 Filtered False Suppressed False Sign False HideValue False
  2679. IsKeyOrphanage False IsTruncated False Blanks False
  2680. Category 1037913 "20190506" Parent 1037901 Levels 699 OrderBy Drill 675
  2681. Value "20190506" Label "06/05/2019" Lastuse 20201216 SourceValue "20190506"
  2682. Date 20190506 Filtered False Suppressed False Sign False HideValue False
  2683. IsKeyOrphanage False IsTruncated False Blanks False
  2684. Category 1037915 "20190507" Parent 1037901 Levels 699 OrderBy Drill 675
  2685. Value "20190507" Label "07/05/2019" Lastuse 20201216 SourceValue "20190507"
  2686. Date 20190507 Filtered False Suppressed False Sign False HideValue False
  2687. IsKeyOrphanage False IsTruncated False Blanks False
  2688. Category 1037917 "20190508" Parent 1037901 Levels 699 OrderBy Drill 675
  2689. Value "20190508" Label "08/05/2019" Lastuse 20201216 SourceValue "20190508"
  2690. Date 20190508 Filtered False Suppressed False Sign False HideValue False
  2691. IsKeyOrphanage False IsTruncated False Blanks False
  2692. Category 1037919 "20190509" Parent 1037901 Levels 699 OrderBy Drill 675
  2693. Value "20190509" Label "09/05/2019" Lastuse 20201216 SourceValue "20190509"
  2694. Date 20190509 Filtered False Suppressed False Sign False HideValue False
  2695. IsKeyOrphanage False IsTruncated False Blanks False
  2696. Category 1037921 "20190510" Parent 1037901 Levels 699 OrderBy Drill 675
  2697. Value "20190510" Label "10/05/2019" Lastuse 20201216 SourceValue "20190510"
  2698. Date 20190510 Filtered False Suppressed False Sign False HideValue False
  2699. IsKeyOrphanage False IsTruncated False Blanks False
  2700. Category 1037923 "20190511" Parent 1037901 Levels 699 OrderBy Drill 675
  2701. Value "20190511" Label "11/05/2019" Lastuse 20201216 SourceValue "20190511"
  2702. Date 20190511 Filtered False Suppressed False Sign False HideValue False
  2703. IsKeyOrphanage False IsTruncated False Blanks False
  2704. Category 1037925 "20190512" Parent 1037901 Levels 699 OrderBy Drill 675
  2705. Value "20190512" Label "12/05/2019" Lastuse 20201216 SourceValue "20190512"
  2706. Date 20190512 Filtered False Suppressed False Sign False HideValue False
  2707. IsKeyOrphanage False IsTruncated False Blanks False
  2708. Category 1037927 "20190513" Parent 1037901 Levels 699 OrderBy Drill 675
  2709. Value "20190513" Label "13/05/2019" Lastuse 20201216 SourceValue "20190513"
  2710. Date 20190513 Filtered False Suppressed False Sign False HideValue False
  2711. IsKeyOrphanage False IsTruncated False Blanks False
  2712. Category 1037929 "20190514" Parent 1037901 Levels 699 OrderBy Drill 675
  2713. Value "20190514" Label "14/05/2019" Lastuse 20201216 SourceValue "20190514"
  2714. Date 20190514 Filtered False Suppressed False Sign False HideValue False
  2715. IsKeyOrphanage False IsTruncated False Blanks False
  2716. Category 1037931 "20190515" Parent 1037901 Levels 699 OrderBy Drill 675
  2717. Value "20190515" Label "15/05/2019" Lastuse 20201216 SourceValue "20190515"
  2718. Date 20190515 Filtered False Suppressed False Sign False HideValue False
  2719. IsKeyOrphanage False IsTruncated False Blanks False
  2720. Category 1037933 "20190516" Parent 1037901 Levels 699 OrderBy Drill 675
  2721. Value "20190516" Label "16/05/2019" Lastuse 20201216 SourceValue "20190516"
  2722. Date 20190516 Filtered False Suppressed False Sign False HideValue False
  2723. IsKeyOrphanage False IsTruncated False Blanks False
  2724. Category 1037935 "20190517" Parent 1037901 Levels 699 OrderBy Drill 675
  2725. Value "20190517" Label "17/05/2019" Lastuse 20201216 SourceValue "20190517"
  2726. Date 20190517 Filtered False Suppressed False Sign False HideValue False
  2727. IsKeyOrphanage False IsTruncated False Blanks False
  2728. Category 1037937 "20190518" Parent 1037901 Levels 699 OrderBy Drill 675
  2729. Value "20190518" Label "18/05/2019" Lastuse 20201216 SourceValue "20190518"
  2730. Date 20190518 Filtered False Suppressed False Sign False HideValue False
  2731. IsKeyOrphanage False IsTruncated False Blanks False
  2732. Category 1037939 "20190519" Parent 1037901 Levels 699 OrderBy Drill 675
  2733. Value "20190519" Label "19/05/2019" Lastuse 20201216 SourceValue "20190519"
  2734. Date 20190519 Filtered False Suppressed False Sign False HideValue False
  2735. IsKeyOrphanage False IsTruncated False Blanks False
  2736. Category 1037941 "20190520" Parent 1037901 Levels 699 OrderBy Drill 675
  2737. Value "20190520" Label "20/05/2019" Lastuse 20201216 SourceValue "20190520"
  2738. Date 20190520 Filtered False Suppressed False Sign False HideValue False
  2739. IsKeyOrphanage False IsTruncated False Blanks False
  2740. Category 1037943 "20190521" Parent 1037901 Levels 699 OrderBy Drill 675
  2741. Value "20190521" Label "21/05/2019" Lastuse 20201216 SourceValue "20190521"
  2742. Date 20190521 Filtered False Suppressed False Sign False HideValue False
  2743. IsKeyOrphanage False IsTruncated False Blanks False
  2744. Category 1037945 "20190522" Parent 1037901 Levels 699 OrderBy Drill 675
  2745. Value "20190522" Label "22/05/2019" Lastuse 20201216 SourceValue "20190522"
  2746. Date 20190522 Filtered False Suppressed False Sign False HideValue False
  2747. IsKeyOrphanage False IsTruncated False Blanks False
  2748. Category 1037947 "20190523" Parent 1037901 Levels 699 OrderBy Drill 675
  2749. Value "20190523" Label "23/05/2019" Lastuse 20201216 SourceValue "20190523"
  2750. Date 20190523 Filtered False Suppressed False Sign False HideValue False
  2751. IsKeyOrphanage False IsTruncated False Blanks False
  2752. Category 1037949 "20190524" Parent 1037901 Levels 699 OrderBy Drill 675
  2753. Value "20190524" Label "24/05/2019" Lastuse 20201216 SourceValue "20190524"
  2754. Date 20190524 Filtered False Suppressed False Sign False HideValue False
  2755. IsKeyOrphanage False IsTruncated False Blanks False
  2756. Category 1037951 "20190525" Parent 1037901 Levels 699 OrderBy Drill 675
  2757. Value "20190525" Label "25/05/2019" Lastuse 20201216 SourceValue "20190525"
  2758. Date 20190525 Filtered False Suppressed False Sign False HideValue False
  2759. IsKeyOrphanage False IsTruncated False Blanks False
  2760. Category 1037953 "20190526" Parent 1037901 Levels 699 OrderBy Drill 675
  2761. Value "20190526" Label "26/05/2019" Lastuse 20201216 SourceValue "20190526"
  2762. Date 20190526 Filtered False Suppressed False Sign False HideValue False
  2763. IsKeyOrphanage False IsTruncated False Blanks False
  2764. Category 1037955 "20190527" Parent 1037901 Levels 699 OrderBy Drill 675
  2765. Value "20190527" Label "27/05/2019" Lastuse 20201216 SourceValue "20190527"
  2766. Date 20190527 Filtered False Suppressed False Sign False HideValue False
  2767. IsKeyOrphanage False IsTruncated False Blanks False
  2768. Category 1037957 "20190528" Parent 1037901 Levels 699 OrderBy Drill 675
  2769. Value "20190528" Label "28/05/2019" Lastuse 20201216 SourceValue "20190528"
  2770. Date 20190528 Filtered False Suppressed False Sign False HideValue False
  2771. IsKeyOrphanage False IsTruncated False Blanks False
  2772. Category 1037959 "20190529" Parent 1037901 Levels 699 OrderBy Drill 675
  2773. Value "20190529" Label "29/05/2019" Lastuse 20201216 SourceValue "20190529"
  2774. Date 20190529 Filtered False Suppressed False Sign False HideValue False
  2775. IsKeyOrphanage False IsTruncated False Blanks False
  2776. Category 1037961 "20190530" Parent 1037901 Levels 699 OrderBy Drill 675
  2777. Value "20190530" Label "30/05/2019" Lastuse 20201216 SourceValue "20190530"
  2778. Date 20190530 Filtered False Suppressed False Sign False HideValue False
  2779. IsKeyOrphanage False IsTruncated False Blanks False
  2780. Category 1037963 "20190531" Parent 1037901 Levels 699 OrderBy Drill 675
  2781. Value "20190531" Label "31/05/2019" Lastuse 20201216 SourceValue "20190531"
  2782. Date 20190531 Filtered False Suppressed False Sign False HideValue False
  2783. IsKeyOrphanage False IsTruncated False Blanks False
  2784. Category 1033433 "20190601-20190630" Parent 1025535 Levels 693 OrderBy Drill 675
  2785. Value "201906" Label "Juni/2019" Lastuse 20201216 SourceValue "201906"
  2786. Date 20190601 Filtered False Suppressed False Sign False HideValue False
  2787. IsKeyOrphanage False IsTruncated False Blanks False
  2788. Category 1033435 "20190601" Parent 1033433 Levels 699 OrderBy Drill 675
  2789. Value "20190601" Label "01/06/2019" Lastuse 20201216 SourceValue "20190601"
  2790. Date 20190601 Filtered False Suppressed False Sign False HideValue False
  2791. IsKeyOrphanage False IsTruncated False Blanks False
  2792. Category 1033437 "20190602" Parent 1033433 Levels 699 OrderBy Drill 675
  2793. Value "20190602" Label "02/06/2019" Lastuse 20201216 SourceValue "20190602"
  2794. Date 20190602 Filtered False Suppressed False Sign False HideValue False
  2795. IsKeyOrphanage False IsTruncated False Blanks False
  2796. Category 1033439 "20190603" Parent 1033433 Levels 699 OrderBy Drill 675
  2797. Value "20190603" Label "03/06/2019" Lastuse 20201216 SourceValue "20190603"
  2798. Date 20190603 Filtered False Suppressed False Sign False HideValue False
  2799. IsKeyOrphanage False IsTruncated False Blanks False
  2800. Category 1033441 "20190604" Parent 1033433 Levels 699 OrderBy Drill 675
  2801. Value "20190604" Label "04/06/2019" Lastuse 20201216 SourceValue "20190604"
  2802. Date 20190604 Filtered False Suppressed False Sign False HideValue False
  2803. IsKeyOrphanage False IsTruncated False Blanks False
  2804. Category 1033443 "20190605" Parent 1033433 Levels 699 OrderBy Drill 675
  2805. Value "20190605" Label "05/06/2019" Lastuse 20201216 SourceValue "20190605"
  2806. Date 20190605 Filtered False Suppressed False Sign False HideValue False
  2807. IsKeyOrphanage False IsTruncated False Blanks False
  2808. Category 1033445 "20190606" Parent 1033433 Levels 699 OrderBy Drill 675
  2809. Value "20190606" Label "06/06/2019" Lastuse 20201216 SourceValue "20190606"
  2810. Date 20190606 Filtered False Suppressed False Sign False HideValue False
  2811. IsKeyOrphanage False IsTruncated False Blanks False
  2812. Category 1033447 "20190607" Parent 1033433 Levels 699 OrderBy Drill 675
  2813. Value "20190607" Label "07/06/2019" Lastuse 20201216 SourceValue "20190607"
  2814. Date 20190607 Filtered False Suppressed False Sign False HideValue False
  2815. IsKeyOrphanage False IsTruncated False Blanks False
  2816. Category 1033449 "20190608" Parent 1033433 Levels 699 OrderBy Drill 675
  2817. Value "20190608" Label "08/06/2019" Lastuse 20201216 SourceValue "20190608"
  2818. Date 20190608 Filtered False Suppressed False Sign False HideValue False
  2819. IsKeyOrphanage False IsTruncated False Blanks False
  2820. Category 1033451 "20190609" Parent 1033433 Levels 699 OrderBy Drill 675
  2821. Value "20190609" Label "09/06/2019" Lastuse 20201216 SourceValue "20190609"
  2822. Date 20190609 Filtered False Suppressed False Sign False HideValue False
  2823. IsKeyOrphanage False IsTruncated False Blanks False
  2824. Category 1033453 "20190610" Parent 1033433 Levels 699 OrderBy Drill 675
  2825. Value "20190610" Label "10/06/2019" Lastuse 20201216 SourceValue "20190610"
  2826. Date 20190610 Filtered False Suppressed False Sign False HideValue False
  2827. IsKeyOrphanage False IsTruncated False Blanks False
  2828. Category 1033455 "20190611" Parent 1033433 Levels 699 OrderBy Drill 675
  2829. Value "20190611" Label "11/06/2019" Lastuse 20201216 SourceValue "20190611"
  2830. Date 20190611 Filtered False Suppressed False Sign False HideValue False
  2831. IsKeyOrphanage False IsTruncated False Blanks False
  2832. Category 1033457 "20190612" Parent 1033433 Levels 699 OrderBy Drill 675
  2833. Value "20190612" Label "12/06/2019" Lastuse 20201216 SourceValue "20190612"
  2834. Date 20190612 Filtered False Suppressed False Sign False HideValue False
  2835. IsKeyOrphanage False IsTruncated False Blanks False
  2836. Category 1033459 "20190613" Parent 1033433 Levels 699 OrderBy Drill 675
  2837. Value "20190613" Label "13/06/2019" Lastuse 20201216 SourceValue "20190613"
  2838. Date 20190613 Filtered False Suppressed False Sign False HideValue False
  2839. IsKeyOrphanage False IsTruncated False Blanks False
  2840. Category 1033461 "20190614" Parent 1033433 Levels 699 OrderBy Drill 675
  2841. Value "20190614" Label "14/06/2019" Lastuse 20201216 SourceValue "20190614"
  2842. Date 20190614 Filtered False Suppressed False Sign False HideValue False
  2843. IsKeyOrphanage False IsTruncated False Blanks False
  2844. Category 1033463 "20190615" Parent 1033433 Levels 699 OrderBy Drill 675
  2845. Value "20190615" Label "15/06/2019" Lastuse 20201216 SourceValue "20190615"
  2846. Date 20190615 Filtered False Suppressed False Sign False HideValue False
  2847. IsKeyOrphanage False IsTruncated False Blanks False
  2848. Category 1033465 "20190616" Parent 1033433 Levels 699 OrderBy Drill 675
  2849. Value "20190616" Label "16/06/2019" Lastuse 20201216 SourceValue "20190616"
  2850. Date 20190616 Filtered False Suppressed False Sign False HideValue False
  2851. IsKeyOrphanage False IsTruncated False Blanks False
  2852. Category 1033467 "20190617" Parent 1033433 Levels 699 OrderBy Drill 675
  2853. Value "20190617" Label "17/06/2019" Lastuse 20201216 SourceValue "20190617"
  2854. Date 20190617 Filtered False Suppressed False Sign False HideValue False
  2855. IsKeyOrphanage False IsTruncated False Blanks False
  2856. Category 1033469 "20190618" Parent 1033433 Levels 699 OrderBy Drill 675
  2857. Value "20190618" Label "18/06/2019" Lastuse 20201216 SourceValue "20190618"
  2858. Date 20190618 Filtered False Suppressed False Sign False HideValue False
  2859. IsKeyOrphanage False IsTruncated False Blanks False
  2860. Category 1033471 "20190619" Parent 1033433 Levels 699 OrderBy Drill 675
  2861. Value "20190619" Label "19/06/2019" Lastuse 20201216 SourceValue "20190619"
  2862. Date 20190619 Filtered False Suppressed False Sign False HideValue False
  2863. IsKeyOrphanage False IsTruncated False Blanks False
  2864. Category 1033473 "20190620" Parent 1033433 Levels 699 OrderBy Drill 675
  2865. Value "20190620" Label "20/06/2019" Lastuse 20201216 SourceValue "20190620"
  2866. Date 20190620 Filtered False Suppressed False Sign False HideValue False
  2867. IsKeyOrphanage False IsTruncated False Blanks False
  2868. Category 1033475 "20190621" Parent 1033433 Levels 699 OrderBy Drill 675
  2869. Value "20190621" Label "21/06/2019" Lastuse 20201216 SourceValue "20190621"
  2870. Date 20190621 Filtered False Suppressed False Sign False HideValue False
  2871. IsKeyOrphanage False IsTruncated False Blanks False
  2872. Category 1033477 "20190622" Parent 1033433 Levels 699 OrderBy Drill 675
  2873. Value "20190622" Label "22/06/2019" Lastuse 20201216 SourceValue "20190622"
  2874. Date 20190622 Filtered False Suppressed False Sign False HideValue False
  2875. IsKeyOrphanage False IsTruncated False Blanks False
  2876. Category 1033479 "20190623" Parent 1033433 Levels 699 OrderBy Drill 675
  2877. Value "20190623" Label "23/06/2019" Lastuse 20201216 SourceValue "20190623"
  2878. Date 20190623 Filtered False Suppressed False Sign False HideValue False
  2879. IsKeyOrphanage False IsTruncated False Blanks False
  2880. Category 1033481 "20190624" Parent 1033433 Levels 699 OrderBy Drill 675
  2881. Value "20190624" Label "24/06/2019" Lastuse 20201216 SourceValue "20190624"
  2882. Date 20190624 Filtered False Suppressed False Sign False HideValue False
  2883. IsKeyOrphanage False IsTruncated False Blanks False
  2884. Category 1033483 "20190625" Parent 1033433 Levels 699 OrderBy Drill 675
  2885. Value "20190625" Label "25/06/2019" Lastuse 20201216 SourceValue "20190625"
  2886. Date 20190625 Filtered False Suppressed False Sign False HideValue False
  2887. IsKeyOrphanage False IsTruncated False Blanks False
  2888. Category 1033485 "20190626" Parent 1033433 Levels 699 OrderBy Drill 675
  2889. Value "20190626" Label "26/06/2019" Lastuse 20201216 SourceValue "20190626"
  2890. Date 20190626 Filtered False Suppressed False Sign False HideValue False
  2891. IsKeyOrphanage False IsTruncated False Blanks False
  2892. Category 1033487 "20190627" Parent 1033433 Levels 699 OrderBy Drill 675
  2893. Value "20190627" Label "27/06/2019" Lastuse 20201216 SourceValue "20190627"
  2894. Date 20190627 Filtered False Suppressed False Sign False HideValue False
  2895. IsKeyOrphanage False IsTruncated False Blanks False
  2896. Category 1033489 "20190628" Parent 1033433 Levels 699 OrderBy Drill 675
  2897. Value "20190628" Label "28/06/2019" Lastuse 20201216 SourceValue "20190628"
  2898. Date 20190628 Filtered False Suppressed False Sign False HideValue False
  2899. IsKeyOrphanage False IsTruncated False Blanks False
  2900. Category 1033491 "20190629" Parent 1033433 Levels 699 OrderBy Drill 675
  2901. Value "20190629" Label "29/06/2019" Lastuse 20201216 SourceValue "20190629"
  2902. Date 20190629 Filtered False Suppressed False Sign False HideValue False
  2903. IsKeyOrphanage False IsTruncated False Blanks False
  2904. Category 1033493 "20190630" Parent 1033433 Levels 699 OrderBy Drill 675
  2905. Value "20190630" Label "30/06/2019" Lastuse 20201216 SourceValue "20190630"
  2906. Date 20190630 Filtered False Suppressed False Sign False HideValue False
  2907. IsKeyOrphanage False IsTruncated False Blanks False
  2908. Category 1022967 "20190701-20190930" Parent 1022965 Levels 687 OrderBy Drill 675
  2909. Value "20190701" Label "3. Q. 2019" Lastuse 20201216 SourceValue "20190701"
  2910. Date 20190701 Filtered False Suppressed False Sign False HideValue False
  2911. IsKeyOrphanage False IsTruncated False Blanks False
  2912. Category 1025669 "20190701-20190731" Parent 1022967 Levels 693 OrderBy Drill 675
  2913. Value "201907" Label "Juli/2019" Lastuse 20201216 SourceValue "201907"
  2914. Date 20190701 Filtered False Suppressed False Sign False HideValue False
  2915. IsKeyOrphanage False IsTruncated False Blanks False
  2916. Category 1025671 "20190701" Parent 1025669 Levels 699 OrderBy Drill 675
  2917. Value "20190701" Label "01/07/2019" Lastuse 20201216 SourceValue "20190701"
  2918. Date 20190701 Filtered False Suppressed False Sign False HideValue False
  2919. IsKeyOrphanage False IsTruncated False Blanks False
  2920. Category 1025673 "20190702" Parent 1025669 Levels 699 OrderBy Drill 675
  2921. Value "20190702" Label "02/07/2019" Lastuse 20201216 SourceValue "20190702"
  2922. Date 20190702 Filtered False Suppressed False Sign False HideValue False
  2923. IsKeyOrphanage False IsTruncated False Blanks False
  2924. Category 1025675 "20190703" Parent 1025669 Levels 699 OrderBy Drill 675
  2925. Value "20190703" Label "03/07/2019" Lastuse 20201216 SourceValue "20190703"
  2926. Date 20190703 Filtered False Suppressed False Sign False HideValue False
  2927. IsKeyOrphanage False IsTruncated False Blanks False
  2928. Category 1025677 "20190704" Parent 1025669 Levels 699 OrderBy Drill 675
  2929. Value "20190704" Label "04/07/2019" Lastuse 20201216 SourceValue "20190704"
  2930. Date 20190704 Filtered False Suppressed False Sign False HideValue False
  2931. IsKeyOrphanage False IsTruncated False Blanks False
  2932. Category 1025679 "20190705" Parent 1025669 Levels 699 OrderBy Drill 675
  2933. Value "20190705" Label "05/07/2019" Lastuse 20201216 SourceValue "20190705"
  2934. Date 20190705 Filtered False Suppressed False Sign False HideValue False
  2935. IsKeyOrphanage False IsTruncated False Blanks False
  2936. Category 1025681 "20190706" Parent 1025669 Levels 699 OrderBy Drill 675
  2937. Value "20190706" Label "06/07/2019" Lastuse 20201216 SourceValue "20190706"
  2938. Date 20190706 Filtered False Suppressed False Sign False HideValue False
  2939. IsKeyOrphanage False IsTruncated False Blanks False
  2940. Category 1025683 "20190707" Parent 1025669 Levels 699 OrderBy Drill 675
  2941. Value "20190707" Label "07/07/2019" Lastuse 20201216 SourceValue "20190707"
  2942. Date 20190707 Filtered False Suppressed False Sign False HideValue False
  2943. IsKeyOrphanage False IsTruncated False Blanks False
  2944. Category 1025685 "20190708" Parent 1025669 Levels 699 OrderBy Drill 675
  2945. Value "20190708" Label "08/07/2019" Lastuse 20201216 SourceValue "20190708"
  2946. Date 20190708 Filtered False Suppressed False Sign False HideValue False
  2947. IsKeyOrphanage False IsTruncated False Blanks False
  2948. Category 1025687 "20190709" Parent 1025669 Levels 699 OrderBy Drill 675
  2949. Value "20190709" Label "09/07/2019" Lastuse 20201216 SourceValue "20190709"
  2950. Date 20190709 Filtered False Suppressed False Sign False HideValue False
  2951. IsKeyOrphanage False IsTruncated False Blanks False
  2952. Category 1025689 "20190710" Parent 1025669 Levels 699 OrderBy Drill 675
  2953. Value "20190710" Label "10/07/2019" Lastuse 20201216 SourceValue "20190710"
  2954. Date 20190710 Filtered False Suppressed False Sign False HideValue False
  2955. IsKeyOrphanage False IsTruncated False Blanks False
  2956. Category 1025691 "20190711" Parent 1025669 Levels 699 OrderBy Drill 675
  2957. Value "20190711" Label "11/07/2019" Lastuse 20201216 SourceValue "20190711"
  2958. Date 20190711 Filtered False Suppressed False Sign False HideValue False
  2959. IsKeyOrphanage False IsTruncated False Blanks False
  2960. Category 1025693 "20190712" Parent 1025669 Levels 699 OrderBy Drill 675
  2961. Value "20190712" Label "12/07/2019" Lastuse 20201216 SourceValue "20190712"
  2962. Date 20190712 Filtered False Suppressed False Sign False HideValue False
  2963. IsKeyOrphanage False IsTruncated False Blanks False
  2964. Category 1025695 "20190713" Parent 1025669 Levels 699 OrderBy Drill 675
  2965. Value "20190713" Label "13/07/2019" Lastuse 20201216 SourceValue "20190713"
  2966. Date 20190713 Filtered False Suppressed False Sign False HideValue False
  2967. IsKeyOrphanage False IsTruncated False Blanks False
  2968. Category 1025697 "20190714" Parent 1025669 Levels 699 OrderBy Drill 675
  2969. Value "20190714" Label "14/07/2019" Lastuse 20201216 SourceValue "20190714"
  2970. Date 20190714 Filtered False Suppressed False Sign False HideValue False
  2971. IsKeyOrphanage False IsTruncated False Blanks False
  2972. Category 1025699 "20190715" Parent 1025669 Levels 699 OrderBy Drill 675
  2973. Value "20190715" Label "15/07/2019" Lastuse 20201216 SourceValue "20190715"
  2974. Date 20190715 Filtered False Suppressed False Sign False HideValue False
  2975. IsKeyOrphanage False IsTruncated False Blanks False
  2976. Category 1025701 "20190716" Parent 1025669 Levels 699 OrderBy Drill 675
  2977. Value "20190716" Label "16/07/2019" Lastuse 20201216 SourceValue "20190716"
  2978. Date 20190716 Filtered False Suppressed False Sign False HideValue False
  2979. IsKeyOrphanage False IsTruncated False Blanks False
  2980. Category 1025703 "20190717" Parent 1025669 Levels 699 OrderBy Drill 675
  2981. Value "20190717" Label "17/07/2019" Lastuse 20201216 SourceValue "20190717"
  2982. Date 20190717 Filtered False Suppressed False Sign False HideValue False
  2983. IsKeyOrphanage False IsTruncated False Blanks False
  2984. Category 1025705 "20190718" Parent 1025669 Levels 699 OrderBy Drill 675
  2985. Value "20190718" Label "18/07/2019" Lastuse 20201216 SourceValue "20190718"
  2986. Date 20190718 Filtered False Suppressed False Sign False HideValue False
  2987. IsKeyOrphanage False IsTruncated False Blanks False
  2988. Category 1025707 "20190719" Parent 1025669 Levels 699 OrderBy Drill 675
  2989. Value "20190719" Label "19/07/2019" Lastuse 20201216 SourceValue "20190719"
  2990. Date 20190719 Filtered False Suppressed False Sign False HideValue False
  2991. IsKeyOrphanage False IsTruncated False Blanks False
  2992. Category 1025709 "20190720" Parent 1025669 Levels 699 OrderBy Drill 675
  2993. Value "20190720" Label "20/07/2019" Lastuse 20201216 SourceValue "20190720"
  2994. Date 20190720 Filtered False Suppressed False Sign False HideValue False
  2995. IsKeyOrphanage False IsTruncated False Blanks False
  2996. Category 1025711 "20190721" Parent 1025669 Levels 699 OrderBy Drill 675
  2997. Value "20190721" Label "21/07/2019" Lastuse 20201216 SourceValue "20190721"
  2998. Date 20190721 Filtered False Suppressed False Sign False HideValue False
  2999. IsKeyOrphanage False IsTruncated False Blanks False
  3000. Category 1025713 "20190722" Parent 1025669 Levels 699 OrderBy Drill 675
  3001. Value "20190722" Label "22/07/2019" Lastuse 20201216 SourceValue "20190722"
  3002. Date 20190722 Filtered False Suppressed False Sign False HideValue False
  3003. IsKeyOrphanage False IsTruncated False Blanks False
  3004. Category 1025715 "20190723" Parent 1025669 Levels 699 OrderBy Drill 675
  3005. Value "20190723" Label "23/07/2019" Lastuse 20201216 SourceValue "20190723"
  3006. Date 20190723 Filtered False Suppressed False Sign False HideValue False
  3007. IsKeyOrphanage False IsTruncated False Blanks False
  3008. Category 1025717 "20190724" Parent 1025669 Levels 699 OrderBy Drill 675
  3009. Value "20190724" Label "24/07/2019" Lastuse 20201216 SourceValue "20190724"
  3010. Date 20190724 Filtered False Suppressed False Sign False HideValue False
  3011. IsKeyOrphanage False IsTruncated False Blanks False
  3012. Category 1025719 "20190725" Parent 1025669 Levels 699 OrderBy Drill 675
  3013. Value "20190725" Label "25/07/2019" Lastuse 20201216 SourceValue "20190725"
  3014. Date 20190725 Filtered False Suppressed False Sign False HideValue False
  3015. IsKeyOrphanage False IsTruncated False Blanks False
  3016. Category 1025721 "20190726" Parent 1025669 Levels 699 OrderBy Drill 675
  3017. Value "20190726" Label "26/07/2019" Lastuse 20201216 SourceValue "20190726"
  3018. Date 20190726 Filtered False Suppressed False Sign False HideValue False
  3019. IsKeyOrphanage False IsTruncated False Blanks False
  3020. Category 1025723 "20190727" Parent 1025669 Levels 699 OrderBy Drill 675
  3021. Value "20190727" Label "27/07/2019" Lastuse 20201216 SourceValue "20190727"
  3022. Date 20190727 Filtered False Suppressed False Sign False HideValue False
  3023. IsKeyOrphanage False IsTruncated False Blanks False
  3024. Category 1025725 "20190728" Parent 1025669 Levels 699 OrderBy Drill 675
  3025. Value "20190728" Label "28/07/2019" Lastuse 20201216 SourceValue "20190728"
  3026. Date 20190728 Filtered False Suppressed False Sign False HideValue False
  3027. IsKeyOrphanage False IsTruncated False Blanks False
  3028. Category 1025727 "20190729" Parent 1025669 Levels 699 OrderBy Drill 675
  3029. Value "20190729" Label "29/07/2019" Lastuse 20201216 SourceValue "20190729"
  3030. Date 20190729 Filtered False Suppressed False Sign False HideValue False
  3031. IsKeyOrphanage False IsTruncated False Blanks False
  3032. Category 1025729 "20190730" Parent 1025669 Levels 699 OrderBy Drill 675
  3033. Value "20190730" Label "30/07/2019" Lastuse 20201216 SourceValue "20190730"
  3034. Date 20190730 Filtered False Suppressed False Sign False HideValue False
  3035. IsKeyOrphanage False IsTruncated False Blanks False
  3036. Category 1025731 "20190731" Parent 1025669 Levels 699 OrderBy Drill 675
  3037. Value "20190731" Label "31/07/2019" Lastuse 20201216 SourceValue "20190731"
  3038. Date 20190731 Filtered False Suppressed False Sign False HideValue False
  3039. IsKeyOrphanage False IsTruncated False Blanks False
  3040. Category 1029235 "20190801-20190831" Parent 1022967 Levels 693 OrderBy Drill 675
  3041. Value "201908" Label "Aug./2019" Lastuse 20201216 SourceValue "201908"
  3042. Date 20190801 Filtered False Suppressed False Sign False HideValue False
  3043. IsKeyOrphanage False IsTruncated False Blanks False
  3044. Category 1029237 "20190801" Parent 1029235 Levels 699 OrderBy Drill 675
  3045. Value "20190801" Label "01/08/2019" Lastuse 20201216 SourceValue "20190801"
  3046. Date 20190801 Filtered False Suppressed False Sign False HideValue False
  3047. IsKeyOrphanage False IsTruncated False Blanks False
  3048. Category 1029239 "20190802" Parent 1029235 Levels 699 OrderBy Drill 675
  3049. Value "20190802" Label "02/08/2019" Lastuse 20201216 SourceValue "20190802"
  3050. Date 20190802 Filtered False Suppressed False Sign False HideValue False
  3051. IsKeyOrphanage False IsTruncated False Blanks False
  3052. Category 1029241 "20190803" Parent 1029235 Levels 699 OrderBy Drill 675
  3053. Value "20190803" Label "03/08/2019" Lastuse 20201216 SourceValue "20190803"
  3054. Date 20190803 Filtered False Suppressed False Sign False HideValue False
  3055. IsKeyOrphanage False IsTruncated False Blanks False
  3056. Category 1029243 "20190804" Parent 1029235 Levels 699 OrderBy Drill 675
  3057. Value "20190804" Label "04/08/2019" Lastuse 20201216 SourceValue "20190804"
  3058. Date 20190804 Filtered False Suppressed False Sign False HideValue False
  3059. IsKeyOrphanage False IsTruncated False Blanks False
  3060. Category 1029245 "20190805" Parent 1029235 Levels 699 OrderBy Drill 675
  3061. Value "20190805" Label "05/08/2019" Lastuse 20201216 SourceValue "20190805"
  3062. Date 20190805 Filtered False Suppressed False Sign False HideValue False
  3063. IsKeyOrphanage False IsTruncated False Blanks False
  3064. Category 1029247 "20190806" Parent 1029235 Levels 699 OrderBy Drill 675
  3065. Value "20190806" Label "06/08/2019" Lastuse 20201216 SourceValue "20190806"
  3066. Date 20190806 Filtered False Suppressed False Sign False HideValue False
  3067. IsKeyOrphanage False IsTruncated False Blanks False
  3068. Category 1029249 "20190807" Parent 1029235 Levels 699 OrderBy Drill 675
  3069. Value "20190807" Label "07/08/2019" Lastuse 20201216 SourceValue "20190807"
  3070. Date 20190807 Filtered False Suppressed False Sign False HideValue False
  3071. IsKeyOrphanage False IsTruncated False Blanks False
  3072. Category 1029251 "20190808" Parent 1029235 Levels 699 OrderBy Drill 675
  3073. Value "20190808" Label "08/08/2019" Lastuse 20201216 SourceValue "20190808"
  3074. Date 20190808 Filtered False Suppressed False Sign False HideValue False
  3075. IsKeyOrphanage False IsTruncated False Blanks False
  3076. Category 1029253 "20190809" Parent 1029235 Levels 699 OrderBy Drill 675
  3077. Value "20190809" Label "09/08/2019" Lastuse 20201216 SourceValue "20190809"
  3078. Date 20190809 Filtered False Suppressed False Sign False HideValue False
  3079. IsKeyOrphanage False IsTruncated False Blanks False
  3080. Category 1029255 "20190810" Parent 1029235 Levels 699 OrderBy Drill 675
  3081. Value "20190810" Label "10/08/2019" Lastuse 20201216 SourceValue "20190810"
  3082. Date 20190810 Filtered False Suppressed False Sign False HideValue False
  3083. IsKeyOrphanage False IsTruncated False Blanks False
  3084. Category 1029257 "20190811" Parent 1029235 Levels 699 OrderBy Drill 675
  3085. Value "20190811" Label "11/08/2019" Lastuse 20201216 SourceValue "20190811"
  3086. Date 20190811 Filtered False Suppressed False Sign False HideValue False
  3087. IsKeyOrphanage False IsTruncated False Blanks False
  3088. Category 1029259 "20190812" Parent 1029235 Levels 699 OrderBy Drill 675
  3089. Value "20190812" Label "12/08/2019" Lastuse 20201216 SourceValue "20190812"
  3090. Date 20190812 Filtered False Suppressed False Sign False HideValue False
  3091. IsKeyOrphanage False IsTruncated False Blanks False
  3092. Category 1029261 "20190813" Parent 1029235 Levels 699 OrderBy Drill 675
  3093. Value "20190813" Label "13/08/2019" Lastuse 20201216 SourceValue "20190813"
  3094. Date 20190813 Filtered False Suppressed False Sign False HideValue False
  3095. IsKeyOrphanage False IsTruncated False Blanks False
  3096. Category 1029263 "20190814" Parent 1029235 Levels 699 OrderBy Drill 675
  3097. Value "20190814" Label "14/08/2019" Lastuse 20201216 SourceValue "20190814"
  3098. Date 20190814 Filtered False Suppressed False Sign False HideValue False
  3099. IsKeyOrphanage False IsTruncated False Blanks False
  3100. Category 1029265 "20190815" Parent 1029235 Levels 699 OrderBy Drill 675
  3101. Value "20190815" Label "15/08/2019" Lastuse 20201216 SourceValue "20190815"
  3102. Date 20190815 Filtered False Suppressed False Sign False HideValue False
  3103. IsKeyOrphanage False IsTruncated False Blanks False
  3104. Category 1029267 "20190816" Parent 1029235 Levels 699 OrderBy Drill 675
  3105. Value "20190816" Label "16/08/2019" Lastuse 20201216 SourceValue "20190816"
  3106. Date 20190816 Filtered False Suppressed False Sign False HideValue False
  3107. IsKeyOrphanage False IsTruncated False Blanks False
  3108. Category 1029269 "20190817" Parent 1029235 Levels 699 OrderBy Drill 675
  3109. Value "20190817" Label "17/08/2019" Lastuse 20201216 SourceValue "20190817"
  3110. Date 20190817 Filtered False Suppressed False Sign False HideValue False
  3111. IsKeyOrphanage False IsTruncated False Blanks False
  3112. Category 1029271 "20190818" Parent 1029235 Levels 699 OrderBy Drill 675
  3113. Value "20190818" Label "18/08/2019" Lastuse 20201216 SourceValue "20190818"
  3114. Date 20190818 Filtered False Suppressed False Sign False HideValue False
  3115. IsKeyOrphanage False IsTruncated False Blanks False
  3116. Category 1029273 "20190819" Parent 1029235 Levels 699 OrderBy Drill 675
  3117. Value "20190819" Label "19/08/2019" Lastuse 20201216 SourceValue "20190819"
  3118. Date 20190819 Filtered False Suppressed False Sign False HideValue False
  3119. IsKeyOrphanage False IsTruncated False Blanks False
  3120. Category 1029275 "20190820" Parent 1029235 Levels 699 OrderBy Drill 675
  3121. Value "20190820" Label "20/08/2019" Lastuse 20201216 SourceValue "20190820"
  3122. Date 20190820 Filtered False Suppressed False Sign False HideValue False
  3123. IsKeyOrphanage False IsTruncated False Blanks False
  3124. Category 1029277 "20190821" Parent 1029235 Levels 699 OrderBy Drill 675
  3125. Value "20190821" Label "21/08/2019" Lastuse 20201216 SourceValue "20190821"
  3126. Date 20190821 Filtered False Suppressed False Sign False HideValue False
  3127. IsKeyOrphanage False IsTruncated False Blanks False
  3128. Category 1029279 "20190822" Parent 1029235 Levels 699 OrderBy Drill 675
  3129. Value "20190822" Label "22/08/2019" Lastuse 20201216 SourceValue "20190822"
  3130. Date 20190822 Filtered False Suppressed False Sign False HideValue False
  3131. IsKeyOrphanage False IsTruncated False Blanks False
  3132. Category 1029281 "20190823" Parent 1029235 Levels 699 OrderBy Drill 675
  3133. Value "20190823" Label "23/08/2019" Lastuse 20201216 SourceValue "20190823"
  3134. Date 20190823 Filtered False Suppressed False Sign False HideValue False
  3135. IsKeyOrphanage False IsTruncated False Blanks False
  3136. Category 1029283 "20190824" Parent 1029235 Levels 699 OrderBy Drill 675
  3137. Value "20190824" Label "24/08/2019" Lastuse 20201216 SourceValue "20190824"
  3138. Date 20190824 Filtered False Suppressed False Sign False HideValue False
  3139. IsKeyOrphanage False IsTruncated False Blanks False
  3140. Category 1029285 "20190825" Parent 1029235 Levels 699 OrderBy Drill 675
  3141. Value "20190825" Label "25/08/2019" Lastuse 20201216 SourceValue "20190825"
  3142. Date 20190825 Filtered False Suppressed False Sign False HideValue False
  3143. IsKeyOrphanage False IsTruncated False Blanks False
  3144. Category 1029287 "20190826" Parent 1029235 Levels 699 OrderBy Drill 675
  3145. Value "20190826" Label "26/08/2019" Lastuse 20201216 SourceValue "20190826"
  3146. Date 20190826 Filtered False Suppressed False Sign False HideValue False
  3147. IsKeyOrphanage False IsTruncated False Blanks False
  3148. Category 1029289 "20190827" Parent 1029235 Levels 699 OrderBy Drill 675
  3149. Value "20190827" Label "27/08/2019" Lastuse 20201216 SourceValue "20190827"
  3150. Date 20190827 Filtered False Suppressed False Sign False HideValue False
  3151. IsKeyOrphanage False IsTruncated False Blanks False
  3152. Category 1029291 "20190828" Parent 1029235 Levels 699 OrderBy Drill 675
  3153. Value "20190828" Label "28/08/2019" Lastuse 20201216 SourceValue "20190828"
  3154. Date 20190828 Filtered False Suppressed False Sign False HideValue False
  3155. IsKeyOrphanage False IsTruncated False Blanks False
  3156. Category 1029293 "20190829" Parent 1029235 Levels 699 OrderBy Drill 675
  3157. Value "20190829" Label "29/08/2019" Lastuse 20201216 SourceValue "20190829"
  3158. Date 20190829 Filtered False Suppressed False Sign False HideValue False
  3159. IsKeyOrphanage False IsTruncated False Blanks False
  3160. Category 1029295 "20190830" Parent 1029235 Levels 699 OrderBy Drill 675
  3161. Value "20190830" Label "30/08/2019" Lastuse 20201216 SourceValue "20190830"
  3162. Date 20190830 Filtered False Suppressed False Sign False HideValue False
  3163. IsKeyOrphanage False IsTruncated False Blanks False
  3164. Category 1029297 "20190831" Parent 1029235 Levels 699 OrderBy Drill 675
  3165. Value "20190831" Label "31/08/2019" Lastuse 20201216 SourceValue "20190831"
  3166. Date 20190831 Filtered False Suppressed False Sign False HideValue False
  3167. IsKeyOrphanage False IsTruncated False Blanks False
  3168. Category 1022969 "20190901-20190930" Parent 1022967 Levels 693 OrderBy Drill 675
  3169. Value "201909" Label "Sept./2019" Lastuse 20201216 SourceValue "201909"
  3170. Date 20190901 Filtered False Suppressed False Sign False HideValue False
  3171. IsKeyOrphanage False IsTruncated False Blanks False
  3172. Category 1022971 "20190901" Parent 1022969 Levels 699 OrderBy Drill 675
  3173. Value "20190901" Label "01/09/2019" Lastuse 20201216 SourceValue "20190901"
  3174. Date 20190901 Filtered False Suppressed False Sign False HideValue False
  3175. IsKeyOrphanage False IsTruncated False Blanks False
  3176. Category 1022973 "20190902" Parent 1022969 Levels 699 OrderBy Drill 675
  3177. Value "20190902" Label "02/09/2019" Lastuse 20201216 SourceValue "20190902"
  3178. Date 20190902 Filtered False Suppressed False Sign False HideValue False
  3179. IsKeyOrphanage False IsTruncated False Blanks False
  3180. Category 1022975 "20190903" Parent 1022969 Levels 699 OrderBy Drill 675
  3181. Value "20190903" Label "03/09/2019" Lastuse 20201216 SourceValue "20190903"
  3182. Date 20190903 Filtered False Suppressed False Sign False HideValue False
  3183. IsKeyOrphanage False IsTruncated False Blanks False
  3184. Category 1022977 "20190904" Parent 1022969 Levels 699 OrderBy Drill 675
  3185. Value "20190904" Label "04/09/2019" Lastuse 20201216 SourceValue "20190904"
  3186. Date 20190904 Filtered False Suppressed False Sign False HideValue False
  3187. IsKeyOrphanage False IsTruncated False Blanks False
  3188. Category 1022979 "20190905" Parent 1022969 Levels 699 OrderBy Drill 675
  3189. Value "20190905" Label "05/09/2019" Lastuse 20201216 SourceValue "20190905"
  3190. Date 20190905 Filtered False Suppressed False Sign False HideValue False
  3191. IsKeyOrphanage False IsTruncated False Blanks False
  3192. Category 1022981 "20190906" Parent 1022969 Levels 699 OrderBy Drill 675
  3193. Value "20190906" Label "06/09/2019" Lastuse 20201216 SourceValue "20190906"
  3194. Date 20190906 Filtered False Suppressed False Sign False HideValue False
  3195. IsKeyOrphanage False IsTruncated False Blanks False
  3196. Category 1022983 "20190907" Parent 1022969 Levels 699 OrderBy Drill 675
  3197. Value "20190907" Label "07/09/2019" Lastuse 20201216 SourceValue "20190907"
  3198. Date 20190907 Filtered False Suppressed False Sign False HideValue False
  3199. IsKeyOrphanage False IsTruncated False Blanks False
  3200. Category 1022985 "20190908" Parent 1022969 Levels 699 OrderBy Drill 675
  3201. Value "20190908" Label "08/09/2019" Lastuse 20201216 SourceValue "20190908"
  3202. Date 20190908 Filtered False Suppressed False Sign False HideValue False
  3203. IsKeyOrphanage False IsTruncated False Blanks False
  3204. Category 1022987 "20190909" Parent 1022969 Levels 699 OrderBy Drill 675
  3205. Value "20190909" Label "09/09/2019" Lastuse 20201216 SourceValue "20190909"
  3206. Date 20190909 Filtered False Suppressed False Sign False HideValue False
  3207. IsKeyOrphanage False IsTruncated False Blanks False
  3208. Category 1022989 "20190910" Parent 1022969 Levels 699 OrderBy Drill 675
  3209. Value "20190910" Label "10/09/2019" Lastuse 20201216 SourceValue "20190910"
  3210. Date 20190910 Filtered False Suppressed False Sign False HideValue False
  3211. IsKeyOrphanage False IsTruncated False Blanks False
  3212. Category 1022991 "20190911" Parent 1022969 Levels 699 OrderBy Drill 675
  3213. Value "20190911" Label "11/09/2019" Lastuse 20201216 SourceValue "20190911"
  3214. Date 20190911 Filtered False Suppressed False Sign False HideValue False
  3215. IsKeyOrphanage False IsTruncated False Blanks False
  3216. Category 1022993 "20190912" Parent 1022969 Levels 699 OrderBy Drill 675
  3217. Value "20190912" Label "12/09/2019" Lastuse 20201216 SourceValue "20190912"
  3218. Date 20190912 Filtered False Suppressed False Sign False HideValue False
  3219. IsKeyOrphanage False IsTruncated False Blanks False
  3220. Category 1022995 "20190913" Parent 1022969 Levels 699 OrderBy Drill 675
  3221. Value "20190913" Label "13/09/2019" Lastuse 20201216 SourceValue "20190913"
  3222. Date 20190913 Filtered False Suppressed False Sign False HideValue False
  3223. IsKeyOrphanage False IsTruncated False Blanks False
  3224. Category 1022997 "20190914" Parent 1022969 Levels 699 OrderBy Drill 675
  3225. Value "20190914" Label "14/09/2019" Lastuse 20201216 SourceValue "20190914"
  3226. Date 20190914 Filtered False Suppressed False Sign False HideValue False
  3227. IsKeyOrphanage False IsTruncated False Blanks False
  3228. Category 1022999 "20190915" Parent 1022969 Levels 699 OrderBy Drill 675
  3229. Value "20190915" Label "15/09/2019" Lastuse 20201216 SourceValue "20190915"
  3230. Date 20190915 Filtered False Suppressed False Sign False HideValue False
  3231. IsKeyOrphanage False IsTruncated False Blanks False
  3232. Category 1023001 "20190916" Parent 1022969 Levels 699 OrderBy Drill 675
  3233. Value "20190916" Label "16/09/2019" Lastuse 20201216 SourceValue "20190916"
  3234. Date 20190916 Filtered False Suppressed False Sign False HideValue False
  3235. IsKeyOrphanage False IsTruncated False Blanks False
  3236. Category 1023003 "20190917" Parent 1022969 Levels 699 OrderBy Drill 675
  3237. Value "20190917" Label "17/09/2019" Lastuse 20201216 SourceValue "20190917"
  3238. Date 20190917 Filtered False Suppressed False Sign False HideValue False
  3239. IsKeyOrphanage False IsTruncated False Blanks False
  3240. Category 1023005 "20190918" Parent 1022969 Levels 699 OrderBy Drill 675
  3241. Value "20190918" Label "18/09/2019" Lastuse 20201216 SourceValue "20190918"
  3242. Date 20190918 Filtered False Suppressed False Sign False HideValue False
  3243. IsKeyOrphanage False IsTruncated False Blanks False
  3244. Category 1023007 "20190919" Parent 1022969 Levels 699 OrderBy Drill 675
  3245. Value "20190919" Label "19/09/2019" Lastuse 20201216 SourceValue "20190919"
  3246. Date 20190919 Filtered False Suppressed False Sign False HideValue False
  3247. IsKeyOrphanage False IsTruncated False Blanks False
  3248. Category 1023009 "20190920" Parent 1022969 Levels 699 OrderBy Drill 675
  3249. Value "20190920" Label "20/09/2019" Lastuse 20201216 SourceValue "20190920"
  3250. Date 20190920 Filtered False Suppressed False Sign False HideValue False
  3251. IsKeyOrphanage False IsTruncated False Blanks False
  3252. Category 1023011 "20190921" Parent 1022969 Levels 699 OrderBy Drill 675
  3253. Value "20190921" Label "21/09/2019" Lastuse 20201216 SourceValue "20190921"
  3254. Date 20190921 Filtered False Suppressed False Sign False HideValue False
  3255. IsKeyOrphanage False IsTruncated False Blanks False
  3256. Category 1023013 "20190922" Parent 1022969 Levels 699 OrderBy Drill 675
  3257. Value "20190922" Label "22/09/2019" Lastuse 20201216 SourceValue "20190922"
  3258. Date 20190922 Filtered False Suppressed False Sign False HideValue False
  3259. IsKeyOrphanage False IsTruncated False Blanks False
  3260. Category 1023015 "20190923" Parent 1022969 Levels 699 OrderBy Drill 675
  3261. Value "20190923" Label "23/09/2019" Lastuse 20201216 SourceValue "20190923"
  3262. Date 20190923 Filtered False Suppressed False Sign False HideValue False
  3263. IsKeyOrphanage False IsTruncated False Blanks False
  3264. Category 1023017 "20190924" Parent 1022969 Levels 699 OrderBy Drill 675
  3265. Value "20190924" Label "24/09/2019" Lastuse 20201216 SourceValue "20190924"
  3266. Date 20190924 Filtered False Suppressed False Sign False HideValue False
  3267. IsKeyOrphanage False IsTruncated False Blanks False
  3268. Category 1023019 "20190925" Parent 1022969 Levels 699 OrderBy Drill 675
  3269. Value "20190925" Label "25/09/2019" Lastuse 20201216 SourceValue "20190925"
  3270. Date 20190925 Filtered False Suppressed False Sign False HideValue False
  3271. IsKeyOrphanage False IsTruncated False Blanks False
  3272. Category 1023021 "20190926" Parent 1022969 Levels 699 OrderBy Drill 675
  3273. Value "20190926" Label "26/09/2019" Lastuse 20201216 SourceValue "20190926"
  3274. Date 20190926 Filtered False Suppressed False Sign False HideValue False
  3275. IsKeyOrphanage False IsTruncated False Blanks False
  3276. Category 1023023 "20190927" Parent 1022969 Levels 699 OrderBy Drill 675
  3277. Value "20190927" Label "27/09/2019" Lastuse 20201216 SourceValue "20190927"
  3278. Date 20190927 Filtered False Suppressed False Sign False HideValue False
  3279. IsKeyOrphanage False IsTruncated False Blanks False
  3280. Category 1023025 "20190928" Parent 1022969 Levels 699 OrderBy Drill 675
  3281. Value "20190928" Label "28/09/2019" Lastuse 20201216 SourceValue "20190928"
  3282. Date 20190928 Filtered False Suppressed False Sign False HideValue False
  3283. IsKeyOrphanage False IsTruncated False Blanks False
  3284. Category 1023027 "20190929" Parent 1022969 Levels 699 OrderBy Drill 675
  3285. Value "20190929" Label "29/09/2019" Lastuse 20201216 SourceValue "20190929"
  3286. Date 20190929 Filtered False Suppressed False Sign False HideValue False
  3287. IsKeyOrphanage False IsTruncated False Blanks False
  3288. Category 1023029 "20190930" Parent 1022969 Levels 699 OrderBy Drill 675
  3289. Value "20190930" Label "30/09/2019" Lastuse 20201216 SourceValue "20190930"
  3290. Date 20190930 Filtered False Suppressed False Sign False HideValue False
  3291. IsKeyOrphanage False IsTruncated False Blanks False
  3292. Category 1026097 "20191001-20191231" Parent 1022965 Levels 687 OrderBy Drill 675
  3293. Value "20191001" Label "4. Q. 2019" Lastuse 20201216 SourceValue "20191001"
  3294. Date 20191001 Filtered False Suppressed False Sign False HideValue False
  3295. IsKeyOrphanage False IsTruncated False Blanks False
  3296. Category 1028391 "20191001-20191031" Parent 1026097 Levels 693 OrderBy Drill 675
  3297. Value "201910" Label "Okt./2019" Lastuse 20201216 SourceValue "201910"
  3298. Date 20191001 Filtered False Suppressed False Sign False HideValue False
  3299. IsKeyOrphanage False IsTruncated False Blanks False
  3300. Category 1028393 "20191001" Parent 1028391 Levels 699 OrderBy Drill 675
  3301. Value "20191001" Label "01/10/2019" Lastuse 20201216 SourceValue "20191001"
  3302. Date 20191001 Filtered False Suppressed False Sign False HideValue False
  3303. IsKeyOrphanage False IsTruncated False Blanks False
  3304. Category 1028395 "20191002" Parent 1028391 Levels 699 OrderBy Drill 675
  3305. Value "20191002" Label "02/10/2019" Lastuse 20201216 SourceValue "20191002"
  3306. Date 20191002 Filtered False Suppressed False Sign False HideValue False
  3307. IsKeyOrphanage False IsTruncated False Blanks False
  3308. Category 1028397 "20191003" Parent 1028391 Levels 699 OrderBy Drill 675
  3309. Value "20191003" Label "03/10/2019" Lastuse 20201216 SourceValue "20191003"
  3310. Date 20191003 Filtered False Suppressed False Sign False HideValue False
  3311. IsKeyOrphanage False IsTruncated False Blanks False
  3312. Category 1028399 "20191004" Parent 1028391 Levels 699 OrderBy Drill 675
  3313. Value "20191004" Label "04/10/2019" Lastuse 20201216 SourceValue "20191004"
  3314. Date 20191004 Filtered False Suppressed False Sign False HideValue False
  3315. IsKeyOrphanage False IsTruncated False Blanks False
  3316. Category 1028401 "20191005" Parent 1028391 Levels 699 OrderBy Drill 675
  3317. Value "20191005" Label "05/10/2019" Lastuse 20201216 SourceValue "20191005"
  3318. Date 20191005 Filtered False Suppressed False Sign False HideValue False
  3319. IsKeyOrphanage False IsTruncated False Blanks False
  3320. Category 1028403 "20191006" Parent 1028391 Levels 699 OrderBy Drill 675
  3321. Value "20191006" Label "06/10/2019" Lastuse 20201216 SourceValue "20191006"
  3322. Date 20191006 Filtered False Suppressed False Sign False HideValue False
  3323. IsKeyOrphanage False IsTruncated False Blanks False
  3324. Category 1028405 "20191007" Parent 1028391 Levels 699 OrderBy Drill 675
  3325. Value "20191007" Label "07/10/2019" Lastuse 20201216 SourceValue "20191007"
  3326. Date 20191007 Filtered False Suppressed False Sign False HideValue False
  3327. IsKeyOrphanage False IsTruncated False Blanks False
  3328. Category 1028407 "20191008" Parent 1028391 Levels 699 OrderBy Drill 675
  3329. Value "20191008" Label "08/10/2019" Lastuse 20201216 SourceValue "20191008"
  3330. Date 20191008 Filtered False Suppressed False Sign False HideValue False
  3331. IsKeyOrphanage False IsTruncated False Blanks False
  3332. Category 1028409 "20191009" Parent 1028391 Levels 699 OrderBy Drill 675
  3333. Value "20191009" Label "09/10/2019" Lastuse 20201216 SourceValue "20191009"
  3334. Date 20191009 Filtered False Suppressed False Sign False HideValue False
  3335. IsKeyOrphanage False IsTruncated False Blanks False
  3336. Category 1028411 "20191010" Parent 1028391 Levels 699 OrderBy Drill 675
  3337. Value "20191010" Label "10/10/2019" Lastuse 20201216 SourceValue "20191010"
  3338. Date 20191010 Filtered False Suppressed False Sign False HideValue False
  3339. IsKeyOrphanage False IsTruncated False Blanks False
  3340. Category 1028413 "20191011" Parent 1028391 Levels 699 OrderBy Drill 675
  3341. Value "20191011" Label "11/10/2019" Lastuse 20201216 SourceValue "20191011"
  3342. Date 20191011 Filtered False Suppressed False Sign False HideValue False
  3343. IsKeyOrphanage False IsTruncated False Blanks False
  3344. Category 1028415 "20191012" Parent 1028391 Levels 699 OrderBy Drill 675
  3345. Value "20191012" Label "12/10/2019" Lastuse 20201216 SourceValue "20191012"
  3346. Date 20191012 Filtered False Suppressed False Sign False HideValue False
  3347. IsKeyOrphanage False IsTruncated False Blanks False
  3348. Category 1028417 "20191013" Parent 1028391 Levels 699 OrderBy Drill 675
  3349. Value "20191013" Label "13/10/2019" Lastuse 20201216 SourceValue "20191013"
  3350. Date 20191013 Filtered False Suppressed False Sign False HideValue False
  3351. IsKeyOrphanage False IsTruncated False Blanks False
  3352. Category 1028419 "20191014" Parent 1028391 Levels 699 OrderBy Drill 675
  3353. Value "20191014" Label "14/10/2019" Lastuse 20201216 SourceValue "20191014"
  3354. Date 20191014 Filtered False Suppressed False Sign False HideValue False
  3355. IsKeyOrphanage False IsTruncated False Blanks False
  3356. Category 1028421 "20191015" Parent 1028391 Levels 699 OrderBy Drill 675
  3357. Value "20191015" Label "15/10/2019" Lastuse 20201216 SourceValue "20191015"
  3358. Date 20191015 Filtered False Suppressed False Sign False HideValue False
  3359. IsKeyOrphanage False IsTruncated False Blanks False
  3360. Category 1028423 "20191016" Parent 1028391 Levels 699 OrderBy Drill 675
  3361. Value "20191016" Label "16/10/2019" Lastuse 20201216 SourceValue "20191016"
  3362. Date 20191016 Filtered False Suppressed False Sign False HideValue False
  3363. IsKeyOrphanage False IsTruncated False Blanks False
  3364. Category 1028425 "20191017" Parent 1028391 Levels 699 OrderBy Drill 675
  3365. Value "20191017" Label "17/10/2019" Lastuse 20201216 SourceValue "20191017"
  3366. Date 20191017 Filtered False Suppressed False Sign False HideValue False
  3367. IsKeyOrphanage False IsTruncated False Blanks False
  3368. Category 1028427 "20191018" Parent 1028391 Levels 699 OrderBy Drill 675
  3369. Value "20191018" Label "18/10/2019" Lastuse 20201216 SourceValue "20191018"
  3370. Date 20191018 Filtered False Suppressed False Sign False HideValue False
  3371. IsKeyOrphanage False IsTruncated False Blanks False
  3372. Category 1028429 "20191019" Parent 1028391 Levels 699 OrderBy Drill 675
  3373. Value "20191019" Label "19/10/2019" Lastuse 20201216 SourceValue "20191019"
  3374. Date 20191019 Filtered False Suppressed False Sign False HideValue False
  3375. IsKeyOrphanage False IsTruncated False Blanks False
  3376. Category 1028431 "20191020" Parent 1028391 Levels 699 OrderBy Drill 675
  3377. Value "20191020" Label "20/10/2019" Lastuse 20201216 SourceValue "20191020"
  3378. Date 20191020 Filtered False Suppressed False Sign False HideValue False
  3379. IsKeyOrphanage False IsTruncated False Blanks False
  3380. Category 1028433 "20191021" Parent 1028391 Levels 699 OrderBy Drill 675
  3381. Value "20191021" Label "21/10/2019" Lastuse 20201216 SourceValue "20191021"
  3382. Date 20191021 Filtered False Suppressed False Sign False HideValue False
  3383. IsKeyOrphanage False IsTruncated False Blanks False
  3384. Category 1028435 "20191022" Parent 1028391 Levels 699 OrderBy Drill 675
  3385. Value "20191022" Label "22/10/2019" Lastuse 20201216 SourceValue "20191022"
  3386. Date 20191022 Filtered False Suppressed False Sign False HideValue False
  3387. IsKeyOrphanage False IsTruncated False Blanks False
  3388. Category 1028437 "20191023" Parent 1028391 Levels 699 OrderBy Drill 675
  3389. Value "20191023" Label "23/10/2019" Lastuse 20201216 SourceValue "20191023"
  3390. Date 20191023 Filtered False Suppressed False Sign False HideValue False
  3391. IsKeyOrphanage False IsTruncated False Blanks False
  3392. Category 1028439 "20191024" Parent 1028391 Levels 699 OrderBy Drill 675
  3393. Value "20191024" Label "24/10/2019" Lastuse 20201216 SourceValue "20191024"
  3394. Date 20191024 Filtered False Suppressed False Sign False HideValue False
  3395. IsKeyOrphanage False IsTruncated False Blanks False
  3396. Category 1028441 "20191025" Parent 1028391 Levels 699 OrderBy Drill 675
  3397. Value "20191025" Label "25/10/2019" Lastuse 20201216 SourceValue "20191025"
  3398. Date 20191025 Filtered False Suppressed False Sign False HideValue False
  3399. IsKeyOrphanage False IsTruncated False Blanks False
  3400. Category 1028443 "20191026" Parent 1028391 Levels 699 OrderBy Drill 675
  3401. Value "20191026" Label "26/10/2019" Lastuse 20201216 SourceValue "20191026"
  3402. Date 20191026 Filtered False Suppressed False Sign False HideValue False
  3403. IsKeyOrphanage False IsTruncated False Blanks False
  3404. Category 1028445 "20191027" Parent 1028391 Levels 699 OrderBy Drill 675
  3405. Value "20191027" Label "27/10/2019" Lastuse 20201216 SourceValue "20191027"
  3406. Date 20191027 Filtered False Suppressed False Sign False HideValue False
  3407. IsKeyOrphanage False IsTruncated False Blanks False
  3408. Category 1028447 "20191028" Parent 1028391 Levels 699 OrderBy Drill 675
  3409. Value "20191028" Label "28/10/2019" Lastuse 20201216 SourceValue "20191028"
  3410. Date 20191028 Filtered False Suppressed False Sign False HideValue False
  3411. IsKeyOrphanage False IsTruncated False Blanks False
  3412. Category 1028449 "20191029" Parent 1028391 Levels 699 OrderBy Drill 675
  3413. Value "20191029" Label "29/10/2019" Lastuse 20201216 SourceValue "20191029"
  3414. Date 20191029 Filtered False Suppressed False Sign False HideValue False
  3415. IsKeyOrphanage False IsTruncated False Blanks False
  3416. Category 1028451 "20191030" Parent 1028391 Levels 699 OrderBy Drill 675
  3417. Value "20191030" Label "30/10/2019" Lastuse 20201216 SourceValue "20191030"
  3418. Date 20191030 Filtered False Suppressed False Sign False HideValue False
  3419. IsKeyOrphanage False IsTruncated False Blanks False
  3420. Category 1028453 "20191031" Parent 1028391 Levels 699 OrderBy Drill 675
  3421. Value "20191031" Label "31/10/2019" Lastuse 20201216 SourceValue "20191031"
  3422. Date 20191031 Filtered False Suppressed False Sign False HideValue False
  3423. IsKeyOrphanage False IsTruncated False Blanks False
  3424. Category 1026099 "20191101-20191130" Parent 1026097 Levels 693 OrderBy Drill 675
  3425. Value "201911" Label "Nov./2019" Lastuse 20201216 SourceValue "201911"
  3426. Date 20191101 Filtered False Suppressed False Sign False HideValue False
  3427. IsKeyOrphanage False IsTruncated False Blanks False
  3428. Category 1026101 "20191101" Parent 1026099 Levels 699 OrderBy Drill 675
  3429. Value "20191101" Label "01/11/2019" Lastuse 20201216 SourceValue "20191101"
  3430. Date 20191101 Filtered False Suppressed False Sign False HideValue False
  3431. IsKeyOrphanage False IsTruncated False Blanks False
  3432. Category 1026103 "20191102" Parent 1026099 Levels 699 OrderBy Drill 675
  3433. Value "20191102" Label "02/11/2019" Lastuse 20201216 SourceValue "20191102"
  3434. Date 20191102 Filtered False Suppressed False Sign False HideValue False
  3435. IsKeyOrphanage False IsTruncated False Blanks False
  3436. Category 1026105 "20191103" Parent 1026099 Levels 699 OrderBy Drill 675
  3437. Value "20191103" Label "03/11/2019" Lastuse 20201216 SourceValue "20191103"
  3438. Date 20191103 Filtered False Suppressed False Sign False HideValue False
  3439. IsKeyOrphanage False IsTruncated False Blanks False
  3440. Category 1026107 "20191104" Parent 1026099 Levels 699 OrderBy Drill 675
  3441. Value "20191104" Label "04/11/2019" Lastuse 20201216 SourceValue "20191104"
  3442. Date 20191104 Filtered False Suppressed False Sign False HideValue False
  3443. IsKeyOrphanage False IsTruncated False Blanks False
  3444. Category 1026109 "20191105" Parent 1026099 Levels 699 OrderBy Drill 675
  3445. Value "20191105" Label "05/11/2019" Lastuse 20201216 SourceValue "20191105"
  3446. Date 20191105 Filtered False Suppressed False Sign False HideValue False
  3447. IsKeyOrphanage False IsTruncated False Blanks False
  3448. Category 1026111 "20191106" Parent 1026099 Levels 699 OrderBy Drill 675
  3449. Value "20191106" Label "06/11/2019" Lastuse 20201216 SourceValue "20191106"
  3450. Date 20191106 Filtered False Suppressed False Sign False HideValue False
  3451. IsKeyOrphanage False IsTruncated False Blanks False
  3452. Category 1026113 "20191107" Parent 1026099 Levels 699 OrderBy Drill 675
  3453. Value "20191107" Label "07/11/2019" Lastuse 20201216 SourceValue "20191107"
  3454. Date 20191107 Filtered False Suppressed False Sign False HideValue False
  3455. IsKeyOrphanage False IsTruncated False Blanks False
  3456. Category 1026115 "20191108" Parent 1026099 Levels 699 OrderBy Drill 675
  3457. Value "20191108" Label "08/11/2019" Lastuse 20201216 SourceValue "20191108"
  3458. Date 20191108 Filtered False Suppressed False Sign False HideValue False
  3459. IsKeyOrphanage False IsTruncated False Blanks False
  3460. Category 1026117 "20191109" Parent 1026099 Levels 699 OrderBy Drill 675
  3461. Value "20191109" Label "09/11/2019" Lastuse 20201216 SourceValue "20191109"
  3462. Date 20191109 Filtered False Suppressed False Sign False HideValue False
  3463. IsKeyOrphanage False IsTruncated False Blanks False
  3464. Category 1026119 "20191110" Parent 1026099 Levels 699 OrderBy Drill 675
  3465. Value "20191110" Label "10/11/2019" Lastuse 20201216 SourceValue "20191110"
  3466. Date 20191110 Filtered False Suppressed False Sign False HideValue False
  3467. IsKeyOrphanage False IsTruncated False Blanks False
  3468. Category 1026121 "20191111" Parent 1026099 Levels 699 OrderBy Drill 675
  3469. Value "20191111" Label "11/11/2019" Lastuse 20201216 SourceValue "20191111"
  3470. Date 20191111 Filtered False Suppressed False Sign False HideValue False
  3471. IsKeyOrphanage False IsTruncated False Blanks False
  3472. Category 1026123 "20191112" Parent 1026099 Levels 699 OrderBy Drill 675
  3473. Value "20191112" Label "12/11/2019" Lastuse 20201216 SourceValue "20191112"
  3474. Date 20191112 Filtered False Suppressed False Sign False HideValue False
  3475. IsKeyOrphanage False IsTruncated False Blanks False
  3476. Category 1026125 "20191113" Parent 1026099 Levels 699 OrderBy Drill 675
  3477. Value "20191113" Label "13/11/2019" Lastuse 20201216 SourceValue "20191113"
  3478. Date 20191113 Filtered False Suppressed False Sign False HideValue False
  3479. IsKeyOrphanage False IsTruncated False Blanks False
  3480. Category 1026127 "20191114" Parent 1026099 Levels 699 OrderBy Drill 675
  3481. Value "20191114" Label "14/11/2019" Lastuse 20201216 SourceValue "20191114"
  3482. Date 20191114 Filtered False Suppressed False Sign False HideValue False
  3483. IsKeyOrphanage False IsTruncated False Blanks False
  3484. Category 1026129 "20191115" Parent 1026099 Levels 699 OrderBy Drill 675
  3485. Value "20191115" Label "15/11/2019" Lastuse 20201216 SourceValue "20191115"
  3486. Date 20191115 Filtered False Suppressed False Sign False HideValue False
  3487. IsKeyOrphanage False IsTruncated False Blanks False
  3488. Category 1026131 "20191116" Parent 1026099 Levels 699 OrderBy Drill 675
  3489. Value "20191116" Label "16/11/2019" Lastuse 20201216 SourceValue "20191116"
  3490. Date 20191116 Filtered False Suppressed False Sign False HideValue False
  3491. IsKeyOrphanage False IsTruncated False Blanks False
  3492. Category 1026133 "20191117" Parent 1026099 Levels 699 OrderBy Drill 675
  3493. Value "20191117" Label "17/11/2019" Lastuse 20201216 SourceValue "20191117"
  3494. Date 20191117 Filtered False Suppressed False Sign False HideValue False
  3495. IsKeyOrphanage False IsTruncated False Blanks False
  3496. Category 1026135 "20191118" Parent 1026099 Levels 699 OrderBy Drill 675
  3497. Value "20191118" Label "18/11/2019" Lastuse 20201216 SourceValue "20191118"
  3498. Date 20191118 Filtered False Suppressed False Sign False HideValue False
  3499. IsKeyOrphanage False IsTruncated False Blanks False
  3500. Category 1026137 "20191119" Parent 1026099 Levels 699 OrderBy Drill 675
  3501. Value "20191119" Label "19/11/2019" Lastuse 20201216 SourceValue "20191119"
  3502. Date 20191119 Filtered False Suppressed False Sign False HideValue False
  3503. IsKeyOrphanage False IsTruncated False Blanks False
  3504. Category 1026139 "20191120" Parent 1026099 Levels 699 OrderBy Drill 675
  3505. Value "20191120" Label "20/11/2019" Lastuse 20201216 SourceValue "20191120"
  3506. Date 20191120 Filtered False Suppressed False Sign False HideValue False
  3507. IsKeyOrphanage False IsTruncated False Blanks False
  3508. Category 1026141 "20191121" Parent 1026099 Levels 699 OrderBy Drill 675
  3509. Value "20191121" Label "21/11/2019" Lastuse 20201216 SourceValue "20191121"
  3510. Date 20191121 Filtered False Suppressed False Sign False HideValue False
  3511. IsKeyOrphanage False IsTruncated False Blanks False
  3512. Category 1026143 "20191122" Parent 1026099 Levels 699 OrderBy Drill 675
  3513. Value "20191122" Label "22/11/2019" Lastuse 20201216 SourceValue "20191122"
  3514. Date 20191122 Filtered False Suppressed False Sign False HideValue False
  3515. IsKeyOrphanage False IsTruncated False Blanks False
  3516. Category 1026145 "20191123" Parent 1026099 Levels 699 OrderBy Drill 675
  3517. Value "20191123" Label "23/11/2019" Lastuse 20201216 SourceValue "20191123"
  3518. Date 20191123 Filtered False Suppressed False Sign False HideValue False
  3519. IsKeyOrphanage False IsTruncated False Blanks False
  3520. Category 1026147 "20191124" Parent 1026099 Levels 699 OrderBy Drill 675
  3521. Value "20191124" Label "24/11/2019" Lastuse 20201216 SourceValue "20191124"
  3522. Date 20191124 Filtered False Suppressed False Sign False HideValue False
  3523. IsKeyOrphanage False IsTruncated False Blanks False
  3524. Category 1026149 "20191125" Parent 1026099 Levels 699 OrderBy Drill 675
  3525. Value "20191125" Label "25/11/2019" Lastuse 20201216 SourceValue "20191125"
  3526. Date 20191125 Filtered False Suppressed False Sign False HideValue False
  3527. IsKeyOrphanage False IsTruncated False Blanks False
  3528. Category 1026151 "20191126" Parent 1026099 Levels 699 OrderBy Drill 675
  3529. Value "20191126" Label "26/11/2019" Lastuse 20201216 SourceValue "20191126"
  3530. Date 20191126 Filtered False Suppressed False Sign False HideValue False
  3531. IsKeyOrphanage False IsTruncated False Blanks False
  3532. Category 1026153 "20191127" Parent 1026099 Levels 699 OrderBy Drill 675
  3533. Value "20191127" Label "27/11/2019" Lastuse 20201216 SourceValue "20191127"
  3534. Date 20191127 Filtered False Suppressed False Sign False HideValue False
  3535. IsKeyOrphanage False IsTruncated False Blanks False
  3536. Category 1026155 "20191128" Parent 1026099 Levels 699 OrderBy Drill 675
  3537. Value "20191128" Label "28/11/2019" Lastuse 20201216 SourceValue "20191128"
  3538. Date 20191128 Filtered False Suppressed False Sign False HideValue False
  3539. IsKeyOrphanage False IsTruncated False Blanks False
  3540. Category 1026157 "20191129" Parent 1026099 Levels 699 OrderBy Drill 675
  3541. Value "20191129" Label "29/11/2019" Lastuse 20201216 SourceValue "20191129"
  3542. Date 20191129 Filtered False Suppressed False Sign False HideValue False
  3543. IsKeyOrphanage False IsTruncated False Blanks False
  3544. Category 1026159 "20191130" Parent 1026099 Levels 699 OrderBy Drill 675
  3545. Value "20191130" Label "30/11/2019" Lastuse 20201216 SourceValue "20191130"
  3546. Date 20191130 Filtered False Suppressed False Sign False HideValue False
  3547. IsKeyOrphanage False IsTruncated False Blanks False
  3548. Category 1033207 "20191201-20191231" Parent 1026097 Levels 693 OrderBy Drill 675
  3549. Value "201912" Label "Dez./2019" Lastuse 20201216 SourceValue "201912"
  3550. Date 20191201 Filtered False Suppressed False Sign False HideValue False
  3551. IsKeyOrphanage False IsTruncated False Blanks False
  3552. Category 1033209 "20191201" Parent 1033207 Levels 699 OrderBy Drill 675
  3553. Value "20191201" Label "01/12/2019" Lastuse 20201216 SourceValue "20191201"
  3554. Date 20191201 Filtered False Suppressed False Sign False HideValue False
  3555. IsKeyOrphanage False IsTruncated False Blanks False
  3556. Category 1033211 "20191202" Parent 1033207 Levels 699 OrderBy Drill 675
  3557. Value "20191202" Label "02/12/2019" Lastuse 20201216 SourceValue "20191202"
  3558. Date 20191202 Filtered False Suppressed False Sign False HideValue False
  3559. IsKeyOrphanage False IsTruncated False Blanks False
  3560. Category 1033213 "20191203" Parent 1033207 Levels 699 OrderBy Drill 675
  3561. Value "20191203" Label "03/12/2019" Lastuse 20201216 SourceValue "20191203"
  3562. Date 20191203 Filtered False Suppressed False Sign False HideValue False
  3563. IsKeyOrphanage False IsTruncated False Blanks False
  3564. Category 1033215 "20191204" Parent 1033207 Levels 699 OrderBy Drill 675
  3565. Value "20191204" Label "04/12/2019" Lastuse 20201216 SourceValue "20191204"
  3566. Date 20191204 Filtered False Suppressed False Sign False HideValue False
  3567. IsKeyOrphanage False IsTruncated False Blanks False
  3568. Category 1033217 "20191205" Parent 1033207 Levels 699 OrderBy Drill 675
  3569. Value "20191205" Label "05/12/2019" Lastuse 20201216 SourceValue "20191205"
  3570. Date 20191205 Filtered False Suppressed False Sign False HideValue False
  3571. IsKeyOrphanage False IsTruncated False Blanks False
  3572. Category 1033219 "20191206" Parent 1033207 Levels 699 OrderBy Drill 675
  3573. Value "20191206" Label "06/12/2019" Lastuse 20201216 SourceValue "20191206"
  3574. Date 20191206 Filtered False Suppressed False Sign False HideValue False
  3575. IsKeyOrphanage False IsTruncated False Blanks False
  3576. Category 1033221 "20191207" Parent 1033207 Levels 699 OrderBy Drill 675
  3577. Value "20191207" Label "07/12/2019" Lastuse 20201216 SourceValue "20191207"
  3578. Date 20191207 Filtered False Suppressed False Sign False HideValue False
  3579. IsKeyOrphanage False IsTruncated False Blanks False
  3580. Category 1033223 "20191208" Parent 1033207 Levels 699 OrderBy Drill 675
  3581. Value "20191208" Label "08/12/2019" Lastuse 20201216 SourceValue "20191208"
  3582. Date 20191208 Filtered False Suppressed False Sign False HideValue False
  3583. IsKeyOrphanage False IsTruncated False Blanks False
  3584. Category 1033225 "20191209" Parent 1033207 Levels 699 OrderBy Drill 675
  3585. Value "20191209" Label "09/12/2019" Lastuse 20201216 SourceValue "20191209"
  3586. Date 20191209 Filtered False Suppressed False Sign False HideValue False
  3587. IsKeyOrphanage False IsTruncated False Blanks False
  3588. Category 1033227 "20191210" Parent 1033207 Levels 699 OrderBy Drill 675
  3589. Value "20191210" Label "10/12/2019" Lastuse 20201216 SourceValue "20191210"
  3590. Date 20191210 Filtered False Suppressed False Sign False HideValue False
  3591. IsKeyOrphanage False IsTruncated False Blanks False
  3592. Category 1033229 "20191211" Parent 1033207 Levels 699 OrderBy Drill 675
  3593. Value "20191211" Label "11/12/2019" Lastuse 20201216 SourceValue "20191211"
  3594. Date 20191211 Filtered False Suppressed False Sign False HideValue False
  3595. IsKeyOrphanage False IsTruncated False Blanks False
  3596. Category 1033231 "20191212" Parent 1033207 Levels 699 OrderBy Drill 675
  3597. Value "20191212" Label "12/12/2019" Lastuse 20201216 SourceValue "20191212"
  3598. Date 20191212 Filtered False Suppressed False Sign False HideValue False
  3599. IsKeyOrphanage False IsTruncated False Blanks False
  3600. Category 1033233 "20191213" Parent 1033207 Levels 699 OrderBy Drill 675
  3601. Value "20191213" Label "13/12/2019" Lastuse 20201216 SourceValue "20191213"
  3602. Date 20191213 Filtered False Suppressed False Sign False HideValue False
  3603. IsKeyOrphanage False IsTruncated False Blanks False
  3604. Category 1033235 "20191214" Parent 1033207 Levels 699 OrderBy Drill 675
  3605. Value "20191214" Label "14/12/2019" Lastuse 20201216 SourceValue "20191214"
  3606. Date 20191214 Filtered False Suppressed False Sign False HideValue False
  3607. IsKeyOrphanage False IsTruncated False Blanks False
  3608. Category 1033237 "20191215" Parent 1033207 Levels 699 OrderBy Drill 675
  3609. Value "20191215" Label "15/12/2019" Lastuse 20201216 SourceValue "20191215"
  3610. Date 20191215 Filtered False Suppressed False Sign False HideValue False
  3611. IsKeyOrphanage False IsTruncated False Blanks False
  3612. Category 1033239 "20191216" Parent 1033207 Levels 699 OrderBy Drill 675
  3613. Value "20191216" Label "16/12/2019" Lastuse 20201216 SourceValue "20191216"
  3614. Date 20191216 Filtered False Suppressed False Sign False HideValue False
  3615. IsKeyOrphanage False IsTruncated False Blanks False
  3616. Category 1033241 "20191217" Parent 1033207 Levels 699 OrderBy Drill 675
  3617. Value "20191217" Label "17/12/2019" Lastuse 20201216 SourceValue "20191217"
  3618. Date 20191217 Filtered False Suppressed False Sign False HideValue False
  3619. IsKeyOrphanage False IsTruncated False Blanks False
  3620. Category 1033243 "20191218" Parent 1033207 Levels 699 OrderBy Drill 675
  3621. Value "20191218" Label "18/12/2019" Lastuse 20201216 SourceValue "20191218"
  3622. Date 20191218 Filtered False Suppressed False Sign False HideValue False
  3623. IsKeyOrphanage False IsTruncated False Blanks False
  3624. Category 1033245 "20191219" Parent 1033207 Levels 699 OrderBy Drill 675
  3625. Value "20191219" Label "19/12/2019" Lastuse 20201216 SourceValue "20191219"
  3626. Date 20191219 Filtered False Suppressed False Sign False HideValue False
  3627. IsKeyOrphanage False IsTruncated False Blanks False
  3628. Category 1033247 "20191220" Parent 1033207 Levels 699 OrderBy Drill 675
  3629. Value "20191220" Label "20/12/2019" Lastuse 20201216 SourceValue "20191220"
  3630. Date 20191220 Filtered False Suppressed False Sign False HideValue False
  3631. IsKeyOrphanage False IsTruncated False Blanks False
  3632. Category 1033249 "20191221" Parent 1033207 Levels 699 OrderBy Drill 675
  3633. Value "20191221" Label "21/12/2019" Lastuse 20201216 SourceValue "20191221"
  3634. Date 20191221 Filtered False Suppressed False Sign False HideValue False
  3635. IsKeyOrphanage False IsTruncated False Blanks False
  3636. Category 1033251 "20191222" Parent 1033207 Levels 699 OrderBy Drill 675
  3637. Value "20191222" Label "22/12/2019" Lastuse 20201216 SourceValue "20191222"
  3638. Date 20191222 Filtered False Suppressed False Sign False HideValue False
  3639. IsKeyOrphanage False IsTruncated False Blanks False
  3640. Category 1033253 "20191223" Parent 1033207 Levels 699 OrderBy Drill 675
  3641. Value "20191223" Label "23/12/2019" Lastuse 20201216 SourceValue "20191223"
  3642. Date 20191223 Filtered False Suppressed False Sign False HideValue False
  3643. IsKeyOrphanage False IsTruncated False Blanks False
  3644. Category 1033255 "20191224" Parent 1033207 Levels 699 OrderBy Drill 675
  3645. Value "20191224" Label "24/12/2019" Lastuse 20201216 SourceValue "20191224"
  3646. Date 20191224 Filtered False Suppressed False Sign False HideValue False
  3647. IsKeyOrphanage False IsTruncated False Blanks False
  3648. Category 1033257 "20191225" Parent 1033207 Levels 699 OrderBy Drill 675
  3649. Value "20191225" Label "25/12/2019" Lastuse 20201216 SourceValue "20191225"
  3650. Date 20191225 Filtered False Suppressed False Sign False HideValue False
  3651. IsKeyOrphanage False IsTruncated False Blanks False
  3652. Category 1033259 "20191226" Parent 1033207 Levels 699 OrderBy Drill 675
  3653. Value "20191226" Label "26/12/2019" Lastuse 20201216 SourceValue "20191226"
  3654. Date 20191226 Filtered False Suppressed False Sign False HideValue False
  3655. IsKeyOrphanage False IsTruncated False Blanks False
  3656. Category 1033261 "20191227" Parent 1033207 Levels 699 OrderBy Drill 675
  3657. Value "20191227" Label "27/12/2019" Lastuse 20201216 SourceValue "20191227"
  3658. Date 20191227 Filtered False Suppressed False Sign False HideValue False
  3659. IsKeyOrphanage False IsTruncated False Blanks False
  3660. Category 1033263 "20191228" Parent 1033207 Levels 699 OrderBy Drill 675
  3661. Value "20191228" Label "28/12/2019" Lastuse 20201216 SourceValue "20191228"
  3662. Date 20191228 Filtered False Suppressed False Sign False HideValue False
  3663. IsKeyOrphanage False IsTruncated False Blanks False
  3664. Category 1033265 "20191229" Parent 1033207 Levels 699 OrderBy Drill 675
  3665. Value "20191229" Label "29/12/2019" Lastuse 20201216 SourceValue "20191229"
  3666. Date 20191229 Filtered False Suppressed False Sign False HideValue False
  3667. IsKeyOrphanage False IsTruncated False Blanks False
  3668. Category 1033267 "20191230" Parent 1033207 Levels 699 OrderBy Drill 675
  3669. Value "20191230" Label "30/12/2019" Lastuse 20201216 SourceValue "20191230"
  3670. Date 20191230 Filtered False Suppressed False Sign False HideValue False
  3671. IsKeyOrphanage False IsTruncated False Blanks False
  3672. Category 1033269 "20191231" Parent 1033207 Levels 699 OrderBy Drill 675
  3673. Value "20191231" Label "31/12/2019" Lastuse 20201216 SourceValue "20191231"
  3674. Date 20191231 Filtered False Suppressed False Sign False HideValue False
  3675. IsKeyOrphanage False IsTruncated False Blanks False
  3676. Category 1022161 "20200101-20201231" Parent 675 Levels 681 OrderBy Drill 675
  3677. Value "2020" Label "2020" Lastuse 20201216 SourceValue "2020" Date 20200101
  3678. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  3679. IsTruncated False Blanks False
  3680. Category 1022163 "20200101-20200331" Parent 1022161 Levels 687 OrderBy Drill 675
  3681. Value "20200101" Label "1. Q. 2020" Lastuse 20201216 SourceValue "20200101"
  3682. Date 20200101 Filtered False Suppressed False Sign False HideValue False
  3683. IsKeyOrphanage False IsTruncated False Blanks False
  3684. Category 1022165 "20200101-20200131" Parent 1022163 Levels 693 OrderBy Drill 675
  3685. Value "202001" Label "Jan./2020" Lastuse 20201216 SourceValue "202001"
  3686. Date 20200101 Filtered False Suppressed False Sign False HideValue False
  3687. IsKeyOrphanage False IsTruncated False Blanks False
  3688. Category 1022167 "20200101" Parent 1022165 Levels 699 OrderBy Drill 675
  3689. Value "20200101" Label "01/01/2020" Lastuse 20201216 SourceValue "20200101"
  3690. Date 20200101 Filtered False Suppressed False Sign False HideValue False
  3691. IsKeyOrphanage False IsTruncated False Blanks False
  3692. Category 1022169 "20200102" Parent 1022165 Levels 699 OrderBy Drill 675
  3693. Value "20200102" Label "02/01/2020" Lastuse 20201216 SourceValue "20200102"
  3694. Date 20200102 Filtered False Suppressed False Sign False HideValue False
  3695. IsKeyOrphanage False IsTruncated False Blanks False
  3696. Category 1022171 "20200103" Parent 1022165 Levels 699 OrderBy Drill 675
  3697. Value "20200103" Label "03/01/2020" Lastuse 20201216 SourceValue "20200103"
  3698. Date 20200103 Filtered False Suppressed False Sign False HideValue False
  3699. IsKeyOrphanage False IsTruncated False Blanks False
  3700. Category 1022173 "20200104" Parent 1022165 Levels 699 OrderBy Drill 675
  3701. Value "20200104" Label "04/01/2020" Lastuse 20201216 SourceValue "20200104"
  3702. Date 20200104 Filtered False Suppressed False Sign False HideValue False
  3703. IsKeyOrphanage False IsTruncated False Blanks False
  3704. Category 1022175 "20200105" Parent 1022165 Levels 699 OrderBy Drill 675
  3705. Value "20200105" Label "05/01/2020" Lastuse 20201216 SourceValue "20200105"
  3706. Date 20200105 Filtered False Suppressed False Sign False HideValue False
  3707. IsKeyOrphanage False IsTruncated False Blanks False
  3708. Category 1022177 "20200106" Parent 1022165 Levels 699 OrderBy Drill 675
  3709. Value "20200106" Label "06/01/2020" Lastuse 20201216 SourceValue "20200106"
  3710. Date 20200106 Filtered False Suppressed False Sign False HideValue False
  3711. IsKeyOrphanage False IsTruncated False Blanks False
  3712. Category 1022179 "20200107" Parent 1022165 Levels 699 OrderBy Drill 675
  3713. Value "20200107" Label "07/01/2020" Lastuse 20201216 SourceValue "20200107"
  3714. Date 20200107 Filtered False Suppressed False Sign False HideValue False
  3715. IsKeyOrphanage False IsTruncated False Blanks False
  3716. Category 1022181 "20200108" Parent 1022165 Levels 699 OrderBy Drill 675
  3717. Value "20200108" Label "08/01/2020" Lastuse 20201216 SourceValue "20200108"
  3718. Date 20200108 Filtered False Suppressed False Sign False HideValue False
  3719. IsKeyOrphanage False IsTruncated False Blanks False
  3720. Category 1022183 "20200109" Parent 1022165 Levels 699 OrderBy Drill 675
  3721. Value "20200109" Label "09/01/2020" Lastuse 20201216 SourceValue "20200109"
  3722. Date 20200109 Filtered False Suppressed False Sign False HideValue False
  3723. IsKeyOrphanage False IsTruncated False Blanks False
  3724. Category 1022185 "20200110" Parent 1022165 Levels 699 OrderBy Drill 675
  3725. Value "20200110" Label "10/01/2020" Lastuse 20201216 SourceValue "20200110"
  3726. Date 20200110 Filtered False Suppressed False Sign False HideValue False
  3727. IsKeyOrphanage False IsTruncated False Blanks False
  3728. Category 1022187 "20200111" Parent 1022165 Levels 699 OrderBy Drill 675
  3729. Value "20200111" Label "11/01/2020" Lastuse 20201216 SourceValue "20200111"
  3730. Date 20200111 Filtered False Suppressed False Sign False HideValue False
  3731. IsKeyOrphanage False IsTruncated False Blanks False
  3732. Category 1022189 "20200112" Parent 1022165 Levels 699 OrderBy Drill 675
  3733. Value "20200112" Label "12/01/2020" Lastuse 20201216 SourceValue "20200112"
  3734. Date 20200112 Filtered False Suppressed False Sign False HideValue False
  3735. IsKeyOrphanage False IsTruncated False Blanks False
  3736. Category 1022191 "20200113" Parent 1022165 Levels 699 OrderBy Drill 675
  3737. Value "20200113" Label "13/01/2020" Lastuse 20201216 SourceValue "20200113"
  3738. Date 20200113 Filtered False Suppressed False Sign False HideValue False
  3739. IsKeyOrphanage False IsTruncated False Blanks False
  3740. Category 1022193 "20200114" Parent 1022165 Levels 699 OrderBy Drill 675
  3741. Value "20200114" Label "14/01/2020" Lastuse 20201216 SourceValue "20200114"
  3742. Date 20200114 Filtered False Suppressed False Sign False HideValue False
  3743. IsKeyOrphanage False IsTruncated False Blanks False
  3744. Category 1022195 "20200115" Parent 1022165 Levels 699 OrderBy Drill 675
  3745. Value "20200115" Label "15/01/2020" Lastuse 20201216 SourceValue "20200115"
  3746. Date 20200115 Filtered False Suppressed False Sign False HideValue False
  3747. IsKeyOrphanage False IsTruncated False Blanks False
  3748. Category 1022197 "20200116" Parent 1022165 Levels 699 OrderBy Drill 675
  3749. Value "20200116" Label "16/01/2020" Lastuse 20201216 SourceValue "20200116"
  3750. Date 20200116 Filtered False Suppressed False Sign False HideValue False
  3751. IsKeyOrphanage False IsTruncated False Blanks False
  3752. Category 1022199 "20200117" Parent 1022165 Levels 699 OrderBy Drill 675
  3753. Value "20200117" Label "17/01/2020" Lastuse 20201216 SourceValue "20200117"
  3754. Date 20200117 Filtered False Suppressed False Sign False HideValue False
  3755. IsKeyOrphanage False IsTruncated False Blanks False
  3756. Category 1022201 "20200118" Parent 1022165 Levels 699 OrderBy Drill 675
  3757. Value "20200118" Label "18/01/2020" Lastuse 20201216 SourceValue "20200118"
  3758. Date 20200118 Filtered False Suppressed False Sign False HideValue False
  3759. IsKeyOrphanage False IsTruncated False Blanks False
  3760. Category 1022203 "20200119" Parent 1022165 Levels 699 OrderBy Drill 675
  3761. Value "20200119" Label "19/01/2020" Lastuse 20201216 SourceValue "20200119"
  3762. Date 20200119 Filtered False Suppressed False Sign False HideValue False
  3763. IsKeyOrphanage False IsTruncated False Blanks False
  3764. Category 1022205 "20200120" Parent 1022165 Levels 699 OrderBy Drill 675
  3765. Value "20200120" Label "20/01/2020" Lastuse 20201216 SourceValue "20200120"
  3766. Date 20200120 Filtered False Suppressed False Sign False HideValue False
  3767. IsKeyOrphanage False IsTruncated False Blanks False
  3768. Category 1022207 "20200121" Parent 1022165 Levels 699 OrderBy Drill 675
  3769. Value "20200121" Label "21/01/2020" Lastuse 20201216 SourceValue "20200121"
  3770. Date 20200121 Filtered False Suppressed False Sign False HideValue False
  3771. IsKeyOrphanage False IsTruncated False Blanks False
  3772. Category 1022209 "20200122" Parent 1022165 Levels 699 OrderBy Drill 675
  3773. Value "20200122" Label "22/01/2020" Lastuse 20201216 SourceValue "20200122"
  3774. Date 20200122 Filtered False Suppressed False Sign False HideValue False
  3775. IsKeyOrphanage False IsTruncated False Blanks False
  3776. Category 1022211 "20200123" Parent 1022165 Levels 699 OrderBy Drill 675
  3777. Value "20200123" Label "23/01/2020" Lastuse 20201216 SourceValue "20200123"
  3778. Date 20200123 Filtered False Suppressed False Sign False HideValue False
  3779. IsKeyOrphanage False IsTruncated False Blanks False
  3780. Category 1022213 "20200124" Parent 1022165 Levels 699 OrderBy Drill 675
  3781. Value "20200124" Label "24/01/2020" Lastuse 20201216 SourceValue "20200124"
  3782. Date 20200124 Filtered False Suppressed False Sign False HideValue False
  3783. IsKeyOrphanage False IsTruncated False Blanks False
  3784. Category 1022215 "20200125" Parent 1022165 Levels 699 OrderBy Drill 675
  3785. Value "20200125" Label "25/01/2020" Lastuse 20201216 SourceValue "20200125"
  3786. Date 20200125 Filtered False Suppressed False Sign False HideValue False
  3787. IsKeyOrphanage False IsTruncated False Blanks False
  3788. Category 1022217 "20200126" Parent 1022165 Levels 699 OrderBy Drill 675
  3789. Value "20200126" Label "26/01/2020" Lastuse 20201216 SourceValue "20200126"
  3790. Date 20200126 Filtered False Suppressed False Sign False HideValue False
  3791. IsKeyOrphanage False IsTruncated False Blanks False
  3792. Category 1022219 "20200127" Parent 1022165 Levels 699 OrderBy Drill 675
  3793. Value "20200127" Label "27/01/2020" Lastuse 20201216 SourceValue "20200127"
  3794. Date 20200127 Filtered False Suppressed False Sign False HideValue False
  3795. IsKeyOrphanage False IsTruncated False Blanks False
  3796. Category 1022221 "20200128" Parent 1022165 Levels 699 OrderBy Drill 675
  3797. Value "20200128" Label "28/01/2020" Lastuse 20201216 SourceValue "20200128"
  3798. Date 20200128 Filtered False Suppressed False Sign False HideValue False
  3799. IsKeyOrphanage False IsTruncated False Blanks False
  3800. Category 1022223 "20200129" Parent 1022165 Levels 699 OrderBy Drill 675
  3801. Value "20200129" Label "29/01/2020" Lastuse 20201216 SourceValue "20200129"
  3802. Date 20200129 Filtered False Suppressed False Sign False HideValue False
  3803. IsKeyOrphanage False IsTruncated False Blanks False
  3804. Category 1022225 "20200130" Parent 1022165 Levels 699 OrderBy Drill 675
  3805. Value "20200130" Label "30/01/2020" Lastuse 20201216 SourceValue "20200130"
  3806. Date 20200130 Filtered False Suppressed False Sign False HideValue False
  3807. IsKeyOrphanage False IsTruncated False Blanks False
  3808. Category 1022227 "20200131" Parent 1022165 Levels 699 OrderBy Drill 675
  3809. Value "20200131" Label "31/01/2020" Lastuse 20201216 SourceValue "20200131"
  3810. Date 20200131 Filtered False Suppressed False Sign False HideValue False
  3811. IsKeyOrphanage False IsTruncated False Blanks False
  3812. Category 1022229 "20200201-20200229" Parent 1022163 Levels 693 OrderBy Drill 675
  3813. Value "202002" Label "Feb./2020" Lastuse 20201216 SourceValue "202002"
  3814. Date 20200201 Filtered False Suppressed False Sign False HideValue False
  3815. IsKeyOrphanage False IsTruncated False Blanks False
  3816. Category 1022231 "20200201" Parent 1022229 Levels 699 OrderBy Drill 675
  3817. Value "20200201" Label "01/02/2020" Lastuse 20201216 SourceValue "20200201"
  3818. Date 20200201 Filtered False Suppressed False Sign False HideValue False
  3819. IsKeyOrphanage False IsTruncated False Blanks False
  3820. Category 1022233 "20200202" Parent 1022229 Levels 699 OrderBy Drill 675
  3821. Value "20200202" Label "02/02/2020" Lastuse 20201216 SourceValue "20200202"
  3822. Date 20200202 Filtered False Suppressed False Sign False HideValue False
  3823. IsKeyOrphanage False IsTruncated False Blanks False
  3824. Category 1022235 "20200203" Parent 1022229 Levels 699 OrderBy Drill 675
  3825. Value "20200203" Label "03/02/2020" Lastuse 20201216 SourceValue "20200203"
  3826. Date 20200203 Filtered False Suppressed False Sign False HideValue False
  3827. IsKeyOrphanage False IsTruncated False Blanks False
  3828. Category 1022237 "20200204" Parent 1022229 Levels 699 OrderBy Drill 675
  3829. Value "20200204" Label "04/02/2020" Lastuse 20201216 SourceValue "20200204"
  3830. Date 20200204 Filtered False Suppressed False Sign False HideValue False
  3831. IsKeyOrphanage False IsTruncated False Blanks False
  3832. Category 1022239 "20200205" Parent 1022229 Levels 699 OrderBy Drill 675
  3833. Value "20200205" Label "05/02/2020" Lastuse 20201216 SourceValue "20200205"
  3834. Date 20200205 Filtered False Suppressed False Sign False HideValue False
  3835. IsKeyOrphanage False IsTruncated False Blanks False
  3836. Category 1022241 "20200206" Parent 1022229 Levels 699 OrderBy Drill 675
  3837. Value "20200206" Label "06/02/2020" Lastuse 20201216 SourceValue "20200206"
  3838. Date 20200206 Filtered False Suppressed False Sign False HideValue False
  3839. IsKeyOrphanage False IsTruncated False Blanks False
  3840. Category 1022243 "20200207" Parent 1022229 Levels 699 OrderBy Drill 675
  3841. Value "20200207" Label "07/02/2020" Lastuse 20201216 SourceValue "20200207"
  3842. Date 20200207 Filtered False Suppressed False Sign False HideValue False
  3843. IsKeyOrphanage False IsTruncated False Blanks False
  3844. Category 1022245 "20200208" Parent 1022229 Levels 699 OrderBy Drill 675
  3845. Value "20200208" Label "08/02/2020" Lastuse 20201216 SourceValue "20200208"
  3846. Date 20200208 Filtered False Suppressed False Sign False HideValue False
  3847. IsKeyOrphanage False IsTruncated False Blanks False
  3848. Category 1022247 "20200209" Parent 1022229 Levels 699 OrderBy Drill 675
  3849. Value "20200209" Label "09/02/2020" Lastuse 20201216 SourceValue "20200209"
  3850. Date 20200209 Filtered False Suppressed False Sign False HideValue False
  3851. IsKeyOrphanage False IsTruncated False Blanks False
  3852. Category 1022249 "20200210" Parent 1022229 Levels 699 OrderBy Drill 675
  3853. Value "20200210" Label "10/02/2020" Lastuse 20201216 SourceValue "20200210"
  3854. Date 20200210 Filtered False Suppressed False Sign False HideValue False
  3855. IsKeyOrphanage False IsTruncated False Blanks False
  3856. Category 1022251 "20200211" Parent 1022229 Levels 699 OrderBy Drill 675
  3857. Value "20200211" Label "11/02/2020" Lastuse 20201216 SourceValue "20200211"
  3858. Date 20200211 Filtered False Suppressed False Sign False HideValue False
  3859. IsKeyOrphanage False IsTruncated False Blanks False
  3860. Category 1022253 "20200212" Parent 1022229 Levels 699 OrderBy Drill 675
  3861. Value "20200212" Label "12/02/2020" Lastuse 20201216 SourceValue "20200212"
  3862. Date 20200212 Filtered False Suppressed False Sign False HideValue False
  3863. IsKeyOrphanage False IsTruncated False Blanks False
  3864. Category 1022255 "20200213" Parent 1022229 Levels 699 OrderBy Drill 675
  3865. Value "20200213" Label "13/02/2020" Lastuse 20201216 SourceValue "20200213"
  3866. Date 20200213 Filtered False Suppressed False Sign False HideValue False
  3867. IsKeyOrphanage False IsTruncated False Blanks False
  3868. Category 1022257 "20200214" Parent 1022229 Levels 699 OrderBy Drill 675
  3869. Value "20200214" Label "14/02/2020" Lastuse 20201216 SourceValue "20200214"
  3870. Date 20200214 Filtered False Suppressed False Sign False HideValue False
  3871. IsKeyOrphanage False IsTruncated False Blanks False
  3872. Category 1022259 "20200215" Parent 1022229 Levels 699 OrderBy Drill 675
  3873. Value "20200215" Label "15/02/2020" Lastuse 20201216 SourceValue "20200215"
  3874. Date 20200215 Filtered False Suppressed False Sign False HideValue False
  3875. IsKeyOrphanage False IsTruncated False Blanks False
  3876. Category 1022261 "20200216" Parent 1022229 Levels 699 OrderBy Drill 675
  3877. Value "20200216" Label "16/02/2020" Lastuse 20201216 SourceValue "20200216"
  3878. Date 20200216 Filtered False Suppressed False Sign False HideValue False
  3879. IsKeyOrphanage False IsTruncated False Blanks False
  3880. Category 1022263 "20200217" Parent 1022229 Levels 699 OrderBy Drill 675
  3881. Value "20200217" Label "17/02/2020" Lastuse 20201216 SourceValue "20200217"
  3882. Date 20200217 Filtered False Suppressed False Sign False HideValue False
  3883. IsKeyOrphanage False IsTruncated False Blanks False
  3884. Category 1022265 "20200218" Parent 1022229 Levels 699 OrderBy Drill 675
  3885. Value "20200218" Label "18/02/2020" Lastuse 20201216 SourceValue "20200218"
  3886. Date 20200218 Filtered False Suppressed False Sign False HideValue False
  3887. IsKeyOrphanage False IsTruncated False Blanks False
  3888. Category 1022267 "20200219" Parent 1022229 Levels 699 OrderBy Drill 675
  3889. Value "20200219" Label "19/02/2020" Lastuse 20201216 SourceValue "20200219"
  3890. Date 20200219 Filtered False Suppressed False Sign False HideValue False
  3891. IsKeyOrphanage False IsTruncated False Blanks False
  3892. Category 1022269 "20200220" Parent 1022229 Levels 699 OrderBy Drill 675
  3893. Value "20200220" Label "20/02/2020" Lastuse 20201216 SourceValue "20200220"
  3894. Date 20200220 Filtered False Suppressed False Sign False HideValue False
  3895. IsKeyOrphanage False IsTruncated False Blanks False
  3896. Category 1022271 "20200221" Parent 1022229 Levels 699 OrderBy Drill 675
  3897. Value "20200221" Label "21/02/2020" Lastuse 20201216 SourceValue "20200221"
  3898. Date 20200221 Filtered False Suppressed False Sign False HideValue False
  3899. IsKeyOrphanage False IsTruncated False Blanks False
  3900. Category 1022273 "20200222" Parent 1022229 Levels 699 OrderBy Drill 675
  3901. Value "20200222" Label "22/02/2020" Lastuse 20201216 SourceValue "20200222"
  3902. Date 20200222 Filtered False Suppressed False Sign False HideValue False
  3903. IsKeyOrphanage False IsTruncated False Blanks False
  3904. Category 1022275 "20200223" Parent 1022229 Levels 699 OrderBy Drill 675
  3905. Value "20200223" Label "23/02/2020" Lastuse 20201216 SourceValue "20200223"
  3906. Date 20200223 Filtered False Suppressed False Sign False HideValue False
  3907. IsKeyOrphanage False IsTruncated False Blanks False
  3908. Category 1022277 "20200224" Parent 1022229 Levels 699 OrderBy Drill 675
  3909. Value "20200224" Label "24/02/2020" Lastuse 20201216 SourceValue "20200224"
  3910. Date 20200224 Filtered False Suppressed False Sign False HideValue False
  3911. IsKeyOrphanage False IsTruncated False Blanks False
  3912. Category 1022279 "20200225" Parent 1022229 Levels 699 OrderBy Drill 675
  3913. Value "20200225" Label "25/02/2020" Lastuse 20201216 SourceValue "20200225"
  3914. Date 20200225 Filtered False Suppressed False Sign False HideValue False
  3915. IsKeyOrphanage False IsTruncated False Blanks False
  3916. Category 1022281 "20200226" Parent 1022229 Levels 699 OrderBy Drill 675
  3917. Value "20200226" Label "26/02/2020" Lastuse 20201216 SourceValue "20200226"
  3918. Date 20200226 Filtered False Suppressed False Sign False HideValue False
  3919. IsKeyOrphanage False IsTruncated False Blanks False
  3920. Category 1022283 "20200227" Parent 1022229 Levels 699 OrderBy Drill 675
  3921. Value "20200227" Label "27/02/2020" Lastuse 20201216 SourceValue "20200227"
  3922. Date 20200227 Filtered False Suppressed False Sign False HideValue False
  3923. IsKeyOrphanage False IsTruncated False Blanks False
  3924. Category 1022285 "20200228" Parent 1022229 Levels 699 OrderBy Drill 675
  3925. Value "20200228" Label "28/02/2020" Lastuse 20201216 SourceValue "20200228"
  3926. Date 20200228 Filtered False Suppressed False Sign False HideValue False
  3927. IsKeyOrphanage False IsTruncated False Blanks False
  3928. Category 1022287 "20200229" Parent 1022229 Levels 699 OrderBy Drill 675
  3929. Value "20200229" Label "29/02/2020" Lastuse 20201216 SourceValue "20200229"
  3930. Date 20200229 Filtered False Suppressed False Sign False HideValue False
  3931. IsKeyOrphanage False IsTruncated False Blanks False
  3932. Category 1022289 "20200301-20200331" Parent 1022163 Levels 693 OrderBy Drill 675
  3933. Value "202003" Label "März/2020" Lastuse 20201216 SourceValue "202003"
  3934. Date 20200301 Filtered False Suppressed False Sign False HideValue False
  3935. IsKeyOrphanage False IsTruncated False Blanks False
  3936. Category 1022291 "20200301" Parent 1022289 Levels 699 OrderBy Drill 675
  3937. Value "20200301" Label "01/03/2020" Lastuse 20201216 SourceValue "20200301"
  3938. Date 20200301 Filtered False Suppressed False Sign False HideValue False
  3939. IsKeyOrphanage False IsTruncated False Blanks False
  3940. Category 1022293 "20200302" Parent 1022289 Levels 699 OrderBy Drill 675
  3941. Value "20200302" Label "02/03/2020" Lastuse 20201216 SourceValue "20200302"
  3942. Date 20200302 Filtered False Suppressed False Sign False HideValue False
  3943. IsKeyOrphanage False IsTruncated False Blanks False
  3944. Category 1022295 "20200303" Parent 1022289 Levels 699 OrderBy Drill 675
  3945. Value "20200303" Label "03/03/2020" Lastuse 20201216 SourceValue "20200303"
  3946. Date 20200303 Filtered False Suppressed False Sign False HideValue False
  3947. IsKeyOrphanage False IsTruncated False Blanks False
  3948. Category 1022297 "20200304" Parent 1022289 Levels 699 OrderBy Drill 675
  3949. Value "20200304" Label "04/03/2020" Lastuse 20201216 SourceValue "20200304"
  3950. Date 20200304 Filtered False Suppressed False Sign False HideValue False
  3951. IsKeyOrphanage False IsTruncated False Blanks False
  3952. Category 1022299 "20200305" Parent 1022289 Levels 699 OrderBy Drill 675
  3953. Value "20200305" Label "05/03/2020" Lastuse 20201216 SourceValue "20200305"
  3954. Date 20200305 Filtered False Suppressed False Sign False HideValue False
  3955. IsKeyOrphanage False IsTruncated False Blanks False
  3956. Category 1022301 "20200306" Parent 1022289 Levels 699 OrderBy Drill 675
  3957. Value "20200306" Label "06/03/2020" Lastuse 20201216 SourceValue "20200306"
  3958. Date 20200306 Filtered False Suppressed False Sign False HideValue False
  3959. IsKeyOrphanage False IsTruncated False Blanks False
  3960. Category 1022303 "20200307" Parent 1022289 Levels 699 OrderBy Drill 675
  3961. Value "20200307" Label "07/03/2020" Lastuse 20201216 SourceValue "20200307"
  3962. Date 20200307 Filtered False Suppressed False Sign False HideValue False
  3963. IsKeyOrphanage False IsTruncated False Blanks False
  3964. Category 1022305 "20200308" Parent 1022289 Levels 699 OrderBy Drill 675
  3965. Value "20200308" Label "08/03/2020" Lastuse 20201216 SourceValue "20200308"
  3966. Date 20200308 Filtered False Suppressed False Sign False HideValue False
  3967. IsKeyOrphanage False IsTruncated False Blanks False
  3968. Category 1022307 "20200309" Parent 1022289 Levels 699 OrderBy Drill 675
  3969. Value "20200309" Label "09/03/2020" Lastuse 20201216 SourceValue "20200309"
  3970. Date 20200309 Filtered False Suppressed False Sign False HideValue False
  3971. IsKeyOrphanage False IsTruncated False Blanks False
  3972. Category 1022309 "20200310" Parent 1022289 Levels 699 OrderBy Drill 675
  3973. Value "20200310" Label "10/03/2020" Lastuse 20201216 SourceValue "20200310"
  3974. Date 20200310 Filtered False Suppressed False Sign False HideValue False
  3975. IsKeyOrphanage False IsTruncated False Blanks False
  3976. Category 1022311 "20200311" Parent 1022289 Levels 699 OrderBy Drill 675
  3977. Value "20200311" Label "11/03/2020" Lastuse 20201216 SourceValue "20200311"
  3978. Date 20200311 Filtered False Suppressed False Sign False HideValue False
  3979. IsKeyOrphanage False IsTruncated False Blanks False
  3980. Category 1022313 "20200312" Parent 1022289 Levels 699 OrderBy Drill 675
  3981. Value "20200312" Label "12/03/2020" Lastuse 20201216 SourceValue "20200312"
  3982. Date 20200312 Filtered False Suppressed False Sign False HideValue False
  3983. IsKeyOrphanage False IsTruncated False Blanks False
  3984. Category 1022315 "20200313" Parent 1022289 Levels 699 OrderBy Drill 675
  3985. Value "20200313" Label "13/03/2020" Lastuse 20201216 SourceValue "20200313"
  3986. Date 20200313 Filtered False Suppressed False Sign False HideValue False
  3987. IsKeyOrphanage False IsTruncated False Blanks False
  3988. Category 1022317 "20200314" Parent 1022289 Levels 699 OrderBy Drill 675
  3989. Value "20200314" Label "14/03/2020" Lastuse 20201216 SourceValue "20200314"
  3990. Date 20200314 Filtered False Suppressed False Sign False HideValue False
  3991. IsKeyOrphanage False IsTruncated False Blanks False
  3992. Category 1022319 "20200315" Parent 1022289 Levels 699 OrderBy Drill 675
  3993. Value "20200315" Label "15/03/2020" Lastuse 20201216 SourceValue "20200315"
  3994. Date 20200315 Filtered False Suppressed False Sign False HideValue False
  3995. IsKeyOrphanage False IsTruncated False Blanks False
  3996. Category 1022321 "20200316" Parent 1022289 Levels 699 OrderBy Drill 675
  3997. Value "20200316" Label "16/03/2020" Lastuse 20201216 SourceValue "20200316"
  3998. Date 20200316 Filtered False Suppressed False Sign False HideValue False
  3999. IsKeyOrphanage False IsTruncated False Blanks False
  4000. Category 1022323 "20200317" Parent 1022289 Levels 699 OrderBy Drill 675
  4001. Value "20200317" Label "17/03/2020" Lastuse 20201216 SourceValue "20200317"
  4002. Date 20200317 Filtered False Suppressed False Sign False HideValue False
  4003. IsKeyOrphanage False IsTruncated False Blanks False
  4004. Category 1022325 "20200318" Parent 1022289 Levels 699 OrderBy Drill 675
  4005. Value "20200318" Label "18/03/2020" Lastuse 20201216 SourceValue "20200318"
  4006. Date 20200318 Filtered False Suppressed False Sign False HideValue False
  4007. IsKeyOrphanage False IsTruncated False Blanks False
  4008. Category 1022327 "20200319" Parent 1022289 Levels 699 OrderBy Drill 675
  4009. Value "20200319" Label "19/03/2020" Lastuse 20201216 SourceValue "20200319"
  4010. Date 20200319 Filtered False Suppressed False Sign False HideValue False
  4011. IsKeyOrphanage False IsTruncated False Blanks False
  4012. Category 1022329 "20200320" Parent 1022289 Levels 699 OrderBy Drill 675
  4013. Value "20200320" Label "20/03/2020" Lastuse 20201216 SourceValue "20200320"
  4014. Date 20200320 Filtered False Suppressed False Sign False HideValue False
  4015. IsKeyOrphanage False IsTruncated False Blanks False
  4016. Category 1022331 "20200321" Parent 1022289 Levels 699 OrderBy Drill 675
  4017. Value "20200321" Label "21/03/2020" Lastuse 20201216 SourceValue "20200321"
  4018. Date 20200321 Filtered False Suppressed False Sign False HideValue False
  4019. IsKeyOrphanage False IsTruncated False Blanks False
  4020. Category 1022333 "20200322" Parent 1022289 Levels 699 OrderBy Drill 675
  4021. Value "20200322" Label "22/03/2020" Lastuse 20201216 SourceValue "20200322"
  4022. Date 20200322 Filtered False Suppressed False Sign False HideValue False
  4023. IsKeyOrphanage False IsTruncated False Blanks False
  4024. Category 1022335 "20200323" Parent 1022289 Levels 699 OrderBy Drill 675
  4025. Value "20200323" Label "23/03/2020" Lastuse 20201216 SourceValue "20200323"
  4026. Date 20200323 Filtered False Suppressed False Sign False HideValue False
  4027. IsKeyOrphanage False IsTruncated False Blanks False
  4028. Category 1022337 "20200324" Parent 1022289 Levels 699 OrderBy Drill 675
  4029. Value "20200324" Label "24/03/2020" Lastuse 20201216 SourceValue "20200324"
  4030. Date 20200324 Filtered False Suppressed False Sign False HideValue False
  4031. IsKeyOrphanage False IsTruncated False Blanks False
  4032. Category 1022339 "20200325" Parent 1022289 Levels 699 OrderBy Drill 675
  4033. Value "20200325" Label "25/03/2020" Lastuse 20201216 SourceValue "20200325"
  4034. Date 20200325 Filtered False Suppressed False Sign False HideValue False
  4035. IsKeyOrphanage False IsTruncated False Blanks False
  4036. Category 1022341 "20200326" Parent 1022289 Levels 699 OrderBy Drill 675
  4037. Value "20200326" Label "26/03/2020" Lastuse 20201216 SourceValue "20200326"
  4038. Date 20200326 Filtered False Suppressed False Sign False HideValue False
  4039. IsKeyOrphanage False IsTruncated False Blanks False
  4040. Category 1022343 "20200327" Parent 1022289 Levels 699 OrderBy Drill 675
  4041. Value "20200327" Label "27/03/2020" Lastuse 20201216 SourceValue "20200327"
  4042. Date 20200327 Filtered False Suppressed False Sign False HideValue False
  4043. IsKeyOrphanage False IsTruncated False Blanks False
  4044. Category 1022345 "20200328" Parent 1022289 Levels 699 OrderBy Drill 675
  4045. Value "20200328" Label "28/03/2020" Lastuse 20201216 SourceValue "20200328"
  4046. Date 20200328 Filtered False Suppressed False Sign False HideValue False
  4047. IsKeyOrphanage False IsTruncated False Blanks False
  4048. Category 1022347 "20200329" Parent 1022289 Levels 699 OrderBy Drill 675
  4049. Value "20200329" Label "29/03/2020" Lastuse 20201216 SourceValue "20200329"
  4050. Date 20200329 Filtered False Suppressed False Sign False HideValue False
  4051. IsKeyOrphanage False IsTruncated False Blanks False
  4052. Category 1022349 "20200330" Parent 1022289 Levels 699 OrderBy Drill 675
  4053. Value "20200330" Label "30/03/2020" Lastuse 20201216 SourceValue "20200330"
  4054. Date 20200330 Filtered False Suppressed False Sign False HideValue False
  4055. IsKeyOrphanage False IsTruncated False Blanks False
  4056. Category 1022351 "20200331" Parent 1022289 Levels 699 OrderBy Drill 675
  4057. Value "20200331" Label "31/03/2020" Lastuse 20201216 SourceValue "20200331"
  4058. Date 20200331 Filtered False Suppressed False Sign False HideValue False
  4059. IsKeyOrphanage False IsTruncated False Blanks False
  4060. Category 1022353 "20200401-20200630" Parent 1022161 Levels 687 OrderBy Drill 675
  4061. Value "20200401" Label "2. Q. 2020" Lastuse 20201216 SourceValue "20200401"
  4062. Date 20200401 Filtered False Suppressed False Sign False HideValue False
  4063. IsKeyOrphanage False IsTruncated False Blanks False
  4064. Category 1022355 "20200401-20200430" Parent 1022353 Levels 693 OrderBy Drill 675
  4065. Value "202004" Label "Apr./2020" Lastuse 20201216 SourceValue "202004"
  4066. Date 20200401 Filtered False Suppressed False Sign False HideValue False
  4067. IsKeyOrphanage False IsTruncated False Blanks False
  4068. Category 1022357 "20200401" Parent 1022355 Levels 699 OrderBy Drill 675
  4069. Value "20200401" Label "01/04/2020" Lastuse 20201216 SourceValue "20200401"
  4070. Date 20200401 Filtered False Suppressed False Sign False HideValue False
  4071. IsKeyOrphanage False IsTruncated False Blanks False
  4072. Category 1022359 "20200402" Parent 1022355 Levels 699 OrderBy Drill 675
  4073. Value "20200402" Label "02/04/2020" Lastuse 20201216 SourceValue "20200402"
  4074. Date 20200402 Filtered False Suppressed False Sign False HideValue False
  4075. IsKeyOrphanage False IsTruncated False Blanks False
  4076. Category 1022361 "20200403" Parent 1022355 Levels 699 OrderBy Drill 675
  4077. Value "20200403" Label "03/04/2020" Lastuse 20201216 SourceValue "20200403"
  4078. Date 20200403 Filtered False Suppressed False Sign False HideValue False
  4079. IsKeyOrphanage False IsTruncated False Blanks False
  4080. Category 1022363 "20200404" Parent 1022355 Levels 699 OrderBy Drill 675
  4081. Value "20200404" Label "04/04/2020" Lastuse 20201216 SourceValue "20200404"
  4082. Date 20200404 Filtered False Suppressed False Sign False HideValue False
  4083. IsKeyOrphanage False IsTruncated False Blanks False
  4084. Category 1022365 "20200405" Parent 1022355 Levels 699 OrderBy Drill 675
  4085. Value "20200405" Label "05/04/2020" Lastuse 20201216 SourceValue "20200405"
  4086. Date 20200405 Filtered False Suppressed False Sign False HideValue False
  4087. IsKeyOrphanage False IsTruncated False Blanks False
  4088. Category 1022367 "20200406" Parent 1022355 Levels 699 OrderBy Drill 675
  4089. Value "20200406" Label "06/04/2020" Lastuse 20201216 SourceValue "20200406"
  4090. Date 20200406 Filtered False Suppressed False Sign False HideValue False
  4091. IsKeyOrphanage False IsTruncated False Blanks False
  4092. Category 1022369 "20200407" Parent 1022355 Levels 699 OrderBy Drill 675
  4093. Value "20200407" Label "07/04/2020" Lastuse 20201216 SourceValue "20200407"
  4094. Date 20200407 Filtered False Suppressed False Sign False HideValue False
  4095. IsKeyOrphanage False IsTruncated False Blanks False
  4096. Category 1022371 "20200408" Parent 1022355 Levels 699 OrderBy Drill 675
  4097. Value "20200408" Label "08/04/2020" Lastuse 20201216 SourceValue "20200408"
  4098. Date 20200408 Filtered False Suppressed False Sign False HideValue False
  4099. IsKeyOrphanage False IsTruncated False Blanks False
  4100. Category 1022373 "20200409" Parent 1022355 Levels 699 OrderBy Drill 675
  4101. Value "20200409" Label "09/04/2020" Lastuse 20201216 SourceValue "20200409"
  4102. Date 20200409 Filtered False Suppressed False Sign False HideValue False
  4103. IsKeyOrphanage False IsTruncated False Blanks False
  4104. Category 1022375 "20200410" Parent 1022355 Levels 699 OrderBy Drill 675
  4105. Value "20200410" Label "10/04/2020" Lastuse 20201216 SourceValue "20200410"
  4106. Date 20200410 Filtered False Suppressed False Sign False HideValue False
  4107. IsKeyOrphanage False IsTruncated False Blanks False
  4108. Category 1022377 "20200411" Parent 1022355 Levels 699 OrderBy Drill 675
  4109. Value "20200411" Label "11/04/2020" Lastuse 20201216 SourceValue "20200411"
  4110. Date 20200411 Filtered False Suppressed False Sign False HideValue False
  4111. IsKeyOrphanage False IsTruncated False Blanks False
  4112. Category 1022379 "20200412" Parent 1022355 Levels 699 OrderBy Drill 675
  4113. Value "20200412" Label "12/04/2020" Lastuse 20201216 SourceValue "20200412"
  4114. Date 20200412 Filtered False Suppressed False Sign False HideValue False
  4115. IsKeyOrphanage False IsTruncated False Blanks False
  4116. Category 1022381 "20200413" Parent 1022355 Levels 699 OrderBy Drill 675
  4117. Value "20200413" Label "13/04/2020" Lastuse 20201216 SourceValue "20200413"
  4118. Date 20200413 Filtered False Suppressed False Sign False HideValue False
  4119. IsKeyOrphanage False IsTruncated False Blanks False
  4120. Category 1022383 "20200414" Parent 1022355 Levels 699 OrderBy Drill 675
  4121. Value "20200414" Label "14/04/2020" Lastuse 20201216 SourceValue "20200414"
  4122. Date 20200414 Filtered False Suppressed False Sign False HideValue False
  4123. IsKeyOrphanage False IsTruncated False Blanks False
  4124. Category 1022385 "20200415" Parent 1022355 Levels 699 OrderBy Drill 675
  4125. Value "20200415" Label "15/04/2020" Lastuse 20201216 SourceValue "20200415"
  4126. Date 20200415 Filtered False Suppressed False Sign False HideValue False
  4127. IsKeyOrphanage False IsTruncated False Blanks False
  4128. Category 1022387 "20200416" Parent 1022355 Levels 699 OrderBy Drill 675
  4129. Value "20200416" Label "16/04/2020" Lastuse 20201216 SourceValue "20200416"
  4130. Date 20200416 Filtered False Suppressed False Sign False HideValue False
  4131. IsKeyOrphanage False IsTruncated False Blanks False
  4132. Category 1022389 "20200417" Parent 1022355 Levels 699 OrderBy Drill 675
  4133. Value "20200417" Label "17/04/2020" Lastuse 20201216 SourceValue "20200417"
  4134. Date 20200417 Filtered False Suppressed False Sign False HideValue False
  4135. IsKeyOrphanage False IsTruncated False Blanks False
  4136. Category 1022391 "20200418" Parent 1022355 Levels 699 OrderBy Drill 675
  4137. Value "20200418" Label "18/04/2020" Lastuse 20201216 SourceValue "20200418"
  4138. Date 20200418 Filtered False Suppressed False Sign False HideValue False
  4139. IsKeyOrphanage False IsTruncated False Blanks False
  4140. Category 1022393 "20200419" Parent 1022355 Levels 699 OrderBy Drill 675
  4141. Value "20200419" Label "19/04/2020" Lastuse 20201216 SourceValue "20200419"
  4142. Date 20200419 Filtered False Suppressed False Sign False HideValue False
  4143. IsKeyOrphanage False IsTruncated False Blanks False
  4144. Category 1022395 "20200420" Parent 1022355 Levels 699 OrderBy Drill 675
  4145. Value "20200420" Label "20/04/2020" Lastuse 20201216 SourceValue "20200420"
  4146. Date 20200420 Filtered False Suppressed False Sign False HideValue False
  4147. IsKeyOrphanage False IsTruncated False Blanks False
  4148. Category 1022397 "20200421" Parent 1022355 Levels 699 OrderBy Drill 675
  4149. Value "20200421" Label "21/04/2020" Lastuse 20201216 SourceValue "20200421"
  4150. Date 20200421 Filtered False Suppressed False Sign False HideValue False
  4151. IsKeyOrphanage False IsTruncated False Blanks False
  4152. Category 1022399 "20200422" Parent 1022355 Levels 699 OrderBy Drill 675
  4153. Value "20200422" Label "22/04/2020" Lastuse 20201216 SourceValue "20200422"
  4154. Date 20200422 Filtered False Suppressed False Sign False HideValue False
  4155. IsKeyOrphanage False IsTruncated False Blanks False
  4156. Category 1022401 "20200423" Parent 1022355 Levels 699 OrderBy Drill 675
  4157. Value "20200423" Label "23/04/2020" Lastuse 20201216 SourceValue "20200423"
  4158. Date 20200423 Filtered False Suppressed False Sign False HideValue False
  4159. IsKeyOrphanage False IsTruncated False Blanks False
  4160. Category 1022403 "20200424" Parent 1022355 Levels 699 OrderBy Drill 675
  4161. Value "20200424" Label "24/04/2020" Lastuse 20201216 SourceValue "20200424"
  4162. Date 20200424 Filtered False Suppressed False Sign False HideValue False
  4163. IsKeyOrphanage False IsTruncated False Blanks False
  4164. Category 1022405 "20200425" Parent 1022355 Levels 699 OrderBy Drill 675
  4165. Value "20200425" Label "25/04/2020" Lastuse 20201216 SourceValue "20200425"
  4166. Date 20200425 Filtered False Suppressed False Sign False HideValue False
  4167. IsKeyOrphanage False IsTruncated False Blanks False
  4168. Category 1022407 "20200426" Parent 1022355 Levels 699 OrderBy Drill 675
  4169. Value "20200426" Label "26/04/2020" Lastuse 20201216 SourceValue "20200426"
  4170. Date 20200426 Filtered False Suppressed False Sign False HideValue False
  4171. IsKeyOrphanage False IsTruncated False Blanks False
  4172. Category 1022409 "20200427" Parent 1022355 Levels 699 OrderBy Drill 675
  4173. Value "20200427" Label "27/04/2020" Lastuse 20201216 SourceValue "20200427"
  4174. Date 20200427 Filtered False Suppressed False Sign False HideValue False
  4175. IsKeyOrphanage False IsTruncated False Blanks False
  4176. Category 1022411 "20200428" Parent 1022355 Levels 699 OrderBy Drill 675
  4177. Value "20200428" Label "28/04/2020" Lastuse 20201216 SourceValue "20200428"
  4178. Date 20200428 Filtered False Suppressed False Sign False HideValue False
  4179. IsKeyOrphanage False IsTruncated False Blanks False
  4180. Category 1022413 "20200429" Parent 1022355 Levels 699 OrderBy Drill 675
  4181. Value "20200429" Label "29/04/2020" Lastuse 20201216 SourceValue "20200429"
  4182. Date 20200429 Filtered False Suppressed False Sign False HideValue False
  4183. IsKeyOrphanage False IsTruncated False Blanks False
  4184. Category 1022415 "20200430" Parent 1022355 Levels 699 OrderBy Drill 675
  4185. Value "20200430" Label "30/04/2020" Lastuse 20201216 SourceValue "20200430"
  4186. Date 20200430 Filtered False Suppressed False Sign False HideValue False
  4187. IsKeyOrphanage False IsTruncated False Blanks False
  4188. Category 1022417 "20200501-20200531" Parent 1022353 Levels 693 OrderBy Drill 675
  4189. Value "202005" Label "Mai/2020" Lastuse 20201216 SourceValue "202005" Date 20200501
  4190. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  4191. IsTruncated False Blanks False
  4192. Category 1022419 "20200501" Parent 1022417 Levels 699 OrderBy Drill 675
  4193. Value "20200501" Label "01/05/2020" Lastuse 20201216 SourceValue "20200501"
  4194. Date 20200501 Filtered False Suppressed False Sign False HideValue False
  4195. IsKeyOrphanage False IsTruncated False Blanks False
  4196. Category 1022421 "20200502" Parent 1022417 Levels 699 OrderBy Drill 675
  4197. Value "20200502" Label "02/05/2020" Lastuse 20201216 SourceValue "20200502"
  4198. Date 20200502 Filtered False Suppressed False Sign False HideValue False
  4199. IsKeyOrphanage False IsTruncated False Blanks False
  4200. Category 1022423 "20200503" Parent 1022417 Levels 699 OrderBy Drill 675
  4201. Value "20200503" Label "03/05/2020" Lastuse 20201216 SourceValue "20200503"
  4202. Date 20200503 Filtered False Suppressed False Sign False HideValue False
  4203. IsKeyOrphanage False IsTruncated False Blanks False
  4204. Category 1022425 "20200504" Parent 1022417 Levels 699 OrderBy Drill 675
  4205. Value "20200504" Label "04/05/2020" Lastuse 20201216 SourceValue "20200504"
  4206. Date 20200504 Filtered False Suppressed False Sign False HideValue False
  4207. IsKeyOrphanage False IsTruncated False Blanks False
  4208. Category 1022427 "20200505" Parent 1022417 Levels 699 OrderBy Drill 675
  4209. Value "20200505" Label "05/05/2020" Lastuse 20201216 SourceValue "20200505"
  4210. Date 20200505 Filtered False Suppressed False Sign False HideValue False
  4211. IsKeyOrphanage False IsTruncated False Blanks False
  4212. Category 1022429 "20200506" Parent 1022417 Levels 699 OrderBy Drill 675
  4213. Value "20200506" Label "06/05/2020" Lastuse 20201216 SourceValue "20200506"
  4214. Date 20200506 Filtered False Suppressed False Sign False HideValue False
  4215. IsKeyOrphanage False IsTruncated False Blanks False
  4216. Category 1022431 "20200507" Parent 1022417 Levels 699 OrderBy Drill 675
  4217. Value "20200507" Label "07/05/2020" Lastuse 20201216 SourceValue "20200507"
  4218. Date 20200507 Filtered False Suppressed False Sign False HideValue False
  4219. IsKeyOrphanage False IsTruncated False Blanks False
  4220. Category 1022433 "20200508" Parent 1022417 Levels 699 OrderBy Drill 675
  4221. Value "20200508" Label "08/05/2020" Lastuse 20201216 SourceValue "20200508"
  4222. Date 20200508 Filtered False Suppressed False Sign False HideValue False
  4223. IsKeyOrphanage False IsTruncated False Blanks False
  4224. Category 1022435 "20200509" Parent 1022417 Levels 699 OrderBy Drill 675
  4225. Value "20200509" Label "09/05/2020" Lastuse 20201216 SourceValue "20200509"
  4226. Date 20200509 Filtered False Suppressed False Sign False HideValue False
  4227. IsKeyOrphanage False IsTruncated False Blanks False
  4228. Category 1022437 "20200510" Parent 1022417 Levels 699 OrderBy Drill 675
  4229. Value "20200510" Label "10/05/2020" Lastuse 20201216 SourceValue "20200510"
  4230. Date 20200510 Filtered False Suppressed False Sign False HideValue False
  4231. IsKeyOrphanage False IsTruncated False Blanks False
  4232. Category 1022439 "20200511" Parent 1022417 Levels 699 OrderBy Drill 675
  4233. Value "20200511" Label "11/05/2020" Lastuse 20201216 SourceValue "20200511"
  4234. Date 20200511 Filtered False Suppressed False Sign False HideValue False
  4235. IsKeyOrphanage False IsTruncated False Blanks False
  4236. Category 1022441 "20200512" Parent 1022417 Levels 699 OrderBy Drill 675
  4237. Value "20200512" Label "12/05/2020" Lastuse 20201216 SourceValue "20200512"
  4238. Date 20200512 Filtered False Suppressed False Sign False HideValue False
  4239. IsKeyOrphanage False IsTruncated False Blanks False
  4240. Category 1022443 "20200513" Parent 1022417 Levels 699 OrderBy Drill 675
  4241. Value "20200513" Label "13/05/2020" Lastuse 20201216 SourceValue "20200513"
  4242. Date 20200513 Filtered False Suppressed False Sign False HideValue False
  4243. IsKeyOrphanage False IsTruncated False Blanks False
  4244. Category 1022445 "20200514" Parent 1022417 Levels 699 OrderBy Drill 675
  4245. Value "20200514" Label "14/05/2020" Lastuse 20201216 SourceValue "20200514"
  4246. Date 20200514 Filtered False Suppressed False Sign False HideValue False
  4247. IsKeyOrphanage False IsTruncated False Blanks False
  4248. Category 1022447 "20200515" Parent 1022417 Levels 699 OrderBy Drill 675
  4249. Value "20200515" Label "15/05/2020" Lastuse 20201216 SourceValue "20200515"
  4250. Date 20200515 Filtered False Suppressed False Sign False HideValue False
  4251. IsKeyOrphanage False IsTruncated False Blanks False
  4252. Category 1022449 "20200516" Parent 1022417 Levels 699 OrderBy Drill 675
  4253. Value "20200516" Label "16/05/2020" Lastuse 20201216 SourceValue "20200516"
  4254. Date 20200516 Filtered False Suppressed False Sign False HideValue False
  4255. IsKeyOrphanage False IsTruncated False Blanks False
  4256. Category 1022451 "20200517" Parent 1022417 Levels 699 OrderBy Drill 675
  4257. Value "20200517" Label "17/05/2020" Lastuse 20201216 SourceValue "20200517"
  4258. Date 20200517 Filtered False Suppressed False Sign False HideValue False
  4259. IsKeyOrphanage False IsTruncated False Blanks False
  4260. Category 1022453 "20200518" Parent 1022417 Levels 699 OrderBy Drill 675
  4261. Value "20200518" Label "18/05/2020" Lastuse 20201216 SourceValue "20200518"
  4262. Date 20200518 Filtered False Suppressed False Sign False HideValue False
  4263. IsKeyOrphanage False IsTruncated False Blanks False
  4264. Category 1022455 "20200519" Parent 1022417 Levels 699 OrderBy Drill 675
  4265. Value "20200519" Label "19/05/2020" Lastuse 20201216 SourceValue "20200519"
  4266. Date 20200519 Filtered False Suppressed False Sign False HideValue False
  4267. IsKeyOrphanage False IsTruncated False Blanks False
  4268. Category 1022457 "20200520" Parent 1022417 Levels 699 OrderBy Drill 675
  4269. Value "20200520" Label "20/05/2020" Lastuse 20201216 SourceValue "20200520"
  4270. Date 20200520 Filtered False Suppressed False Sign False HideValue False
  4271. IsKeyOrphanage False IsTruncated False Blanks False
  4272. Category 1022459 "20200521" Parent 1022417 Levels 699 OrderBy Drill 675
  4273. Value "20200521" Label "21/05/2020" Lastuse 20201216 SourceValue "20200521"
  4274. Date 20200521 Filtered False Suppressed False Sign False HideValue False
  4275. IsKeyOrphanage False IsTruncated False Blanks False
  4276. Category 1022461 "20200522" Parent 1022417 Levels 699 OrderBy Drill 675
  4277. Value "20200522" Label "22/05/2020" Lastuse 20201216 SourceValue "20200522"
  4278. Date 20200522 Filtered False Suppressed False Sign False HideValue False
  4279. IsKeyOrphanage False IsTruncated False Blanks False
  4280. Category 1022463 "20200523" Parent 1022417 Levels 699 OrderBy Drill 675
  4281. Value "20200523" Label "23/05/2020" Lastuse 20201216 SourceValue "20200523"
  4282. Date 20200523 Filtered False Suppressed False Sign False HideValue False
  4283. IsKeyOrphanage False IsTruncated False Blanks False
  4284. Category 1022465 "20200524" Parent 1022417 Levels 699 OrderBy Drill 675
  4285. Value "20200524" Label "24/05/2020" Lastuse 20201216 SourceValue "20200524"
  4286. Date 20200524 Filtered False Suppressed False Sign False HideValue False
  4287. IsKeyOrphanage False IsTruncated False Blanks False
  4288. Category 1022467 "20200525" Parent 1022417 Levels 699 OrderBy Drill 675
  4289. Value "20200525" Label "25/05/2020" Lastuse 20201216 SourceValue "20200525"
  4290. Date 20200525 Filtered False Suppressed False Sign False HideValue False
  4291. IsKeyOrphanage False IsTruncated False Blanks False
  4292. Category 1022469 "20200526" Parent 1022417 Levels 699 OrderBy Drill 675
  4293. Value "20200526" Label "26/05/2020" Lastuse 20201216 SourceValue "20200526"
  4294. Date 20200526 Filtered False Suppressed False Sign False HideValue False
  4295. IsKeyOrphanage False IsTruncated False Blanks False
  4296. Category 1022471 "20200527" Parent 1022417 Levels 699 OrderBy Drill 675
  4297. Value "20200527" Label "27/05/2020" Lastuse 20201216 SourceValue "20200527"
  4298. Date 20200527 Filtered False Suppressed False Sign False HideValue False
  4299. IsKeyOrphanage False IsTruncated False Blanks False
  4300. Category 1022473 "20200528" Parent 1022417 Levels 699 OrderBy Drill 675
  4301. Value "20200528" Label "28/05/2020" Lastuse 20201216 SourceValue "20200528"
  4302. Date 20200528 Filtered False Suppressed False Sign False HideValue False
  4303. IsKeyOrphanage False IsTruncated False Blanks False
  4304. Category 1022475 "20200529" Parent 1022417 Levels 699 OrderBy Drill 675
  4305. Value "20200529" Label "29/05/2020" Lastuse 20201216 SourceValue "20200529"
  4306. Date 20200529 Filtered False Suppressed False Sign False HideValue False
  4307. IsKeyOrphanage False IsTruncated False Blanks False
  4308. Category 1022477 "20200530" Parent 1022417 Levels 699 OrderBy Drill 675
  4309. Value "20200530" Label "30/05/2020" Lastuse 20201216 SourceValue "20200530"
  4310. Date 20200530 Filtered False Suppressed False Sign False HideValue False
  4311. IsKeyOrphanage False IsTruncated False Blanks False
  4312. Category 1022479 "20200531" Parent 1022417 Levels 699 OrderBy Drill 675
  4313. Value "20200531" Label "31/05/2020" Lastuse 20201216 SourceValue "20200531"
  4314. Date 20200531 Filtered False Suppressed False Sign False HideValue False
  4315. IsKeyOrphanage False IsTruncated False Blanks False
  4316. Category 1022481 "20200601-20200630" Parent 1022353 Levels 693 OrderBy Drill 675
  4317. Value "202006" Label "Juni/2020" Lastuse 20201216 SourceValue "202006"
  4318. Date 20200601 Filtered False Suppressed False Sign False HideValue False
  4319. IsKeyOrphanage False IsTruncated False Blanks False
  4320. Category 1022483 "20200601" Parent 1022481 Levels 699 OrderBy Drill 675
  4321. Value "20200601" Label "01/06/2020" Lastuse 20201216 SourceValue "20200601"
  4322. Date 20200601 Filtered False Suppressed False Sign False HideValue False
  4323. IsKeyOrphanage False IsTruncated False Blanks False
  4324. Category 1022485 "20200602" Parent 1022481 Levels 699 OrderBy Drill 675
  4325. Value "20200602" Label "02/06/2020" Lastuse 20201216 SourceValue "20200602"
  4326. Date 20200602 Filtered False Suppressed False Sign False HideValue False
  4327. IsKeyOrphanage False IsTruncated False Blanks False
  4328. Category 1022487 "20200603" Parent 1022481 Levels 699 OrderBy Drill 675
  4329. Value "20200603" Label "03/06/2020" Lastuse 20201216 SourceValue "20200603"
  4330. Date 20200603 Filtered False Suppressed False Sign False HideValue False
  4331. IsKeyOrphanage False IsTruncated False Blanks False
  4332. Category 1022489 "20200604" Parent 1022481 Levels 699 OrderBy Drill 675
  4333. Value "20200604" Label "04/06/2020" Lastuse 20201216 SourceValue "20200604"
  4334. Date 20200604 Filtered False Suppressed False Sign False HideValue False
  4335. IsKeyOrphanage False IsTruncated False Blanks False
  4336. Category 1022491 "20200605" Parent 1022481 Levels 699 OrderBy Drill 675
  4337. Value "20200605" Label "05/06/2020" Lastuse 20201216 SourceValue "20200605"
  4338. Date 20200605 Filtered False Suppressed False Sign False HideValue False
  4339. IsKeyOrphanage False IsTruncated False Blanks False
  4340. Category 1022493 "20200606" Parent 1022481 Levels 699 OrderBy Drill 675
  4341. Value "20200606" Label "06/06/2020" Lastuse 20201216 SourceValue "20200606"
  4342. Date 20200606 Filtered False Suppressed False Sign False HideValue False
  4343. IsKeyOrphanage False IsTruncated False Blanks False
  4344. Category 1022495 "20200607" Parent 1022481 Levels 699 OrderBy Drill 675
  4345. Value "20200607" Label "07/06/2020" Lastuse 20201216 SourceValue "20200607"
  4346. Date 20200607 Filtered False Suppressed False Sign False HideValue False
  4347. IsKeyOrphanage False IsTruncated False Blanks False
  4348. Category 1022497 "20200608" Parent 1022481 Levels 699 OrderBy Drill 675
  4349. Value "20200608" Label "08/06/2020" Lastuse 20201216 SourceValue "20200608"
  4350. Date 20200608 Filtered False Suppressed False Sign False HideValue False
  4351. IsKeyOrphanage False IsTruncated False Blanks False
  4352. Category 1022499 "20200609" Parent 1022481 Levels 699 OrderBy Drill 675
  4353. Value "20200609" Label "09/06/2020" Lastuse 20201216 SourceValue "20200609"
  4354. Date 20200609 Filtered False Suppressed False Sign False HideValue False
  4355. IsKeyOrphanage False IsTruncated False Blanks False
  4356. Category 1022501 "20200610" Parent 1022481 Levels 699 OrderBy Drill 675
  4357. Value "20200610" Label "10/06/2020" Lastuse 20201216 SourceValue "20200610"
  4358. Date 20200610 Filtered False Suppressed False Sign False HideValue False
  4359. IsKeyOrphanage False IsTruncated False Blanks False
  4360. Category 1022503 "20200611" Parent 1022481 Levels 699 OrderBy Drill 675
  4361. Value "20200611" Label "11/06/2020" Lastuse 20201216 SourceValue "20200611"
  4362. Date 20200611 Filtered False Suppressed False Sign False HideValue False
  4363. IsKeyOrphanage False IsTruncated False Blanks False
  4364. Category 1022505 "20200612" Parent 1022481 Levels 699 OrderBy Drill 675
  4365. Value "20200612" Label "12/06/2020" Lastuse 20201216 SourceValue "20200612"
  4366. Date 20200612 Filtered False Suppressed False Sign False HideValue False
  4367. IsKeyOrphanage False IsTruncated False Blanks False
  4368. Category 1022507 "20200613" Parent 1022481 Levels 699 OrderBy Drill 675
  4369. Value "20200613" Label "13/06/2020" Lastuse 20201216 SourceValue "20200613"
  4370. Date 20200613 Filtered False Suppressed False Sign False HideValue False
  4371. IsKeyOrphanage False IsTruncated False Blanks False
  4372. Category 1022509 "20200614" Parent 1022481 Levels 699 OrderBy Drill 675
  4373. Value "20200614" Label "14/06/2020" Lastuse 20201216 SourceValue "20200614"
  4374. Date 20200614 Filtered False Suppressed False Sign False HideValue False
  4375. IsKeyOrphanage False IsTruncated False Blanks False
  4376. Category 1022511 "20200615" Parent 1022481 Levels 699 OrderBy Drill 675
  4377. Value "20200615" Label "15/06/2020" Lastuse 20201216 SourceValue "20200615"
  4378. Date 20200615 Filtered False Suppressed False Sign False HideValue False
  4379. IsKeyOrphanage False IsTruncated False Blanks False
  4380. Category 1022513 "20200616" Parent 1022481 Levels 699 OrderBy Drill 675
  4381. Value "20200616" Label "16/06/2020" Lastuse 20201216 SourceValue "20200616"
  4382. Date 20200616 Filtered False Suppressed False Sign False HideValue False
  4383. IsKeyOrphanage False IsTruncated False Blanks False
  4384. Category 1022515 "20200617" Parent 1022481 Levels 699 OrderBy Drill 675
  4385. Value "20200617" Label "17/06/2020" Lastuse 20201216 SourceValue "20200617"
  4386. Date 20200617 Filtered False Suppressed False Sign False HideValue False
  4387. IsKeyOrphanage False IsTruncated False Blanks False
  4388. Category 1022517 "20200618" Parent 1022481 Levels 699 OrderBy Drill 675
  4389. Value "20200618" Label "18/06/2020" Lastuse 20201216 SourceValue "20200618"
  4390. Date 20200618 Filtered False Suppressed False Sign False HideValue False
  4391. IsKeyOrphanage False IsTruncated False Blanks False
  4392. Category 1022519 "20200619" Parent 1022481 Levels 699 OrderBy Drill 675
  4393. Value "20200619" Label "19/06/2020" Lastuse 20201216 SourceValue "20200619"
  4394. Date 20200619 Filtered False Suppressed False Sign False HideValue False
  4395. IsKeyOrphanage False IsTruncated False Blanks False
  4396. Category 1022521 "20200620" Parent 1022481 Levels 699 OrderBy Drill 675
  4397. Value "20200620" Label "20/06/2020" Lastuse 20201216 SourceValue "20200620"
  4398. Date 20200620 Filtered False Suppressed False Sign False HideValue False
  4399. IsKeyOrphanage False IsTruncated False Blanks False
  4400. Category 1022523 "20200621" Parent 1022481 Levels 699 OrderBy Drill 675
  4401. Value "20200621" Label "21/06/2020" Lastuse 20201216 SourceValue "20200621"
  4402. Date 20200621 Filtered False Suppressed False Sign False HideValue False
  4403. IsKeyOrphanage False IsTruncated False Blanks False
  4404. Category 1022525 "20200622" Parent 1022481 Levels 699 OrderBy Drill 675
  4405. Value "20200622" Label "22/06/2020" Lastuse 20201216 SourceValue "20200622"
  4406. Date 20200622 Filtered False Suppressed False Sign False HideValue False
  4407. IsKeyOrphanage False IsTruncated False Blanks False
  4408. Category 1022527 "20200623" Parent 1022481 Levels 699 OrderBy Drill 675
  4409. Value "20200623" Label "23/06/2020" Lastuse 20201216 SourceValue "20200623"
  4410. Date 20200623 Filtered False Suppressed False Sign False HideValue False
  4411. IsKeyOrphanage False IsTruncated False Blanks False
  4412. Category 1022529 "20200624" Parent 1022481 Levels 699 OrderBy Drill 675
  4413. Value "20200624" Label "24/06/2020" Lastuse 20201216 SourceValue "20200624"
  4414. Date 20200624 Filtered False Suppressed False Sign False HideValue False
  4415. IsKeyOrphanage False IsTruncated False Blanks False
  4416. Category 1022531 "20200625" Parent 1022481 Levels 699 OrderBy Drill 675
  4417. Value "20200625" Label "25/06/2020" Lastuse 20201216 SourceValue "20200625"
  4418. Date 20200625 Filtered False Suppressed False Sign False HideValue False
  4419. IsKeyOrphanage False IsTruncated False Blanks False
  4420. Category 1022533 "20200626" Parent 1022481 Levels 699 OrderBy Drill 675
  4421. Value "20200626" Label "26/06/2020" Lastuse 20201216 SourceValue "20200626"
  4422. Date 20200626 Filtered False Suppressed False Sign False HideValue False
  4423. IsKeyOrphanage False IsTruncated False Blanks False
  4424. Category 1022535 "20200627" Parent 1022481 Levels 699 OrderBy Drill 675
  4425. Value "20200627" Label "27/06/2020" Lastuse 20201216 SourceValue "20200627"
  4426. Date 20200627 Filtered False Suppressed False Sign False HideValue False
  4427. IsKeyOrphanage False IsTruncated False Blanks False
  4428. Category 1022537 "20200628" Parent 1022481 Levels 699 OrderBy Drill 675
  4429. Value "20200628" Label "28/06/2020" Lastuse 20201216 SourceValue "20200628"
  4430. Date 20200628 Filtered False Suppressed False Sign False HideValue False
  4431. IsKeyOrphanage False IsTruncated False Blanks False
  4432. Category 1022539 "20200629" Parent 1022481 Levels 699 OrderBy Drill 675
  4433. Value "20200629" Label "29/06/2020" Lastuse 20201216 SourceValue "20200629"
  4434. Date 20200629 Filtered False Suppressed False Sign False HideValue False
  4435. IsKeyOrphanage False IsTruncated False Blanks False
  4436. Category 1022541 "20200630" Parent 1022481 Levels 699 OrderBy Drill 675
  4437. Value "20200630" Label "30/06/2020" Lastuse 20201216 SourceValue "20200630"
  4438. Date 20200630 Filtered False Suppressed False Sign False HideValue False
  4439. IsKeyOrphanage False IsTruncated False Blanks False
  4440. Category 1022543 "20200701-20200930" Parent 1022161 Levels 687 OrderBy Drill 675
  4441. Value "20200701" Label "3. Q. 2020" Lastuse 20201216 SourceValue "20200701"
  4442. Date 20200701 Filtered False Suppressed False Sign False HideValue False
  4443. IsKeyOrphanage False IsTruncated False Blanks False
  4444. Category 1022545 "20200701-20200731" Parent 1022543 Levels 693 OrderBy Drill 675
  4445. Value "202007" Label "Juli/2020" Lastuse 20201216 SourceValue "202007"
  4446. Date 20200701 Filtered False Suppressed False Sign False HideValue False
  4447. IsKeyOrphanage False IsTruncated False Blanks False
  4448. Category 1022547 "20200701" Parent 1022545 Levels 699 OrderBy Drill 675
  4449. Value "20200701" Label "01/07/2020" Lastuse 20201216 SourceValue "20200701"
  4450. Date 20200701 Filtered False Suppressed False Sign False HideValue False
  4451. IsKeyOrphanage False IsTruncated False Blanks False
  4452. Category 1022549 "20200702" Parent 1022545 Levels 699 OrderBy Drill 675
  4453. Value "20200702" Label "02/07/2020" Lastuse 20201216 SourceValue "20200702"
  4454. Date 20200702 Filtered False Suppressed False Sign False HideValue False
  4455. IsKeyOrphanage False IsTruncated False Blanks False
  4456. Category 1022551 "20200703" Parent 1022545 Levels 699 OrderBy Drill 675
  4457. Value "20200703" Label "03/07/2020" Lastuse 20201216 SourceValue "20200703"
  4458. Date 20200703 Filtered False Suppressed False Sign False HideValue False
  4459. IsKeyOrphanage False IsTruncated False Blanks False
  4460. Category 1022553 "20200704" Parent 1022545 Levels 699 OrderBy Drill 675
  4461. Value "20200704" Label "04/07/2020" Lastuse 20201216 SourceValue "20200704"
  4462. Date 20200704 Filtered False Suppressed False Sign False HideValue False
  4463. IsKeyOrphanage False IsTruncated False Blanks False
  4464. Category 1022555 "20200705" Parent 1022545 Levels 699 OrderBy Drill 675
  4465. Value "20200705" Label "05/07/2020" Lastuse 20201216 SourceValue "20200705"
  4466. Date 20200705 Filtered False Suppressed False Sign False HideValue False
  4467. IsKeyOrphanage False IsTruncated False Blanks False
  4468. Category 1022557 "20200706" Parent 1022545 Levels 699 OrderBy Drill 675
  4469. Value "20200706" Label "06/07/2020" Lastuse 20201216 SourceValue "20200706"
  4470. Date 20200706 Filtered False Suppressed False Sign False HideValue False
  4471. IsKeyOrphanage False IsTruncated False Blanks False
  4472. Category 1022559 "20200707" Parent 1022545 Levels 699 OrderBy Drill 675
  4473. Value "20200707" Label "07/07/2020" Lastuse 20201216 SourceValue "20200707"
  4474. Date 20200707 Filtered False Suppressed False Sign False HideValue False
  4475. IsKeyOrphanage False IsTruncated False Blanks False
  4476. Category 1022561 "20200708" Parent 1022545 Levels 699 OrderBy Drill 675
  4477. Value "20200708" Label "08/07/2020" Lastuse 20201216 SourceValue "20200708"
  4478. Date 20200708 Filtered False Suppressed False Sign False HideValue False
  4479. IsKeyOrphanage False IsTruncated False Blanks False
  4480. Category 1022563 "20200709" Parent 1022545 Levels 699 OrderBy Drill 675
  4481. Value "20200709" Label "09/07/2020" Lastuse 20201216 SourceValue "20200709"
  4482. Date 20200709 Filtered False Suppressed False Sign False HideValue False
  4483. IsKeyOrphanage False IsTruncated False Blanks False
  4484. Category 1022565 "20200710" Parent 1022545 Levels 699 OrderBy Drill 675
  4485. Value "20200710" Label "10/07/2020" Lastuse 20201216 SourceValue "20200710"
  4486. Date 20200710 Filtered False Suppressed False Sign False HideValue False
  4487. IsKeyOrphanage False IsTruncated False Blanks False
  4488. Category 1022567 "20200711" Parent 1022545 Levels 699 OrderBy Drill 675
  4489. Value "20200711" Label "11/07/2020" Lastuse 20201216 SourceValue "20200711"
  4490. Date 20200711 Filtered False Suppressed False Sign False HideValue False
  4491. IsKeyOrphanage False IsTruncated False Blanks False
  4492. Category 1022569 "20200712" Parent 1022545 Levels 699 OrderBy Drill 675
  4493. Value "20200712" Label "12/07/2020" Lastuse 20201216 SourceValue "20200712"
  4494. Date 20200712 Filtered False Suppressed False Sign False HideValue False
  4495. IsKeyOrphanage False IsTruncated False Blanks False
  4496. Category 1022571 "20200713" Parent 1022545 Levels 699 OrderBy Drill 675
  4497. Value "20200713" Label "13/07/2020" Lastuse 20201216 SourceValue "20200713"
  4498. Date 20200713 Filtered False Suppressed False Sign False HideValue False
  4499. IsKeyOrphanage False IsTruncated False Blanks False
  4500. Category 1022573 "20200714" Parent 1022545 Levels 699 OrderBy Drill 675
  4501. Value "20200714" Label "14/07/2020" Lastuse 20201216 SourceValue "20200714"
  4502. Date 20200714 Filtered False Suppressed False Sign False HideValue False
  4503. IsKeyOrphanage False IsTruncated False Blanks False
  4504. Category 1022575 "20200715" Parent 1022545 Levels 699 OrderBy Drill 675
  4505. Value "20200715" Label "15/07/2020" Lastuse 20201216 SourceValue "20200715"
  4506. Date 20200715 Filtered False Suppressed False Sign False HideValue False
  4507. IsKeyOrphanage False IsTruncated False Blanks False
  4508. Category 1022577 "20200716" Parent 1022545 Levels 699 OrderBy Drill 675
  4509. Value "20200716" Label "16/07/2020" Lastuse 20201216 SourceValue "20200716"
  4510. Date 20200716 Filtered False Suppressed False Sign False HideValue False
  4511. IsKeyOrphanage False IsTruncated False Blanks False
  4512. Category 1022579 "20200717" Parent 1022545 Levels 699 OrderBy Drill 675
  4513. Value "20200717" Label "17/07/2020" Lastuse 20201216 SourceValue "20200717"
  4514. Date 20200717 Filtered False Suppressed False Sign False HideValue False
  4515. IsKeyOrphanage False IsTruncated False Blanks False
  4516. Category 1022581 "20200718" Parent 1022545 Levels 699 OrderBy Drill 675
  4517. Value "20200718" Label "18/07/2020" Lastuse 20201216 SourceValue "20200718"
  4518. Date 20200718 Filtered False Suppressed False Sign False HideValue False
  4519. IsKeyOrphanage False IsTruncated False Blanks False
  4520. Category 1022583 "20200719" Parent 1022545 Levels 699 OrderBy Drill 675
  4521. Value "20200719" Label "19/07/2020" Lastuse 20201216 SourceValue "20200719"
  4522. Date 20200719 Filtered False Suppressed False Sign False HideValue False
  4523. IsKeyOrphanage False IsTruncated False Blanks False
  4524. Category 1022585 "20200720" Parent 1022545 Levels 699 OrderBy Drill 675
  4525. Value "20200720" Label "20/07/2020" Lastuse 20201216 SourceValue "20200720"
  4526. Date 20200720 Filtered False Suppressed False Sign False HideValue False
  4527. IsKeyOrphanage False IsTruncated False Blanks False
  4528. Category 1022587 "20200721" Parent 1022545 Levels 699 OrderBy Drill 675
  4529. Value "20200721" Label "21/07/2020" Lastuse 20201216 SourceValue "20200721"
  4530. Date 20200721 Filtered False Suppressed False Sign False HideValue False
  4531. IsKeyOrphanage False IsTruncated False Blanks False
  4532. Category 1022589 "20200722" Parent 1022545 Levels 699 OrderBy Drill 675
  4533. Value "20200722" Label "22/07/2020" Lastuse 20201216 SourceValue "20200722"
  4534. Date 20200722 Filtered False Suppressed False Sign False HideValue False
  4535. IsKeyOrphanage False IsTruncated False Blanks False
  4536. Category 1022591 "20200723" Parent 1022545 Levels 699 OrderBy Drill 675
  4537. Value "20200723" Label "23/07/2020" Lastuse 20201216 SourceValue "20200723"
  4538. Date 20200723 Filtered False Suppressed False Sign False HideValue False
  4539. IsKeyOrphanage False IsTruncated False Blanks False
  4540. Category 1022593 "20200724" Parent 1022545 Levels 699 OrderBy Drill 675
  4541. Value "20200724" Label "24/07/2020" Lastuse 20201216 SourceValue "20200724"
  4542. Date 20200724 Filtered False Suppressed False Sign False HideValue False
  4543. IsKeyOrphanage False IsTruncated False Blanks False
  4544. Category 1022595 "20200725" Parent 1022545 Levels 699 OrderBy Drill 675
  4545. Value "20200725" Label "25/07/2020" Lastuse 20201216 SourceValue "20200725"
  4546. Date 20200725 Filtered False Suppressed False Sign False HideValue False
  4547. IsKeyOrphanage False IsTruncated False Blanks False
  4548. Category 1022597 "20200726" Parent 1022545 Levels 699 OrderBy Drill 675
  4549. Value "20200726" Label "26/07/2020" Lastuse 20201216 SourceValue "20200726"
  4550. Date 20200726 Filtered False Suppressed False Sign False HideValue False
  4551. IsKeyOrphanage False IsTruncated False Blanks False
  4552. Category 1022599 "20200727" Parent 1022545 Levels 699 OrderBy Drill 675
  4553. Value "20200727" Label "27/07/2020" Lastuse 20201216 SourceValue "20200727"
  4554. Date 20200727 Filtered False Suppressed False Sign False HideValue False
  4555. IsKeyOrphanage False IsTruncated False Blanks False
  4556. Category 1022601 "20200728" Parent 1022545 Levels 699 OrderBy Drill 675
  4557. Value "20200728" Label "28/07/2020" Lastuse 20201216 SourceValue "20200728"
  4558. Date 20200728 Filtered False Suppressed False Sign False HideValue False
  4559. IsKeyOrphanage False IsTruncated False Blanks False
  4560. Category 1022603 "20200729" Parent 1022545 Levels 699 OrderBy Drill 675
  4561. Value "20200729" Label "29/07/2020" Lastuse 20201216 SourceValue "20200729"
  4562. Date 20200729 Filtered False Suppressed False Sign False HideValue False
  4563. IsKeyOrphanage False IsTruncated False Blanks False
  4564. Category 1022605 "20200730" Parent 1022545 Levels 699 OrderBy Drill 675
  4565. Value "20200730" Label "30/07/2020" Lastuse 20201216 SourceValue "20200730"
  4566. Date 20200730 Filtered False Suppressed False Sign False HideValue False
  4567. IsKeyOrphanage False IsTruncated False Blanks False
  4568. Category 1022607 "20200731" Parent 1022545 Levels 699 OrderBy Drill 675
  4569. Value "20200731" Label "31/07/2020" Lastuse 20201216 SourceValue "20200731"
  4570. Date 20200731 Filtered False Suppressed False Sign False HideValue False
  4571. IsKeyOrphanage False IsTruncated False Blanks False
  4572. Category 1022609 "20200801-20200831" Parent 1022543 Levels 693 OrderBy Drill 675
  4573. Value "202008" Label "Aug./2020" Lastuse 20201216 SourceValue "202008"
  4574. Date 20200801 Filtered False Suppressed False Sign False HideValue False
  4575. IsKeyOrphanage False IsTruncated False Blanks False
  4576. Category 1022611 "20200801" Parent 1022609 Levels 699 OrderBy Drill 675
  4577. Value "20200801" Label "01/08/2020" Lastuse 20201216 SourceValue "20200801"
  4578. Date 20200801 Filtered False Suppressed False Sign False HideValue False
  4579. IsKeyOrphanage False IsTruncated False Blanks False
  4580. Category 1022613 "20200802" Parent 1022609 Levels 699 OrderBy Drill 675
  4581. Value "20200802" Label "02/08/2020" Lastuse 20201216 SourceValue "20200802"
  4582. Date 20200802 Filtered False Suppressed False Sign False HideValue False
  4583. IsKeyOrphanage False IsTruncated False Blanks False
  4584. Category 1022615 "20200803" Parent 1022609 Levels 699 OrderBy Drill 675
  4585. Value "20200803" Label "03/08/2020" Lastuse 20201216 SourceValue "20200803"
  4586. Date 20200803 Filtered False Suppressed False Sign False HideValue False
  4587. IsKeyOrphanage False IsTruncated False Blanks False
  4588. Category 1022617 "20200804" Parent 1022609 Levels 699 OrderBy Drill 675
  4589. Value "20200804" Label "04/08/2020" Lastuse 20201216 SourceValue "20200804"
  4590. Date 20200804 Filtered False Suppressed False Sign False HideValue False
  4591. IsKeyOrphanage False IsTruncated False Blanks False
  4592. Category 1022619 "20200805" Parent 1022609 Levels 699 OrderBy Drill 675
  4593. Value "20200805" Label "05/08/2020" Lastuse 20201216 SourceValue "20200805"
  4594. Date 20200805 Filtered False Suppressed False Sign False HideValue False
  4595. IsKeyOrphanage False IsTruncated False Blanks False
  4596. Category 1022621 "20200806" Parent 1022609 Levels 699 OrderBy Drill 675
  4597. Value "20200806" Label "06/08/2020" Lastuse 20201216 SourceValue "20200806"
  4598. Date 20200806 Filtered False Suppressed False Sign False HideValue False
  4599. IsKeyOrphanage False IsTruncated False Blanks False
  4600. Category 1022623 "20200807" Parent 1022609 Levels 699 OrderBy Drill 675
  4601. Value "20200807" Label "07/08/2020" Lastuse 20201216 SourceValue "20200807"
  4602. Date 20200807 Filtered False Suppressed False Sign False HideValue False
  4603. IsKeyOrphanage False IsTruncated False Blanks False
  4604. Category 1022625 "20200808" Parent 1022609 Levels 699 OrderBy Drill 675
  4605. Value "20200808" Label "08/08/2020" Lastuse 20201216 SourceValue "20200808"
  4606. Date 20200808 Filtered False Suppressed False Sign False HideValue False
  4607. IsKeyOrphanage False IsTruncated False Blanks False
  4608. Category 1022627 "20200809" Parent 1022609 Levels 699 OrderBy Drill 675
  4609. Value "20200809" Label "09/08/2020" Lastuse 20201216 SourceValue "20200809"
  4610. Date 20200809 Filtered False Suppressed False Sign False HideValue False
  4611. IsKeyOrphanage False IsTruncated False Blanks False
  4612. Category 1022629 "20200810" Parent 1022609 Levels 699 OrderBy Drill 675
  4613. Value "20200810" Label "10/08/2020" Lastuse 20201216 SourceValue "20200810"
  4614. Date 20200810 Filtered False Suppressed False Sign False HideValue False
  4615. IsKeyOrphanage False IsTruncated False Blanks False
  4616. Category 1022631 "20200811" Parent 1022609 Levels 699 OrderBy Drill 675
  4617. Value "20200811" Label "11/08/2020" Lastuse 20201216 SourceValue "20200811"
  4618. Date 20200811 Filtered False Suppressed False Sign False HideValue False
  4619. IsKeyOrphanage False IsTruncated False Blanks False
  4620. Category 1022633 "20200812" Parent 1022609 Levels 699 OrderBy Drill 675
  4621. Value "20200812" Label "12/08/2020" Lastuse 20201216 SourceValue "20200812"
  4622. Date 20200812 Filtered False Suppressed False Sign False HideValue False
  4623. IsKeyOrphanage False IsTruncated False Blanks False
  4624. Category 1022635 "20200813" Parent 1022609 Levels 699 OrderBy Drill 675
  4625. Value "20200813" Label "13/08/2020" Lastuse 20201216 SourceValue "20200813"
  4626. Date 20200813 Filtered False Suppressed False Sign False HideValue False
  4627. IsKeyOrphanage False IsTruncated False Blanks False
  4628. Category 1022637 "20200814" Parent 1022609 Levels 699 OrderBy Drill 675
  4629. Value "20200814" Label "14/08/2020" Lastuse 20201216 SourceValue "20200814"
  4630. Date 20200814 Filtered False Suppressed False Sign False HideValue False
  4631. IsKeyOrphanage False IsTruncated False Blanks False
  4632. Category 1022639 "20200815" Parent 1022609 Levels 699 OrderBy Drill 675
  4633. Value "20200815" Label "15/08/2020" Lastuse 20201216 SourceValue "20200815"
  4634. Date 20200815 Filtered False Suppressed False Sign False HideValue False
  4635. IsKeyOrphanage False IsTruncated False Blanks False
  4636. Category 1022641 "20200816" Parent 1022609 Levels 699 OrderBy Drill 675
  4637. Value "20200816" Label "16/08/2020" Lastuse 20201216 SourceValue "20200816"
  4638. Date 20200816 Filtered False Suppressed False Sign False HideValue False
  4639. IsKeyOrphanage False IsTruncated False Blanks False
  4640. Category 1022643 "20200817" Parent 1022609 Levels 699 OrderBy Drill 675
  4641. Value "20200817" Label "17/08/2020" Lastuse 20201216 SourceValue "20200817"
  4642. Date 20200817 Filtered False Suppressed False Sign False HideValue False
  4643. IsKeyOrphanage False IsTruncated False Blanks False
  4644. Category 1022645 "20200818" Parent 1022609 Levels 699 OrderBy Drill 675
  4645. Value "20200818" Label "18/08/2020" Lastuse 20201216 SourceValue "20200818"
  4646. Date 20200818 Filtered False Suppressed False Sign False HideValue False
  4647. IsKeyOrphanage False IsTruncated False Blanks False
  4648. Category 1022647 "20200819" Parent 1022609 Levels 699 OrderBy Drill 675
  4649. Value "20200819" Label "19/08/2020" Lastuse 20201216 SourceValue "20200819"
  4650. Date 20200819 Filtered False Suppressed False Sign False HideValue False
  4651. IsKeyOrphanage False IsTruncated False Blanks False
  4652. Category 1022649 "20200820" Parent 1022609 Levels 699 OrderBy Drill 675
  4653. Value "20200820" Label "20/08/2020" Lastuse 20201216 SourceValue "20200820"
  4654. Date 20200820 Filtered False Suppressed False Sign False HideValue False
  4655. IsKeyOrphanage False IsTruncated False Blanks False
  4656. Category 1022651 "20200821" Parent 1022609 Levels 699 OrderBy Drill 675
  4657. Value "20200821" Label "21/08/2020" Lastuse 20201216 SourceValue "20200821"
  4658. Date 20200821 Filtered False Suppressed False Sign False HideValue False
  4659. IsKeyOrphanage False IsTruncated False Blanks False
  4660. Category 1022653 "20200822" Parent 1022609 Levels 699 OrderBy Drill 675
  4661. Value "20200822" Label "22/08/2020" Lastuse 20201216 SourceValue "20200822"
  4662. Date 20200822 Filtered False Suppressed False Sign False HideValue False
  4663. IsKeyOrphanage False IsTruncated False Blanks False
  4664. Category 1022655 "20200823" Parent 1022609 Levels 699 OrderBy Drill 675
  4665. Value "20200823" Label "23/08/2020" Lastuse 20201216 SourceValue "20200823"
  4666. Date 20200823 Filtered False Suppressed False Sign False HideValue False
  4667. IsKeyOrphanage False IsTruncated False Blanks False
  4668. Category 1022657 "20200824" Parent 1022609 Levels 699 OrderBy Drill 675
  4669. Value "20200824" Label "24/08/2020" Lastuse 20201216 SourceValue "20200824"
  4670. Date 20200824 Filtered False Suppressed False Sign False HideValue False
  4671. IsKeyOrphanage False IsTruncated False Blanks False
  4672. Category 1022659 "20200825" Parent 1022609 Levels 699 OrderBy Drill 675
  4673. Value "20200825" Label "25/08/2020" Lastuse 20201216 SourceValue "20200825"
  4674. Date 20200825 Filtered False Suppressed False Sign False HideValue False
  4675. IsKeyOrphanage False IsTruncated False Blanks False
  4676. Category 1022661 "20200826" Parent 1022609 Levels 699 OrderBy Drill 675
  4677. Value "20200826" Label "26/08/2020" Lastuse 20201216 SourceValue "20200826"
  4678. Date 20200826 Filtered False Suppressed False Sign False HideValue False
  4679. IsKeyOrphanage False IsTruncated False Blanks False
  4680. Category 1022663 "20200827" Parent 1022609 Levels 699 OrderBy Drill 675
  4681. Value "20200827" Label "27/08/2020" Lastuse 20201216 SourceValue "20200827"
  4682. Date 20200827 Filtered False Suppressed False Sign False HideValue False
  4683. IsKeyOrphanage False IsTruncated False Blanks False
  4684. Category 1022665 "20200828" Parent 1022609 Levels 699 OrderBy Drill 675
  4685. Value "20200828" Label "28/08/2020" Lastuse 20201216 SourceValue "20200828"
  4686. Date 20200828 Filtered False Suppressed False Sign False HideValue False
  4687. IsKeyOrphanage False IsTruncated False Blanks False
  4688. Category 1022667 "20200829" Parent 1022609 Levels 699 OrderBy Drill 675
  4689. Value "20200829" Label "29/08/2020" Lastuse 20201216 SourceValue "20200829"
  4690. Date 20200829 Filtered False Suppressed False Sign False HideValue False
  4691. IsKeyOrphanage False IsTruncated False Blanks False
  4692. Category 1022669 "20200830" Parent 1022609 Levels 699 OrderBy Drill 675
  4693. Value "20200830" Label "30/08/2020" Lastuse 20201216 SourceValue "20200830"
  4694. Date 20200830 Filtered False Suppressed False Sign False HideValue False
  4695. IsKeyOrphanage False IsTruncated False Blanks False
  4696. Category 1022671 "20200831" Parent 1022609 Levels 699 OrderBy Drill 675
  4697. Value "20200831" Label "31/08/2020" Lastuse 20201216 SourceValue "20200831"
  4698. Date 20200831 Filtered False Suppressed False Sign False HideValue False
  4699. IsKeyOrphanage False IsTruncated False Blanks False
  4700. Category 1022673 "20200901-20200930" Parent 1022543 Levels 693 OrderBy Drill 675
  4701. Value "202009" Label "Sept./2020" Lastuse 20201216 SourceValue "202009"
  4702. Date 20200901 Filtered False Suppressed False Sign False HideValue False
  4703. IsKeyOrphanage False IsTruncated False Blanks False
  4704. Category 1022675 "20200901" Parent 1022673 Levels 699 OrderBy Drill 675
  4705. Value "20200901" Label "01/09/2020" Lastuse 20201216 SourceValue "20200901"
  4706. Date 20200901 Filtered False Suppressed False Sign False HideValue False
  4707. IsKeyOrphanage False IsTruncated False Blanks False
  4708. Category 1022677 "20200902" Parent 1022673 Levels 699 OrderBy Drill 675
  4709. Value "20200902" Label "02/09/2020" Lastuse 20201216 SourceValue "20200902"
  4710. Date 20200902 Filtered False Suppressed False Sign False HideValue False
  4711. IsKeyOrphanage False IsTruncated False Blanks False
  4712. Category 1022679 "20200903" Parent 1022673 Levels 699 OrderBy Drill 675
  4713. Value "20200903" Label "03/09/2020" Lastuse 20201216 SourceValue "20200903"
  4714. Date 20200903 Filtered False Suppressed False Sign False HideValue False
  4715. IsKeyOrphanage False IsTruncated False Blanks False
  4716. Category 1022681 "20200904" Parent 1022673 Levels 699 OrderBy Drill 675
  4717. Value "20200904" Label "04/09/2020" Lastuse 20201216 SourceValue "20200904"
  4718. Date 20200904 Filtered False Suppressed False Sign False HideValue False
  4719. IsKeyOrphanage False IsTruncated False Blanks False
  4720. Category 1022683 "20200905" Parent 1022673 Levels 699 OrderBy Drill 675
  4721. Value "20200905" Label "05/09/2020" Lastuse 20201216 SourceValue "20200905"
  4722. Date 20200905 Filtered False Suppressed False Sign False HideValue False
  4723. IsKeyOrphanage False IsTruncated False Blanks False
  4724. Category 1022685 "20200906" Parent 1022673 Levels 699 OrderBy Drill 675
  4725. Value "20200906" Label "06/09/2020" Lastuse 20201216 SourceValue "20200906"
  4726. Date 20200906 Filtered False Suppressed False Sign False HideValue False
  4727. IsKeyOrphanage False IsTruncated False Blanks False
  4728. Category 1022687 "20200907" Parent 1022673 Levels 699 OrderBy Drill 675
  4729. Value "20200907" Label "07/09/2020" Lastuse 20201216 SourceValue "20200907"
  4730. Date 20200907 Filtered False Suppressed False Sign False HideValue False
  4731. IsKeyOrphanage False IsTruncated False Blanks False
  4732. Category 1022689 "20200908" Parent 1022673 Levels 699 OrderBy Drill 675
  4733. Value "20200908" Label "08/09/2020" Lastuse 20201216 SourceValue "20200908"
  4734. Date 20200908 Filtered False Suppressed False Sign False HideValue False
  4735. IsKeyOrphanage False IsTruncated False Blanks False
  4736. Category 1022691 "20200909" Parent 1022673 Levels 699 OrderBy Drill 675
  4737. Value "20200909" Label "09/09/2020" Lastuse 20201216 SourceValue "20200909"
  4738. Date 20200909 Filtered False Suppressed False Sign False HideValue False
  4739. IsKeyOrphanage False IsTruncated False Blanks False
  4740. Category 1022693 "20200910" Parent 1022673 Levels 699 OrderBy Drill 675
  4741. Value "20200910" Label "10/09/2020" Lastuse 20201216 SourceValue "20200910"
  4742. Date 20200910 Filtered False Suppressed False Sign False HideValue False
  4743. IsKeyOrphanage False IsTruncated False Blanks False
  4744. Category 1022695 "20200911" Parent 1022673 Levels 699 OrderBy Drill 675
  4745. Value "20200911" Label "11/09/2020" Lastuse 20201216 SourceValue "20200911"
  4746. Date 20200911 Filtered False Suppressed False Sign False HideValue False
  4747. IsKeyOrphanage False IsTruncated False Blanks False
  4748. Category 1022697 "20200912" Parent 1022673 Levels 699 OrderBy Drill 675
  4749. Value "20200912" Label "12/09/2020" Lastuse 20201216 SourceValue "20200912"
  4750. Date 20200912 Filtered False Suppressed False Sign False HideValue False
  4751. IsKeyOrphanage False IsTruncated False Blanks False
  4752. Category 1022699 "20200913" Parent 1022673 Levels 699 OrderBy Drill 675
  4753. Value "20200913" Label "13/09/2020" Lastuse 20201216 SourceValue "20200913"
  4754. Date 20200913 Filtered False Suppressed False Sign False HideValue False
  4755. IsKeyOrphanage False IsTruncated False Blanks False
  4756. Category 1022701 "20200914" Parent 1022673 Levels 699 OrderBy Drill 675
  4757. Value "20200914" Label "14/09/2020" Lastuse 20201216 SourceValue "20200914"
  4758. Date 20200914 Filtered False Suppressed False Sign False HideValue False
  4759. IsKeyOrphanage False IsTruncated False Blanks False
  4760. Category 1022703 "20200915" Parent 1022673 Levels 699 OrderBy Drill 675
  4761. Value "20200915" Label "15/09/2020" Lastuse 20201216 SourceValue "20200915"
  4762. Date 20200915 Filtered False Suppressed False Sign False HideValue False
  4763. IsKeyOrphanage False IsTruncated False Blanks False
  4764. Category 1022705 "20200916" Parent 1022673 Levels 699 OrderBy Drill 675
  4765. Value "20200916" Label "16/09/2020" Lastuse 20201216 SourceValue "20200916"
  4766. Date 20200916 Filtered False Suppressed False Sign False HideValue False
  4767. IsKeyOrphanage False IsTruncated False Blanks False
  4768. Category 1022707 "20200917" Parent 1022673 Levels 699 OrderBy Drill 675
  4769. Value "20200917" Label "17/09/2020" Lastuse 20201216 SourceValue "20200917"
  4770. Date 20200917 Filtered False Suppressed False Sign False HideValue False
  4771. IsKeyOrphanage False IsTruncated False Blanks False
  4772. Category 1022709 "20200918" Parent 1022673 Levels 699 OrderBy Drill 675
  4773. Value "20200918" Label "18/09/2020" Lastuse 20201216 SourceValue "20200918"
  4774. Date 20200918 Filtered False Suppressed False Sign False HideValue False
  4775. IsKeyOrphanage False IsTruncated False Blanks False
  4776. Category 1022711 "20200919" Parent 1022673 Levels 699 OrderBy Drill 675
  4777. Value "20200919" Label "19/09/2020" Lastuse 20201216 SourceValue "20200919"
  4778. Date 20200919 Filtered False Suppressed False Sign False HideValue False
  4779. IsKeyOrphanage False IsTruncated False Blanks False
  4780. Category 1022713 "20200920" Parent 1022673 Levels 699 OrderBy Drill 675
  4781. Value "20200920" Label "20/09/2020" Lastuse 20201216 SourceValue "20200920"
  4782. Date 20200920 Filtered False Suppressed False Sign False HideValue False
  4783. IsKeyOrphanage False IsTruncated False Blanks False
  4784. Category 1022715 "20200921" Parent 1022673 Levels 699 OrderBy Drill 675
  4785. Value "20200921" Label "21/09/2020" Lastuse 20201216 SourceValue "20200921"
  4786. Date 20200921 Filtered False Suppressed False Sign False HideValue False
  4787. IsKeyOrphanage False IsTruncated False Blanks False
  4788. Category 1022717 "20200922" Parent 1022673 Levels 699 OrderBy Drill 675
  4789. Value "20200922" Label "22/09/2020" Lastuse 20201216 SourceValue "20200922"
  4790. Date 20200922 Filtered False Suppressed False Sign False HideValue False
  4791. IsKeyOrphanage False IsTruncated False Blanks False
  4792. Category 1022719 "20200923" Parent 1022673 Levels 699 OrderBy Drill 675
  4793. Value "20200923" Label "23/09/2020" Lastuse 20201216 SourceValue "20200923"
  4794. Date 20200923 Filtered False Suppressed False Sign False HideValue False
  4795. IsKeyOrphanage False IsTruncated False Blanks False
  4796. Category 1022721 "20200924" Parent 1022673 Levels 699 OrderBy Drill 675
  4797. Value "20200924" Label "24/09/2020" Lastuse 20201216 SourceValue "20200924"
  4798. Date 20200924 Filtered False Suppressed False Sign False HideValue False
  4799. IsKeyOrphanage False IsTruncated False Blanks False
  4800. Category 1022723 "20200925" Parent 1022673 Levels 699 OrderBy Drill 675
  4801. Value "20200925" Label "25/09/2020" Lastuse 20201216 SourceValue "20200925"
  4802. Date 20200925 Filtered False Suppressed False Sign False HideValue False
  4803. IsKeyOrphanage False IsTruncated False Blanks False
  4804. Category 1022725 "20200926" Parent 1022673 Levels 699 OrderBy Drill 675
  4805. Value "20200926" Label "26/09/2020" Lastuse 20201216 SourceValue "20200926"
  4806. Date 20200926 Filtered False Suppressed False Sign False HideValue False
  4807. IsKeyOrphanage False IsTruncated False Blanks False
  4808. Category 1022727 "20200927" Parent 1022673 Levels 699 OrderBy Drill 675
  4809. Value "20200927" Label "27/09/2020" Lastuse 20201216 SourceValue "20200927"
  4810. Date 20200927 Filtered False Suppressed False Sign False HideValue False
  4811. IsKeyOrphanage False IsTruncated False Blanks False
  4812. Category 1022729 "20200928" Parent 1022673 Levels 699 OrderBy Drill 675
  4813. Value "20200928" Label "28/09/2020" Lastuse 20201216 SourceValue "20200928"
  4814. Date 20200928 Filtered False Suppressed False Sign False HideValue False
  4815. IsKeyOrphanage False IsTruncated False Blanks False
  4816. Category 1022731 "20200929" Parent 1022673 Levels 699 OrderBy Drill 675
  4817. Value "20200929" Label "29/09/2020" Lastuse 20201216 SourceValue "20200929"
  4818. Date 20200929 Filtered False Suppressed False Sign False HideValue False
  4819. IsKeyOrphanage False IsTruncated False Blanks False
  4820. Category 1022733 "20200930" Parent 1022673 Levels 699 OrderBy Drill 675
  4821. Value "20200930" Label "30/09/2020" Lastuse 20201216 SourceValue "20200930"
  4822. Date 20200930 Filtered False Suppressed False Sign False HideValue False
  4823. IsKeyOrphanage False IsTruncated False Blanks False
  4824. Category 1022735 "20201001-20201231" Parent 1022161 Levels 687 OrderBy Drill 675
  4825. Value "20201001" Label "4. Q. 2020" Lastuse 20201216 SourceValue "20201001"
  4826. Date 20201001 Filtered False Suppressed False Sign False HideValue False
  4827. IsKeyOrphanage False IsTruncated False Blanks False
  4828. Category 1022737 "20201001-20201031" Parent 1022735 Levels 693 OrderBy Drill 675
  4829. Value "202010" Label "Okt./2020" Lastuse 20201216 SourceValue "202010"
  4830. Date 20201001 Filtered False Suppressed False Sign False HideValue False
  4831. IsKeyOrphanage False IsTruncated False Blanks False
  4832. Category 1022739 "20201001" Parent 1022737 Levels 699 OrderBy Drill 675
  4833. Value "20201001" Label "01/10/2020" Lastuse 20201216 SourceValue "20201001"
  4834. Date 20201001 Filtered False Suppressed False Sign False HideValue False
  4835. IsKeyOrphanage False IsTruncated False Blanks False
  4836. Category 1022741 "20201002" Parent 1022737 Levels 699 OrderBy Drill 675
  4837. Value "20201002" Label "02/10/2020" Lastuse 20201216 SourceValue "20201002"
  4838. Date 20201002 Filtered False Suppressed False Sign False HideValue False
  4839. IsKeyOrphanage False IsTruncated False Blanks False
  4840. Category 1022743 "20201003" Parent 1022737 Levels 699 OrderBy Drill 675
  4841. Value "20201003" Label "03/10/2020" Lastuse 20201216 SourceValue "20201003"
  4842. Date 20201003 Filtered False Suppressed False Sign False HideValue False
  4843. IsKeyOrphanage False IsTruncated False Blanks False
  4844. Category 1022745 "20201004" Parent 1022737 Levels 699 OrderBy Drill 675
  4845. Value "20201004" Label "04/10/2020" Lastuse 20201216 SourceValue "20201004"
  4846. Date 20201004 Filtered False Suppressed False Sign False HideValue False
  4847. IsKeyOrphanage False IsTruncated False Blanks False
  4848. Category 1022747 "20201005" Parent 1022737 Levels 699 OrderBy Drill 675
  4849. Value "20201005" Label "05/10/2020" Lastuse 20201216 SourceValue "20201005"
  4850. Date 20201005 Filtered False Suppressed False Sign False HideValue False
  4851. IsKeyOrphanage False IsTruncated False Blanks False
  4852. Category 1022749 "20201006" Parent 1022737 Levels 699 OrderBy Drill 675
  4853. Value "20201006" Label "06/10/2020" Lastuse 20201216 SourceValue "20201006"
  4854. Date 20201006 Filtered False Suppressed False Sign False HideValue False
  4855. IsKeyOrphanage False IsTruncated False Blanks False
  4856. Category 1022751 "20201007" Parent 1022737 Levels 699 OrderBy Drill 675
  4857. Value "20201007" Label "07/10/2020" Lastuse 20201216 SourceValue "20201007"
  4858. Date 20201007 Filtered False Suppressed False Sign False HideValue False
  4859. IsKeyOrphanage False IsTruncated False Blanks False
  4860. Category 1022753 "20201008" Parent 1022737 Levels 699 OrderBy Drill 675
  4861. Value "20201008" Label "08/10/2020" Lastuse 20201216 SourceValue "20201008"
  4862. Date 20201008 Filtered False Suppressed False Sign False HideValue False
  4863. IsKeyOrphanage False IsTruncated False Blanks False
  4864. Category 1022755 "20201009" Parent 1022737 Levels 699 OrderBy Drill 675
  4865. Value "20201009" Label "09/10/2020" Lastuse 20201216 SourceValue "20201009"
  4866. Date 20201009 Filtered False Suppressed False Sign False HideValue False
  4867. IsKeyOrphanage False IsTruncated False Blanks False
  4868. Category 1022757 "20201010" Parent 1022737 Levels 699 OrderBy Drill 675
  4869. Value "20201010" Label "10/10/2020" Lastuse 20201216 SourceValue "20201010"
  4870. Date 20201010 Filtered False Suppressed False Sign False HideValue False
  4871. IsKeyOrphanage False IsTruncated False Blanks False
  4872. Category 1022759 "20201011" Parent 1022737 Levels 699 OrderBy Drill 675
  4873. Value "20201011" Label "11/10/2020" Lastuse 20201216 SourceValue "20201011"
  4874. Date 20201011 Filtered False Suppressed False Sign False HideValue False
  4875. IsKeyOrphanage False IsTruncated False Blanks False
  4876. Category 1022761 "20201012" Parent 1022737 Levels 699 OrderBy Drill 675
  4877. Value "20201012" Label "12/10/2020" Lastuse 20201216 SourceValue "20201012"
  4878. Date 20201012 Filtered False Suppressed False Sign False HideValue False
  4879. IsKeyOrphanage False IsTruncated False Blanks False
  4880. Category 1022763 "20201013" Parent 1022737 Levels 699 OrderBy Drill 675
  4881. Value "20201013" Label "13/10/2020" Lastuse 20201216 SourceValue "20201013"
  4882. Date 20201013 Filtered False Suppressed False Sign False HideValue False
  4883. IsKeyOrphanage False IsTruncated False Blanks False
  4884. Category 1022765 "20201014" Parent 1022737 Levels 699 OrderBy Drill 675
  4885. Value "20201014" Label "14/10/2020" Lastuse 20201216 SourceValue "20201014"
  4886. Date 20201014 Filtered False Suppressed False Sign False HideValue False
  4887. IsKeyOrphanage False IsTruncated False Blanks False
  4888. Category 1022767 "20201015" Parent 1022737 Levels 699 OrderBy Drill 675
  4889. Value "20201015" Label "15/10/2020" Lastuse 20201216 SourceValue "20201015"
  4890. Date 20201015 Filtered False Suppressed False Sign False HideValue False
  4891. IsKeyOrphanage False IsTruncated False Blanks False
  4892. Category 1022769 "20201016" Parent 1022737 Levels 699 OrderBy Drill 675
  4893. Value "20201016" Label "16/10/2020" Lastuse 20201216 SourceValue "20201016"
  4894. Date 20201016 Filtered False Suppressed False Sign False HideValue False
  4895. IsKeyOrphanage False IsTruncated False Blanks False
  4896. Category 1022771 "20201017" Parent 1022737 Levels 699 OrderBy Drill 675
  4897. Value "20201017" Label "17/10/2020" Lastuse 20201216 SourceValue "20201017"
  4898. Date 20201017 Filtered False Suppressed False Sign False HideValue False
  4899. IsKeyOrphanage False IsTruncated False Blanks False
  4900. Category 1022773 "20201018" Parent 1022737 Levels 699 OrderBy Drill 675
  4901. Value "20201018" Label "18/10/2020" Lastuse 20201216 SourceValue "20201018"
  4902. Date 20201018 Filtered False Suppressed False Sign False HideValue False
  4903. IsKeyOrphanage False IsTruncated False Blanks False
  4904. Category 1022775 "20201019" Parent 1022737 Levels 699 OrderBy Drill 675
  4905. Value "20201019" Label "19/10/2020" Lastuse 20201216 SourceValue "20201019"
  4906. Date 20201019 Filtered False Suppressed False Sign False HideValue False
  4907. IsKeyOrphanage False IsTruncated False Blanks False
  4908. Category 1022777 "20201020" Parent 1022737 Levels 699 OrderBy Drill 675
  4909. Value "20201020" Label "20/10/2020" Lastuse 20201216 SourceValue "20201020"
  4910. Date 20201020 Filtered False Suppressed False Sign False HideValue False
  4911. IsKeyOrphanage False IsTruncated False Blanks False
  4912. Category 1022779 "20201021" Parent 1022737 Levels 699 OrderBy Drill 675
  4913. Value "20201021" Label "21/10/2020" Lastuse 20201216 SourceValue "20201021"
  4914. Date 20201021 Filtered False Suppressed False Sign False HideValue False
  4915. IsKeyOrphanage False IsTruncated False Blanks False
  4916. Category 1022781 "20201022" Parent 1022737 Levels 699 OrderBy Drill 675
  4917. Value "20201022" Label "22/10/2020" Lastuse 20201216 SourceValue "20201022"
  4918. Date 20201022 Filtered False Suppressed False Sign False HideValue False
  4919. IsKeyOrphanage False IsTruncated False Blanks False
  4920. Category 1022783 "20201023" Parent 1022737 Levels 699 OrderBy Drill 675
  4921. Value "20201023" Label "23/10/2020" Lastuse 20201216 SourceValue "20201023"
  4922. Date 20201023 Filtered False Suppressed False Sign False HideValue False
  4923. IsKeyOrphanage False IsTruncated False Blanks False
  4924. Category 1022785 "20201024" Parent 1022737 Levels 699 OrderBy Drill 675
  4925. Value "20201024" Label "24/10/2020" Lastuse 20201216 SourceValue "20201024"
  4926. Date 20201024 Filtered False Suppressed False Sign False HideValue False
  4927. IsKeyOrphanage False IsTruncated False Blanks False
  4928. Category 1022787 "20201025" Parent 1022737 Levels 699 OrderBy Drill 675
  4929. Value "20201025" Label "25/10/2020" Lastuse 20201216 SourceValue "20201025"
  4930. Date 20201025 Filtered False Suppressed False Sign False HideValue False
  4931. IsKeyOrphanage False IsTruncated False Blanks False
  4932. Category 1022789 "20201026" Parent 1022737 Levels 699 OrderBy Drill 675
  4933. Value "20201026" Label "26/10/2020" Lastuse 20201216 SourceValue "20201026"
  4934. Date 20201026 Filtered False Suppressed False Sign False HideValue False
  4935. IsKeyOrphanage False IsTruncated False Blanks False
  4936. Category 1022791 "20201027" Parent 1022737 Levels 699 OrderBy Drill 675
  4937. Value "20201027" Label "27/10/2020" Lastuse 20201216 SourceValue "20201027"
  4938. Date 20201027 Filtered False Suppressed False Sign False HideValue False
  4939. IsKeyOrphanage False IsTruncated False Blanks False
  4940. Category 1022793 "20201028" Parent 1022737 Levels 699 OrderBy Drill 675
  4941. Value "20201028" Label "28/10/2020" Lastuse 20201216 SourceValue "20201028"
  4942. Date 20201028 Filtered False Suppressed False Sign False HideValue False
  4943. IsKeyOrphanage False IsTruncated False Blanks False
  4944. Category 1022795 "20201029" Parent 1022737 Levels 699 OrderBy Drill 675
  4945. Value "20201029" Label "29/10/2020" Lastuse 20201216 SourceValue "20201029"
  4946. Date 20201029 Filtered False Suppressed False Sign False HideValue False
  4947. IsKeyOrphanage False IsTruncated False Blanks False
  4948. Category 1022797 "20201030" Parent 1022737 Levels 699 OrderBy Drill 675
  4949. Value "20201030" Label "30/10/2020" Lastuse 20201216 SourceValue "20201030"
  4950. Date 20201030 Filtered False Suppressed False Sign False HideValue False
  4951. IsKeyOrphanage False IsTruncated False Blanks False
  4952. Category 1022799 "20201031" Parent 1022737 Levels 699 OrderBy Drill 675
  4953. Value "20201031" Label "31/10/2020" Lastuse 20201216 SourceValue "20201031"
  4954. Date 20201031 Filtered False Suppressed False Sign False HideValue False
  4955. IsKeyOrphanage False IsTruncated False Blanks False
  4956. Category 1022801 "20201101-20201130" Parent 1022735 Levels 693 OrderBy Drill 675
  4957. Value "202011" Label "Nov./2020" Lastuse 20201216 SourceValue "202011"
  4958. Date 20201101 Filtered False Suppressed False Sign False HideValue False
  4959. IsKeyOrphanage False IsTruncated False Blanks False
  4960. Category 1022803 "20201101" Parent 1022801 Levels 699 OrderBy Drill 675
  4961. Value "20201101" Label "01/11/2020" Lastuse 20201216 SourceValue "20201101"
  4962. Date 20201101 Filtered False Suppressed False Sign False HideValue False
  4963. IsKeyOrphanage False IsTruncated False Blanks False
  4964. Category 1022805 "20201102" Parent 1022801 Levels 699 OrderBy Drill 675
  4965. Value "20201102" Label "02/11/2020" Lastuse 20201216 SourceValue "20201102"
  4966. Date 20201102 Filtered False Suppressed False Sign False HideValue False
  4967. IsKeyOrphanage False IsTruncated False Blanks False
  4968. Category 1022807 "20201103" Parent 1022801 Levels 699 OrderBy Drill 675
  4969. Value "20201103" Label "03/11/2020" Lastuse 20201216 SourceValue "20201103"
  4970. Date 20201103 Filtered False Suppressed False Sign False HideValue False
  4971. IsKeyOrphanage False IsTruncated False Blanks False
  4972. Category 1022809 "20201104" Parent 1022801 Levels 699 OrderBy Drill 675
  4973. Value "20201104" Label "04/11/2020" Lastuse 20201216 SourceValue "20201104"
  4974. Date 20201104 Filtered False Suppressed False Sign False HideValue False
  4975. IsKeyOrphanage False IsTruncated False Blanks False
  4976. Category 1022811 "20201105" Parent 1022801 Levels 699 OrderBy Drill 675
  4977. Value "20201105" Label "05/11/2020" Lastuse 20201216 SourceValue "20201105"
  4978. Date 20201105 Filtered False Suppressed False Sign False HideValue False
  4979. IsKeyOrphanage False IsTruncated False Blanks False
  4980. Category 1022813 "20201106" Parent 1022801 Levels 699 OrderBy Drill 675
  4981. Value "20201106" Label "06/11/2020" Lastuse 20201216 SourceValue "20201106"
  4982. Date 20201106 Filtered False Suppressed False Sign False HideValue False
  4983. IsKeyOrphanage False IsTruncated False Blanks False
  4984. Category 1022815 "20201107" Parent 1022801 Levels 699 OrderBy Drill 675
  4985. Value "20201107" Label "07/11/2020" Lastuse 20201216 SourceValue "20201107"
  4986. Date 20201107 Filtered False Suppressed False Sign False HideValue False
  4987. IsKeyOrphanage False IsTruncated False Blanks False
  4988. Category 1022817 "20201108" Parent 1022801 Levels 699 OrderBy Drill 675
  4989. Value "20201108" Label "08/11/2020" Lastuse 20201216 SourceValue "20201108"
  4990. Date 20201108 Filtered False Suppressed False Sign False HideValue False
  4991. IsKeyOrphanage False IsTruncated False Blanks False
  4992. Category 1022819 "20201109" Parent 1022801 Levels 699 OrderBy Drill 675
  4993. Value "20201109" Label "09/11/2020" Lastuse 20201216 SourceValue "20201109"
  4994. Date 20201109 Filtered False Suppressed False Sign False HideValue False
  4995. IsKeyOrphanage False IsTruncated False Blanks False
  4996. Category 1022821 "20201110" Parent 1022801 Levels 699 OrderBy Drill 675
  4997. Value "20201110" Label "10/11/2020" Lastuse 20201216 SourceValue "20201110"
  4998. Date 20201110 Filtered False Suppressed False Sign False HideValue False
  4999. IsKeyOrphanage False IsTruncated False Blanks False
  5000. Category 1022823 "20201111" Parent 1022801 Levels 699 OrderBy Drill 675
  5001. Value "20201111" Label "11/11/2020" Lastuse 20201216 SourceValue "20201111"
  5002. Date 20201111 Filtered False Suppressed False Sign False HideValue False
  5003. IsKeyOrphanage False IsTruncated False Blanks False
  5004. Category 1022825 "20201112" Parent 1022801 Levels 699 OrderBy Drill 675
  5005. Value "20201112" Label "12/11/2020" Lastuse 20201216 SourceValue "20201112"
  5006. Date 20201112 Filtered False Suppressed False Sign False HideValue False
  5007. IsKeyOrphanage False IsTruncated False Blanks False
  5008. Category 1022827 "20201113" Parent 1022801 Levels 699 OrderBy Drill 675
  5009. Value "20201113" Label "13/11/2020" Lastuse 20201216 SourceValue "20201113"
  5010. Date 20201113 Filtered False Suppressed False Sign False HideValue False
  5011. IsKeyOrphanage False IsTruncated False Blanks False
  5012. Category 1022829 "20201114" Parent 1022801 Levels 699 OrderBy Drill 675
  5013. Value "20201114" Label "14/11/2020" Lastuse 20201216 SourceValue "20201114"
  5014. Date 20201114 Filtered False Suppressed False Sign False HideValue False
  5015. IsKeyOrphanage False IsTruncated False Blanks False
  5016. Category 1022831 "20201115" Parent 1022801 Levels 699 OrderBy Drill 675
  5017. Value "20201115" Label "15/11/2020" Lastuse 20201216 SourceValue "20201115"
  5018. Date 20201115 Filtered False Suppressed False Sign False HideValue False
  5019. IsKeyOrphanage False IsTruncated False Blanks False
  5020. Category 1022833 "20201116" Parent 1022801 Levels 699 OrderBy Drill 675
  5021. Value "20201116" Label "16/11/2020" Lastuse 20201216 SourceValue "20201116"
  5022. Date 20201116 Filtered False Suppressed False Sign False HideValue False
  5023. IsKeyOrphanage False IsTruncated False Blanks False
  5024. Category 1022835 "20201117" Parent 1022801 Levels 699 OrderBy Drill 675
  5025. Value "20201117" Label "17/11/2020" Lastuse 20201216 SourceValue "20201117"
  5026. Date 20201117 Filtered False Suppressed False Sign False HideValue False
  5027. IsKeyOrphanage False IsTruncated False Blanks False
  5028. Category 1022837 "20201118" Parent 1022801 Levels 699 OrderBy Drill 675
  5029. Value "20201118" Label "18/11/2020" Lastuse 20201216 SourceValue "20201118"
  5030. Date 20201118 Filtered False Suppressed False Sign False HideValue False
  5031. IsKeyOrphanage False IsTruncated False Blanks False
  5032. Category 1022839 "20201119" Parent 1022801 Levels 699 OrderBy Drill 675
  5033. Value "20201119" Label "19/11/2020" Lastuse 20201216 SourceValue "20201119"
  5034. Date 20201119 Filtered False Suppressed False Sign False HideValue False
  5035. IsKeyOrphanage False IsTruncated False Blanks False
  5036. Category 1022841 "20201120" Parent 1022801 Levels 699 OrderBy Drill 675
  5037. Value "20201120" Label "20/11/2020" Lastuse 20201216 SourceValue "20201120"
  5038. Date 20201120 Filtered False Suppressed False Sign False HideValue False
  5039. IsKeyOrphanage False IsTruncated False Blanks False
  5040. Category 1022843 "20201121" Parent 1022801 Levels 699 OrderBy Drill 675
  5041. Value "20201121" Label "21/11/2020" Lastuse 20201216 SourceValue "20201121"
  5042. Date 20201121 Filtered False Suppressed False Sign False HideValue False
  5043. IsKeyOrphanage False IsTruncated False Blanks False
  5044. Category 1022845 "20201122" Parent 1022801 Levels 699 OrderBy Drill 675
  5045. Value "20201122" Label "22/11/2020" Lastuse 20201216 SourceValue "20201122"
  5046. Date 20201122 Filtered False Suppressed False Sign False HideValue False
  5047. IsKeyOrphanage False IsTruncated False Blanks False
  5048. Category 1022847 "20201123" Parent 1022801 Levels 699 OrderBy Drill 675
  5049. Value "20201123" Label "23/11/2020" Lastuse 20201216 SourceValue "20201123"
  5050. Date 20201123 Filtered False Suppressed False Sign False HideValue False
  5051. IsKeyOrphanage False IsTruncated False Blanks False
  5052. Category 1022849 "20201124" Parent 1022801 Levels 699 OrderBy Drill 675
  5053. Value "20201124" Label "24/11/2020" Lastuse 20201216 SourceValue "20201124"
  5054. Date 20201124 Filtered False Suppressed False Sign False HideValue False
  5055. IsKeyOrphanage False IsTruncated False Blanks False
  5056. Category 1022851 "20201125" Parent 1022801 Levels 699 OrderBy Drill 675
  5057. Value "20201125" Label "25/11/2020" Lastuse 20201216 SourceValue "20201125"
  5058. Date 20201125 Filtered False Suppressed False Sign False HideValue False
  5059. IsKeyOrphanage False IsTruncated False Blanks False
  5060. Category 1022853 "20201126" Parent 1022801 Levels 699 OrderBy Drill 675
  5061. Value "20201126" Label "26/11/2020" Lastuse 20201216 SourceValue "20201126"
  5062. Date 20201126 Filtered False Suppressed False Sign False HideValue False
  5063. IsKeyOrphanage False IsTruncated False Blanks False
  5064. Category 1022855 "20201127" Parent 1022801 Levels 699 OrderBy Drill 675
  5065. Value "20201127" Label "27/11/2020" Lastuse 20201216 SourceValue "20201127"
  5066. Date 20201127 Filtered False Suppressed False Sign False HideValue False
  5067. IsKeyOrphanage False IsTruncated False Blanks False
  5068. Category 1022857 "20201128" Parent 1022801 Levels 699 OrderBy Drill 675
  5069. Value "20201128" Label "28/11/2020" Lastuse 20201216 SourceValue "20201128"
  5070. Date 20201128 Filtered False Suppressed False Sign False HideValue False
  5071. IsKeyOrphanage False IsTruncated False Blanks False
  5072. Category 1022859 "20201129" Parent 1022801 Levels 699 OrderBy Drill 675
  5073. Value "20201129" Label "29/11/2020" Lastuse 20201216 SourceValue "20201129"
  5074. Date 20201129 Filtered False Suppressed False Sign False HideValue False
  5075. IsKeyOrphanage False IsTruncated False Blanks False
  5076. Category 1022861 "20201130" Parent 1022801 Levels 699 OrderBy Drill 675
  5077. Value "20201130" Label "30/11/2020" Lastuse 20201216 SourceValue "20201130"
  5078. Date 20201130 Filtered False Suppressed False Sign False HideValue False
  5079. IsKeyOrphanage False IsTruncated False Blanks False
  5080. Category 1022863 "20201201-20201231" Parent 1022735 Levels 693 OrderBy Drill 675
  5081. Value "202012" Label "Dez./2020" Lastuse 20201216 SourceValue "202012"
  5082. Date 20201201 Filtered False Suppressed False Sign False HideValue False
  5083. IsKeyOrphanage False IsTruncated False Blanks False
  5084. Category 1022865 "20201201" Parent 1022863 Levels 699 OrderBy Drill 675
  5085. Value "20201201" Label "01/12/2020" Lastuse 20201216 SourceValue "20201201"
  5086. Date 20201201 Filtered False Suppressed False Sign False HideValue False
  5087. IsKeyOrphanage False IsTruncated False Blanks False
  5088. Category 1022867 "20201202" Parent 1022863 Levels 699 OrderBy Drill 675
  5089. Value "20201202" Label "02/12/2020" Lastuse 20201216 SourceValue "20201202"
  5090. Date 20201202 Filtered False Suppressed False Sign False HideValue False
  5091. IsKeyOrphanage False IsTruncated False Blanks False
  5092. Category 1022869 "20201203" Parent 1022863 Levels 699 OrderBy Drill 675
  5093. Value "20201203" Label "03/12/2020" Lastuse 20201216 SourceValue "20201203"
  5094. Date 20201203 Filtered False Suppressed False Sign False HideValue False
  5095. IsKeyOrphanage False IsTruncated False Blanks False
  5096. Category 1022871 "20201204" Parent 1022863 Levels 699 OrderBy Drill 675
  5097. Value "20201204" Label "04/12/2020" Lastuse 20201216 SourceValue "20201204"
  5098. Date 20201204 Filtered False Suppressed False Sign False HideValue False
  5099. IsKeyOrphanage False IsTruncated False Blanks False
  5100. Category 1022873 "20201205" Parent 1022863 Levels 699 OrderBy Drill 675
  5101. Value "20201205" Label "05/12/2020" Lastuse 20201216 SourceValue "20201205"
  5102. Date 20201205 Filtered False Suppressed False Sign False HideValue False
  5103. IsKeyOrphanage False IsTruncated False Blanks False
  5104. Category 1022875 "20201206" Parent 1022863 Levels 699 OrderBy Drill 675
  5105. Value "20201206" Label "06/12/2020" Lastuse 20201216 SourceValue "20201206"
  5106. Date 20201206 Filtered False Suppressed False Sign False HideValue False
  5107. IsKeyOrphanage False IsTruncated False Blanks False
  5108. Category 1022877 "20201207" Parent 1022863 Levels 699 OrderBy Drill 675
  5109. Value "20201207" Label "07/12/2020" Lastuse 20201216 SourceValue "20201207"
  5110. Date 20201207 Filtered False Suppressed False Sign False HideValue False
  5111. IsKeyOrphanage False IsTruncated False Blanks False
  5112. Category 1022879 "20201208" Parent 1022863 Levels 699 OrderBy Drill 675
  5113. Value "20201208" Label "08/12/2020" Lastuse 20201216 SourceValue "20201208"
  5114. Date 20201208 Filtered False Suppressed False Sign False HideValue False
  5115. IsKeyOrphanage False IsTruncated False Blanks False
  5116. Category 1022881 "20201209" Parent 1022863 Levels 699 OrderBy Drill 675
  5117. Value "20201209" Label "09/12/2020" Lastuse 20201216 SourceValue "20201209"
  5118. Date 20201209 Filtered False Suppressed False Sign False HideValue False
  5119. IsKeyOrphanage False IsTruncated False Blanks False
  5120. Category 1022883 "20201210" Parent 1022863 Levels 699 OrderBy Drill 675
  5121. Value "20201210" Label "10/12/2020" Lastuse 20201216 SourceValue "20201210"
  5122. Date 20201210 Filtered False Suppressed False Sign False HideValue False
  5123. IsKeyOrphanage False IsTruncated False Blanks False
  5124. Category 1022885 "20201211" Parent 1022863 Levels 699 OrderBy Drill 675
  5125. Value "20201211" Label "11/12/2020" Lastuse 20201216 SourceValue "20201211"
  5126. Date 20201211 Filtered False Suppressed False Sign False HideValue False
  5127. IsKeyOrphanage False IsTruncated False Blanks False
  5128. Category 1022887 "20201212" Parent 1022863 Levels 699 OrderBy Drill 675
  5129. Value "20201212" Label "12/12/2020" Lastuse 20201216 SourceValue "20201212"
  5130. Date 20201212 Filtered False Suppressed False Sign False HideValue False
  5131. IsKeyOrphanage False IsTruncated False Blanks False
  5132. Category 1022889 "20201213" Parent 1022863 Levels 699 OrderBy Drill 675
  5133. Value "20201213" Label "13/12/2020" Lastuse 20201216 SourceValue "20201213"
  5134. Date 20201213 Filtered False Suppressed False Sign False HideValue False
  5135. IsKeyOrphanage False IsTruncated False Blanks False
  5136. Category 1022891 "20201214" Parent 1022863 Levels 699 OrderBy Drill 675
  5137. Value "20201214" Label "14/12/2020" Lastuse 20201216 SourceValue "20201214"
  5138. Date 20201214 Filtered False Suppressed False Sign False HideValue False
  5139. IsKeyOrphanage False IsTruncated False Blanks False
  5140. Category 1022893 "20201215" Parent 1022863 Levels 699 OrderBy Drill 675
  5141. Value "20201215" Label "15/12/2020" Lastuse 20201216 SourceValue "20201215"
  5142. Date 20201215 Current Filtered False Suppressed False Sign False HideValue False
  5143. IsKeyOrphanage False IsTruncated False Blanks False
  5144. Category 1022895 "20201216" Parent 1022863 Levels 699 OrderBy Drill 675
  5145. Value "20201216" Label "16/12/2020" Lastuse 20201216 SourceValue "20201216"
  5146. Date 20201216 Filtered False Suppressed False Sign False HideValue False
  5147. IsKeyOrphanage False IsTruncated False Blanks False
  5148. Category 1022897 "20201217" Parent 1022863 Levels 699 OrderBy Drill 675
  5149. Value "20201217" Label "17/12/2020" Lastuse 20201216 SourceValue "20201217"
  5150. Date 20201217 Filtered False Suppressed False Sign False HideValue False
  5151. IsKeyOrphanage False IsTruncated False Blanks False
  5152. Category 1022899 "20201218" Parent 1022863 Levels 699 OrderBy Drill 675
  5153. Value "20201218" Label "18/12/2020" Lastuse 20201216 SourceValue "20201218"
  5154. Date 20201218 Filtered False Suppressed False Sign False HideValue False
  5155. IsKeyOrphanage False IsTruncated False Blanks False
  5156. Category 1022901 "20201219" Parent 1022863 Levels 699 OrderBy Drill 675
  5157. Value "20201219" Label "19/12/2020" Lastuse 20201216 SourceValue "20201219"
  5158. Date 20201219 Filtered False Suppressed False Sign False HideValue False
  5159. IsKeyOrphanage False IsTruncated False Blanks False
  5160. Category 1022903 "20201220" Parent 1022863 Levels 699 OrderBy Drill 675
  5161. Value "20201220" Label "20/12/2020" Lastuse 20201216 SourceValue "20201220"
  5162. Date 20201220 Filtered False Suppressed False Sign False HideValue False
  5163. IsKeyOrphanage False IsTruncated False Blanks False
  5164. Category 1022905 "20201221" Parent 1022863 Levels 699 OrderBy Drill 675
  5165. Value "20201221" Label "21/12/2020" Lastuse 20201216 SourceValue "20201221"
  5166. Date 20201221 Filtered False Suppressed False Sign False HideValue False
  5167. IsKeyOrphanage False IsTruncated False Blanks False
  5168. Category 1022907 "20201222" Parent 1022863 Levels 699 OrderBy Drill 675
  5169. Value "20201222" Label "22/12/2020" Lastuse 20201216 SourceValue "20201222"
  5170. Date 20201222 Filtered False Suppressed False Sign False HideValue False
  5171. IsKeyOrphanage False IsTruncated False Blanks False
  5172. Category 1022909 "20201223" Parent 1022863 Levels 699 OrderBy Drill 675
  5173. Value "20201223" Label "23/12/2020" Lastuse 20201216 SourceValue "20201223"
  5174. Date 20201223 Filtered False Suppressed False Sign False HideValue False
  5175. IsKeyOrphanage False IsTruncated False Blanks False
  5176. Category 1022911 "20201224" Parent 1022863 Levels 699 OrderBy Drill 675
  5177. Value "20201224" Label "24/12/2020" Lastuse 20201216 SourceValue "20201224"
  5178. Date 20201224 Filtered False Suppressed False Sign False HideValue False
  5179. IsKeyOrphanage False IsTruncated False Blanks False
  5180. Category 1022913 "20201225" Parent 1022863 Levels 699 OrderBy Drill 675
  5181. Value "20201225" Label "25/12/2020" Lastuse 20201216 SourceValue "20201225"
  5182. Date 20201225 Filtered False Suppressed False Sign False HideValue False
  5183. IsKeyOrphanage False IsTruncated False Blanks False
  5184. Category 1022915 "20201226" Parent 1022863 Levels 699 OrderBy Drill 675
  5185. Value "20201226" Label "26/12/2020" Lastuse 20201216 SourceValue "20201226"
  5186. Date 20201226 Filtered False Suppressed False Sign False HideValue False
  5187. IsKeyOrphanage False IsTruncated False Blanks False
  5188. Category 1022917 "20201227" Parent 1022863 Levels 699 OrderBy Drill 675
  5189. Value "20201227" Label "27/12/2020" Lastuse 20201216 SourceValue "20201227"
  5190. Date 20201227 Filtered False Suppressed False Sign False HideValue False
  5191. IsKeyOrphanage False IsTruncated False Blanks False
  5192. Category 1022919 "20201228" Parent 1022863 Levels 699 OrderBy Drill 675
  5193. Value "20201228" Label "28/12/2020" Lastuse 20201216 SourceValue "20201228"
  5194. Date 20201228 Filtered False Suppressed False Sign False HideValue False
  5195. IsKeyOrphanage False IsTruncated False Blanks False
  5196. Category 1022921 "20201229" Parent 1022863 Levels 699 OrderBy Drill 675
  5197. Value "20201229" Label "29/12/2020" Lastuse 20201216 SourceValue "20201229"
  5198. Date 20201229 Filtered False Suppressed False Sign False HideValue False
  5199. IsKeyOrphanage False IsTruncated False Blanks False
  5200. Category 1022923 "20201230" Parent 1022863 Levels 699 OrderBy Drill 675
  5201. Value "20201230" Label "30/12/2020" Lastuse 20201216 SourceValue "20201230"
  5202. Date 20201230 Filtered False Suppressed False Sign False HideValue False
  5203. IsKeyOrphanage False IsTruncated False Blanks False
  5204. Category 1022925 "20201231" Parent 1022863 Levels 699 OrderBy Drill 675
  5205. Value "20201231" Label "31/12/2020" Lastuse 20201216 SourceValue "20201231"
  5206. Date 20201231 Filtered False Suppressed False Sign False HideValue False
  5207. IsKeyOrphanage False IsTruncated False Blanks False
  5208. SpecialCategory 705 "Aktueller Tag" Parent 673 Levels 0 Lastuse 20201216
  5209. Rollup True TimeAggregate Single RunningPeriods 0 TargetOffset 0 TargetLevel "Tag"
  5210. ContextOffset 0 DateDrill 675 Primary 1022893 Sign False
  5211. SpecialCategory 707 "Gestern" Parent 673 Levels 0 Lastuse 20201216 Rollup True
  5212. TimeAggregate Single RunningPeriods 0 TargetOffset -1 TargetLevel "Tag"
  5213. ContextOffset 0 DateDrill 675 Primary 1022891 Sign False
  5214. SpecialCategory 709 "M bisher" Parent 673 Levels 0 Lastuse 20201216 Rollup True
  5215. TimeAggregate ToDate RunningPeriods 0 ToDateLevel "Monat" TargetOffset 0
  5216. TargetLevel "Tag" ContextOffset 0 DateDrill 675 Primary 1022865 Primary 1022867
  5217. Primary 1022869 Primary 1022871 Primary 1022873 Primary 1022875 Primary 1022877
  5218. Primary 1022879 Primary 1022881 Primary 1022883 Primary 1022885 Primary 1022887
  5219. Primary 1022889 Primary 1022891 Primary 1022893 Sign False
  5220. SpecialCategory 711 "Voriger M bisher" Parent 673 Levels 0 Lastuse 20201216
  5221. Rollup True TimeAggregate ToDate RunningPeriods 0 ToDateLevel "Monat" TargetOffset 0
  5222. TargetLevel "Tag" ContextOffset -1 ContextLevel "Monat" DateDrill 675 Primary 1022803
  5223. Primary 1022805 Primary 1022807 Primary 1022809 Primary 1022811 Primary 1022813
  5224. Primary 1022815 Primary 1022817 Primary 1022819 Primary 1022821 Primary 1022823
  5225. Primary 1022825 Primary 1022827 Primary 1022829 Primary 1022831 Sign False
  5226. SpecialCategory 713 "M bisher gruppiert" Parent 673 Levels 0 Lastuse 20201216
  5227. Rollup True TimeAggregate ToDate_Grp RunningPeriods 0 ToDateLevel "Monat"
  5228. TargetOffset 0 TargetLevel "Tag" ContextOffset -1 ContextLevel "Monat"
  5229. DateDrill 675 TransientLevelList 447501 For 713 EndList Primary 1553 Primary 1551
  5230. Primary 1555 Primary 1557 Sign False
  5231. SpecialCategory 1553 "M bisher gruppiert~Voriger M bisher" Parent 713 Levels 0
  5232. Label "Voriger M bisher" Lastuse 20201216 Rollup False TimeAggregate ToDate
  5233. RunningPeriods 0 ToDateLevel "Monat" TargetOffset 0 TargetLevel "Tag" ContextOffset -1
  5234. ContextLevel "Monat" DateDrill 675 Primary 1022803 Primary 1022805 Primary 1022807
  5235. Primary 1022809 Primary 1022811 Primary 1022813 Primary 1022815 Primary 1022817
  5236. Primary 1022819 Primary 1022821 Primary 1022823 Primary 1022825 Primary 1022827
  5237. Primary 1022829 Primary 1022831 Sign False
  5238. SpecialCategory 1551 "M bisher gruppiert~M bisher" Parent 713 Levels 0
  5239. Label "M bisher" Lastuse 20201216 Rollup False TimeAggregate ToDate RunningPeriods 0
  5240. ToDateLevel "Monat" TargetOffset 0 TargetLevel "Tag" ContextOffset 0 DateDrill 675
  5241. Primary 1022865 Primary 1022867 Primary 1022869 Primary 1022871 Primary 1022873
  5242. Primary 1022875 Primary 1022877 Primary 1022879 Primary 1022881 Primary 1022883
  5243. Primary 1022885 Primary 1022887 Primary 1022889 Primary 1022891 Primary 1022893
  5244. Sign False
  5245. SpecialCategory 1555 "M bisher gruppiert~ÄNDERUNG ( ""Voriger M bisher"" , ""M bisher"" )"
  5246. Parent 713 Levels 0 Label "M bisher Änderung" Lastuse 20201216 Rollup False
  5247. TimeAggregate None Calc change ( "M bisher gruppiert~Voriger M bisher@1553" , "M bisher gruppiert~M bisher@1551" ) Sign False
  5248. SpecialCategory 1557 "M bisher gruppiert~PROZENTZUWACHS ( ""Voriger M bisher"" , ""M bisher"" )"
  5249. Parent 713 Levels 0 Label "M bisher Zuwachs" Lastuse 20201216 Rollup False
  5250. TimeAggregate None Calc percent-growth ( "M bisher gruppiert~Voriger M bisher@1553" , "M bisher gruppiert~M bisher@1551" ) Format "0%~2"
  5251. Sign False
  5252. SpecialCategory 745905 "745905" Parent 673 Levels 0 Label "M bisher VJ"
  5253. Lastuse 20201216 Rollup False TimeAggregate ToDate RunningPeriods 0 ToDateLevel "Monat"
  5254. TargetOffset 0 TargetLevel "Tag" ContextOffset -1 ContextLevel "Jahr" DateDrill 675
  5255. Primary 1033209 Primary 1033211 Primary 1033213 Primary 1033215 Primary 1033217
  5256. Primary 1033219 Primary 1033221 Primary 1033223 Primary 1033225 Primary 1033227
  5257. Primary 1033229 Primary 1033231 Primary 1033233 Primary 1033235 Primary 1033237
  5258. Sign False
  5259. SpecialCategory 715 "Q bisher" Parent 673 Levels 0 Lastuse 20201216 Rollup True
  5260. TimeAggregate ToDate RunningPeriods 0 ToDateLevel "Quartal" TargetOffset 0
  5261. TargetLevel "Tag" ContextOffset 0 DateDrill 675 TransientLevelList 447503 For 693
  5262. EndList Primary 444707 Primary 1020349 Primary 1020351 Sign False
  5263. SpecialCategory 444707 "Q bisher~Monat1" Parent 715 Levels 0 Label "Okt./2020"
  5264. Inclusion Generate Lastuse 20201216 Rollup True TimeAggregate None Primary 1022739
  5265. Primary 1022741 Primary 1022743 Primary 1022745 Primary 1022747 Primary 1022749
  5266. Primary 1022751 Primary 1022753 Primary 1022755 Primary 1022757 Primary 1022759
  5267. Primary 1022761 Primary 1022763 Primary 1022765 Primary 1022767 Primary 1022769
  5268. Primary 1022771 Primary 1022773 Primary 1022775 Primary 1022777 Primary 1022779
  5269. Primary 1022781 Primary 1022783 Primary 1022785 Primary 1022787 Primary 1022789
  5270. Primary 1022791 Primary 1022793 Primary 1022795 Primary 1022797 Primary 1022799
  5271. Sign False
  5272. SpecialCategory 1020349 "Q bisher~Monat2" Parent 715 Levels 0 Label "Nov./2020"
  5273. Inclusion Generate Lastuse 20201216 Rollup True TimeAggregate None Primary 1022803
  5274. Primary 1022805 Primary 1022807 Primary 1022809 Primary 1022811 Primary 1022813
  5275. Primary 1022815 Primary 1022817 Primary 1022819 Primary 1022821 Primary 1022823
  5276. Primary 1022825 Primary 1022827 Primary 1022829 Primary 1022831 Primary 1022833
  5277. Primary 1022835 Primary 1022837 Primary 1022839 Primary 1022841 Primary 1022843
  5278. Primary 1022845 Primary 1022847 Primary 1022849 Primary 1022851 Primary 1022853
  5279. Primary 1022855 Primary 1022857 Primary 1022859 Primary 1022861 Sign False
  5280. SpecialCategory 1020351 "Q bisher~Monat3" Parent 715 Levels 0 Label "Dez./2020"
  5281. Inclusion Generate Lastuse 20201216 Rollup True TimeAggregate None Primary 1022865
  5282. Primary 1022867 Primary 1022869 Primary 1022871 Primary 1022873 Primary 1022875
  5283. Primary 1022877 Primary 1022879 Primary 1022881 Primary 1022883 Primary 1022885
  5284. Primary 1022887 Primary 1022889 Primary 1022891 Primary 1022893 Sign False
  5285. SpecialCategory 717 "Voriges Q bisher" Parent 673 Levels 0 Lastuse 20201216
  5286. Rollup True TimeAggregate ToDate RunningPeriods 0 ToDateLevel "Quartal"
  5287. TargetOffset 0 TargetLevel "Tag" ContextOffset -1 ContextLevel "Quartal"
  5288. DateDrill 675 TransientLevelList 447505 For 693 EndList Primary 444709
  5289. Primary 1020353 Primary 1020355 Sign False
  5290. SpecialCategory 444709 "Voriges Q bisher~Monat1" Parent 717 Levels 0 Label "Juli/2020"
  5291. Inclusion Generate Lastuse 20201216 Rollup True TimeAggregate None Primary 1022547
  5292. Primary 1022549 Primary 1022551 Primary 1022553 Primary 1022555 Primary 1022557
  5293. Primary 1022559 Primary 1022561 Primary 1022563 Primary 1022565 Primary 1022567
  5294. Primary 1022569 Primary 1022571 Primary 1022573 Primary 1022575 Primary 1022577
  5295. Primary 1022579 Primary 1022581 Primary 1022583 Primary 1022585 Primary 1022587
  5296. Primary 1022589 Primary 1022591 Primary 1022593 Primary 1022595 Primary 1022597
  5297. Primary 1022599 Primary 1022601 Primary 1022603 Primary 1022605 Primary 1022607
  5298. Sign False
  5299. SpecialCategory 1020353 "Voriges Q bisher~Monat2" Parent 717 Levels 0 Label "Aug./2020"
  5300. Inclusion Generate Lastuse 20201216 Rollup True TimeAggregate None Primary 1022611
  5301. Primary 1022613 Primary 1022615 Primary 1022617 Primary 1022619 Primary 1022621
  5302. Primary 1022623 Primary 1022625 Primary 1022627 Primary 1022629 Primary 1022631
  5303. Primary 1022633 Primary 1022635 Primary 1022637 Primary 1022639 Primary 1022641
  5304. Primary 1022643 Primary 1022645 Primary 1022647 Primary 1022649 Primary 1022651
  5305. Primary 1022653 Primary 1022655 Primary 1022657 Primary 1022659 Primary 1022661
  5306. Primary 1022663 Primary 1022665 Primary 1022667 Primary 1022669 Primary 1022671
  5307. Sign False
  5308. SpecialCategory 1020355 "Voriges Q bisher~Monat3" Parent 717 Levels 0 Label "Sept./2020"
  5309. Inclusion Generate Lastuse 20201216 Rollup True TimeAggregate None Primary 1022675
  5310. Primary 1022677 Primary 1022679 Primary 1022681 Primary 1022683 Primary 1022685
  5311. Primary 1022687 Primary 1022689 Primary 1022691 Primary 1022693 Primary 1022695
  5312. Primary 1022697 Primary 1022699 Primary 1022701 Sign False
  5313. SpecialCategory 719 "Q bisher gruppiert" Parent 673 Levels 0 Lastuse 20201216
  5314. Rollup True TimeAggregate ToDate_Grp RunningPeriods 0 ToDateLevel "Quartal"
  5315. TargetOffset 0 TargetLevel "Tag" ContextOffset -1 ContextLevel "Quartal"
  5316. DateDrill 675 TransientLevelList 447507 For 719 447509 For 693 EndList Primary 1567
  5317. Primary 1563 Primary 1571 Primary 1573 Sign False
  5318. SpecialCategory 1567 "Q bisher gruppiert~Voriges Q bisher" Parent 719 Levels 0
  5319. Label "Voriges Q bisher" Lastuse 20201216 Rollup False TimeAggregate ToDate
  5320. RunningPeriods 0 ToDateLevel "Quartal" TargetOffset 0 TargetLevel "Tag"
  5321. ContextOffset -1 ContextLevel "Quartal" DateDrill 675 Primary 444711 Primary 1020357
  5322. Primary 1020359 Sign False
  5323. SpecialCategory 444711 "Q bisher gruppiert~Voriges Q bisher~Monat1" Parent 1567
  5324. Levels 0 Label "Juli/2020" Inclusion Generate Lastuse 20201216 Rollup True
  5325. TimeAggregate None Primary 1022547 Primary 1022549 Primary 1022551 Primary 1022553
  5326. Primary 1022555 Primary 1022557 Primary 1022559 Primary 1022561 Primary 1022563
  5327. Primary 1022565 Primary 1022567 Primary 1022569 Primary 1022571 Primary 1022573
  5328. Primary 1022575 Primary 1022577 Primary 1022579 Primary 1022581 Primary 1022583
  5329. Primary 1022585 Primary 1022587 Primary 1022589 Primary 1022591 Primary 1022593
  5330. Primary 1022595 Primary 1022597 Primary 1022599 Primary 1022601 Primary 1022603
  5331. Primary 1022605 Primary 1022607 Sign False
  5332. SpecialCategory 1020357 "Q bisher gruppiert~Voriges Q bisher~Monat2" Parent 1567
  5333. Levels 0 Label "Aug./2020" Inclusion Generate Lastuse 20201216 Rollup True
  5334. TimeAggregate None Primary 1022611 Primary 1022613 Primary 1022615 Primary 1022617
  5335. Primary 1022619 Primary 1022621 Primary 1022623 Primary 1022625 Primary 1022627
  5336. Primary 1022629 Primary 1022631 Primary 1022633 Primary 1022635 Primary 1022637
  5337. Primary 1022639 Primary 1022641 Primary 1022643 Primary 1022645 Primary 1022647
  5338. Primary 1022649 Primary 1022651 Primary 1022653 Primary 1022655 Primary 1022657
  5339. Primary 1022659 Primary 1022661 Primary 1022663 Primary 1022665 Primary 1022667
  5340. Primary 1022669 Primary 1022671 Sign False
  5341. SpecialCategory 1020359 "Q bisher gruppiert~Voriges Q bisher~Monat3" Parent 1567
  5342. Levels 0 Label "Sept./2020" Inclusion Generate Lastuse 20201216 Rollup True
  5343. TimeAggregate None Primary 1022675 Primary 1022677 Primary 1022679 Primary 1022681
  5344. Primary 1022683 Primary 1022685 Primary 1022687 Primary 1022689 Primary 1022691
  5345. Primary 1022693 Primary 1022695 Primary 1022697 Primary 1022699 Primary 1022701
  5346. Sign False
  5347. SpecialCategory 1563 "Q bisher gruppiert~Q bisher" Parent 719 Levels 0
  5348. Label "Q bisher" Lastuse 20201216 Rollup False TimeAggregate ToDate RunningPeriods 0
  5349. ToDateLevel "Quartal" TargetOffset 0 TargetLevel "Tag" ContextOffset 0
  5350. DateDrill 675 Primary 444713 Primary 1020361 Primary 1020363 Sign False
  5351. SpecialCategory 444713 "Q bisher gruppiert~Q bisher~Monat1" Parent 1563
  5352. Levels 0 Label "Okt./2020" Inclusion Generate Lastuse 20201216 Rollup True
  5353. TimeAggregate None Primary 1022739 Primary 1022741 Primary 1022743 Primary 1022745
  5354. Primary 1022747 Primary 1022749 Primary 1022751 Primary 1022753 Primary 1022755
  5355. Primary 1022757 Primary 1022759 Primary 1022761 Primary 1022763 Primary 1022765
  5356. Primary 1022767 Primary 1022769 Primary 1022771 Primary 1022773 Primary 1022775
  5357. Primary 1022777 Primary 1022779 Primary 1022781 Primary 1022783 Primary 1022785
  5358. Primary 1022787 Primary 1022789 Primary 1022791 Primary 1022793 Primary 1022795
  5359. Primary 1022797 Primary 1022799 Sign False
  5360. SpecialCategory 1020361 "Q bisher gruppiert~Q bisher~Monat2" Parent 1563
  5361. Levels 0 Label "Nov./2020" Inclusion Generate Lastuse 20201216 Rollup True
  5362. TimeAggregate None Primary 1022803 Primary 1022805 Primary 1022807 Primary 1022809
  5363. Primary 1022811 Primary 1022813 Primary 1022815 Primary 1022817 Primary 1022819
  5364. Primary 1022821 Primary 1022823 Primary 1022825 Primary 1022827 Primary 1022829
  5365. Primary 1022831 Primary 1022833 Primary 1022835 Primary 1022837 Primary 1022839
  5366. Primary 1022841 Primary 1022843 Primary 1022845 Primary 1022847 Primary 1022849
  5367. Primary 1022851 Primary 1022853 Primary 1022855 Primary 1022857 Primary 1022859
  5368. Primary 1022861 Sign False
  5369. SpecialCategory 1020363 "Q bisher gruppiert~Q bisher~Monat3" Parent 1563
  5370. Levels 0 Label "Dez./2020" Inclusion Generate Lastuse 20201216 Rollup True
  5371. TimeAggregate None Primary 1022865 Primary 1022867 Primary 1022869 Primary 1022871
  5372. Primary 1022873 Primary 1022875 Primary 1022877 Primary 1022879 Primary 1022881
  5373. Primary 1022883 Primary 1022885 Primary 1022887 Primary 1022889 Primary 1022891
  5374. Primary 1022893 Sign False
  5375. SpecialCategory 1571 "Q bisher gruppiert~ÄNDERUNG ( ""Voriges Q bisher"" , ""Q bisher"" )"
  5376. Parent 719 Levels 0 Label "Q bisher Änderung" Lastuse 20201216 Rollup False
  5377. TimeAggregate None Calc change ( "Q bisher gruppiert~Voriges Q bisher@1567" , "Q bisher gruppiert~Q bisher@1563" ) Sign False
  5378. SpecialCategory 1573 "Q bisher gruppiert~PROZENTZUWACHS ( ""Voriges Q bisher"" , ""Q bisher"" )"
  5379. Parent 719 Levels 0 Label "Q bisher Zuwachs" Lastuse 20201216 Rollup False
  5380. TimeAggregate None Calc percent-growth ( "Q bisher gruppiert~Voriges Q bisher@1567" , "Q bisher gruppiert~Q bisher@1563" ) Format "0%~2"
  5381. Sign False
  5382. SpecialCategory 721 "J bisher" Parent 673 Levels 0 Lastuse 20201216 Rollup True
  5383. TimeAggregate ToDate RunningPeriods 0 ToDateLevel "Jahr" TargetOffset 0
  5384. TargetLevel "Tag" ContextOffset 0 DateDrill 675 TransientLevelList 447511 For 687
  5385. 447513 For 693 EndList Primary 444715 Primary 447519 Primary 447527 Primary 1022927
  5386. Sign False
  5387. SpecialCategory 444715 "J bisher~Quartal1" Parent 721 Levels 0 Label "1. Q. 2020"
  5388. Inclusion Generate Lastuse 20201216 Rollup True TimeAggregate None Primary 444717
  5389. Primary 447515 Primary 447517 Sign False
  5390. SpecialCategory 444717 "J bisher~Quartal1~Monat1" Parent 444715 Levels 0
  5391. Label "Jan./2020" Inclusion Generate Lastuse 20201216 Rollup True TimeAggregate None
  5392. Primary 1022167 Primary 1022169 Primary 1022171 Primary 1022173 Primary 1022175
  5393. Primary 1022177 Primary 1022179 Primary 1022181 Primary 1022183 Primary 1022185
  5394. Primary 1022187 Primary 1022189 Primary 1022191 Primary 1022193 Primary 1022195
  5395. Primary 1022197 Primary 1022199 Primary 1022201 Primary 1022203 Primary 1022205
  5396. Primary 1022207 Primary 1022209 Primary 1022211 Primary 1022213 Primary 1022215
  5397. Primary 1022217 Primary 1022219 Primary 1022221 Primary 1022223 Primary 1022225
  5398. Primary 1022227 Sign False
  5399. SpecialCategory 447515 "J bisher~Quartal1~Monat2" Parent 444715 Levels 0
  5400. Label "Feb./2020" Inclusion Generate Lastuse 20201216 Rollup True TimeAggregate None
  5401. Primary 1022231 Primary 1022233 Primary 1022235 Primary 1022237 Primary 1022239
  5402. Primary 1022241 Primary 1022243 Primary 1022245 Primary 1022247 Primary 1022249
  5403. Primary 1022251 Primary 1022253 Primary 1022255 Primary 1022257 Primary 1022259
  5404. Primary 1022261 Primary 1022263 Primary 1022265 Primary 1022267 Primary 1022269
  5405. Primary 1022271 Primary 1022273 Primary 1022275 Primary 1022277 Primary 1022279
  5406. Primary 1022281 Primary 1022283 Primary 1022285 Primary 1022287 Sign False
  5407. SpecialCategory 447517 "J bisher~Quartal1~Monat3" Parent 444715 Levels 0
  5408. Label "März/2020" Inclusion Generate Lastuse 20201216 Rollup True TimeAggregate None
  5409. Primary 1022291 Primary 1022293 Primary 1022295 Primary 1022297 Primary 1022299
  5410. Primary 1022301 Primary 1022303 Primary 1022305 Primary 1022307 Primary 1022309
  5411. Primary 1022311 Primary 1022313 Primary 1022315 Primary 1022317 Primary 1022319
  5412. Primary 1022321 Primary 1022323 Primary 1022325 Primary 1022327 Primary 1022329
  5413. Primary 1022331 Primary 1022333 Primary 1022335 Primary 1022337 Primary 1022339
  5414. Primary 1022341 Primary 1022343 Primary 1022345 Primary 1022347 Primary 1022349
  5415. Primary 1022351 Sign False
  5416. SpecialCategory 447519 "J bisher~Quartal2" Parent 721 Levels 0 Label "2. Q. 2020"
  5417. Inclusion Generate Lastuse 20201216 Rollup True TimeAggregate None Primary 447521
  5418. Primary 447523 Primary 447525 Sign False
  5419. SpecialCategory 447521 "J bisher~Quartal2~Monat1" Parent 447519 Levels 0
  5420. Label "Apr./2020" Inclusion Generate Lastuse 20201216 Rollup True TimeAggregate None
  5421. Primary 1022357 Primary 1022359 Primary 1022361 Primary 1022363 Primary 1022365
  5422. Primary 1022367 Primary 1022369 Primary 1022371 Primary 1022373 Primary 1022375
  5423. Primary 1022377 Primary 1022379 Primary 1022381 Primary 1022383 Primary 1022385
  5424. Primary 1022387 Primary 1022389 Primary 1022391 Primary 1022393 Primary 1022395
  5425. Primary 1022397 Primary 1022399 Primary 1022401 Primary 1022403 Primary 1022405
  5426. Primary 1022407 Primary 1022409 Primary 1022411 Primary 1022413 Primary 1022415
  5427. Sign False
  5428. SpecialCategory 447523 "J bisher~Quartal2~Monat2" Parent 447519 Levels 0
  5429. Label "Mai/2020" Inclusion Generate Lastuse 20201216 Rollup True TimeAggregate None
  5430. Primary 1022419 Primary 1022421 Primary 1022423 Primary 1022425 Primary 1022427
  5431. Primary 1022429 Primary 1022431 Primary 1022433 Primary 1022435 Primary 1022437
  5432. Primary 1022439 Primary 1022441 Primary 1022443 Primary 1022445 Primary 1022447
  5433. Primary 1022449 Primary 1022451 Primary 1022453 Primary 1022455 Primary 1022457
  5434. Primary 1022459 Primary 1022461 Primary 1022463 Primary 1022465 Primary 1022467
  5435. Primary 1022469 Primary 1022471 Primary 1022473 Primary 1022475 Primary 1022477
  5436. Primary 1022479 Sign False
  5437. SpecialCategory 447525 "J bisher~Quartal2~Monat3" Parent 447519 Levels 0
  5438. Label "Juni/2020" Inclusion Generate Lastuse 20201216 Rollup True TimeAggregate None
  5439. Primary 1022483 Primary 1022485 Primary 1022487 Primary 1022489 Primary 1022491
  5440. Primary 1022493 Primary 1022495 Primary 1022497 Primary 1022499 Primary 1022501
  5441. Primary 1022503 Primary 1022505 Primary 1022507 Primary 1022509 Primary 1022511
  5442. Primary 1022513 Primary 1022515 Primary 1022517 Primary 1022519 Primary 1022521
  5443. Primary 1022523 Primary 1022525 Primary 1022527 Primary 1022529 Primary 1022531
  5444. Primary 1022533 Primary 1022535 Primary 1022537 Primary 1022539 Primary 1022541
  5445. Sign False
  5446. SpecialCategory 447527 "J bisher~Quartal3" Parent 721 Levels 0 Label "3. Q. 2020"
  5447. Inclusion Generate Lastuse 20201216 Rollup True TimeAggregate None Primary 447529
  5448. Primary 447531 Primary 447533 Sign False
  5449. SpecialCategory 447529 "J bisher~Quartal3~Monat1" Parent 447527 Levels 0
  5450. Label "Juli/2020" Inclusion Generate Lastuse 20201216 Rollup True TimeAggregate None
  5451. Primary 1022547 Primary 1022549 Primary 1022551 Primary 1022553 Primary 1022555
  5452. Primary 1022557 Primary 1022559 Primary 1022561 Primary 1022563 Primary 1022565
  5453. Primary 1022567 Primary 1022569 Primary 1022571 Primary 1022573 Primary 1022575
  5454. Primary 1022577 Primary 1022579 Primary 1022581 Primary 1022583 Primary 1022585
  5455. Primary 1022587 Primary 1022589 Primary 1022591 Primary 1022593 Primary 1022595
  5456. Primary 1022597 Primary 1022599 Primary 1022601 Primary 1022603 Primary 1022605
  5457. Primary 1022607 Sign False
  5458. SpecialCategory 447531 "J bisher~Quartal3~Monat2" Parent 447527 Levels 0
  5459. Label "Aug./2020" Inclusion Generate Lastuse 20201216 Rollup True TimeAggregate None
  5460. Primary 1022611 Primary 1022613 Primary 1022615 Primary 1022617 Primary 1022619
  5461. Primary 1022621 Primary 1022623 Primary 1022625 Primary 1022627 Primary 1022629
  5462. Primary 1022631 Primary 1022633 Primary 1022635 Primary 1022637 Primary 1022639
  5463. Primary 1022641 Primary 1022643 Primary 1022645 Primary 1022647 Primary 1022649
  5464. Primary 1022651 Primary 1022653 Primary 1022655 Primary 1022657 Primary 1022659
  5465. Primary 1022661 Primary 1022663 Primary 1022665 Primary 1022667 Primary 1022669
  5466. Primary 1022671 Sign False
  5467. SpecialCategory 447533 "J bisher~Quartal3~Monat3" Parent 447527 Levels 0
  5468. Label "Sept./2020" Inclusion Generate Lastuse 20201216 Rollup True TimeAggregate None
  5469. Primary 1022675 Primary 1022677 Primary 1022679 Primary 1022681 Primary 1022683
  5470. Primary 1022685 Primary 1022687 Primary 1022689 Primary 1022691 Primary 1022693
  5471. Primary 1022695 Primary 1022697 Primary 1022699 Primary 1022701 Primary 1022703
  5472. Primary 1022705 Primary 1022707 Primary 1022709 Primary 1022711 Primary 1022713
  5473. Primary 1022715 Primary 1022717 Primary 1022719 Primary 1022721 Primary 1022723
  5474. Primary 1022725 Primary 1022727 Primary 1022729 Primary 1022731 Primary 1022733
  5475. Sign False
  5476. SpecialCategory 1022927 "J bisher~Quartal4" Parent 721 Levels 0 Label "4. Q. 2020"
  5477. Inclusion Generate Lastuse 20201216 Rollup True TimeAggregate None Primary 1022929
  5478. Primary 1022931 Primary 1022933 Sign False
  5479. SpecialCategory 1022929 "J bisher~Quartal4~Monat1" Parent 1022927 Levels 0
  5480. Label "Okt./2020" Inclusion Generate Lastuse 20201216 Rollup True TimeAggregate None
  5481. Primary 1022739 Primary 1022741 Primary 1022743 Primary 1022745 Primary 1022747
  5482. Primary 1022749 Primary 1022751 Primary 1022753 Primary 1022755 Primary 1022757
  5483. Primary 1022759 Primary 1022761 Primary 1022763 Primary 1022765 Primary 1022767
  5484. Primary 1022769 Primary 1022771 Primary 1022773 Primary 1022775 Primary 1022777
  5485. Primary 1022779 Primary 1022781 Primary 1022783 Primary 1022785 Primary 1022787
  5486. Primary 1022789 Primary 1022791 Primary 1022793 Primary 1022795 Primary 1022797
  5487. Primary 1022799 Sign False
  5488. SpecialCategory 1022931 "J bisher~Quartal4~Monat2" Parent 1022927 Levels 0
  5489. Label "Nov./2020" Inclusion Generate Lastuse 20201216 Rollup True TimeAggregate None
  5490. Primary 1022803 Primary 1022805 Primary 1022807 Primary 1022809 Primary 1022811
  5491. Primary 1022813 Primary 1022815 Primary 1022817 Primary 1022819 Primary 1022821
  5492. Primary 1022823 Primary 1022825 Primary 1022827 Primary 1022829 Primary 1022831
  5493. Primary 1022833 Primary 1022835 Primary 1022837 Primary 1022839 Primary 1022841
  5494. Primary 1022843 Primary 1022845 Primary 1022847 Primary 1022849 Primary 1022851
  5495. Primary 1022853 Primary 1022855 Primary 1022857 Primary 1022859 Primary 1022861
  5496. Sign False
  5497. SpecialCategory 1022933 "J bisher~Quartal4~Monat3" Parent 1022927 Levels 0
  5498. Label "Dez./2020" Inclusion Generate Lastuse 20201216 Rollup True TimeAggregate None
  5499. Primary 1022865 Primary 1022867 Primary 1022869 Primary 1022871 Primary 1022873
  5500. Primary 1022875 Primary 1022877 Primary 1022879 Primary 1022881 Primary 1022883
  5501. Primary 1022885 Primary 1022887 Primary 1022889 Primary 1022891 Primary 1022893
  5502. Sign False
  5503. SpecialCategory 723 "Voriges J bisher" Parent 673 Levels 0 Lastuse 20201216
  5504. Rollup True TimeAggregate ToDate RunningPeriods 0 ToDateLevel "Jahr" TargetOffset 0
  5505. TargetLevel "Tag" ContextOffset -1 ContextLevel "Jahr" DateDrill 675 TransientLevelList 745855 For 687
  5506. 745859 For 693 EndList Primary 745853 Primary 745865 Primary 745873 Primary 1022935
  5507. Sign False
  5508. SpecialCategory 745853 "Voriges J bisher~Quartal1" Parent 723 Levels 0
  5509. Label "1. Q. 2019" Inclusion Generate Lastuse 20201216 Rollup True TimeAggregate None
  5510. Primary 745857 Primary 745861 Primary 745863 Sign False
  5511. SpecialCategory 745857 "Voriges J bisher~Quartal1~Monat1" Parent 745853
  5512. Levels 0 Label "Jan./2019" Inclusion Generate Lastuse 20201216 Rollup True
  5513. TimeAggregate None Primary 1031451 Primary 1031453 Primary 1031455 Primary 1031457
  5514. Primary 1031459 Primary 1031461 Primary 1031463 Primary 1031465 Primary 1031467
  5515. Primary 1031469 Primary 1031471 Primary 1031473 Primary 1031475 Primary 1031477
  5516. Primary 1031479 Primary 1031481 Primary 1031483 Primary 1031485 Primary 1031487
  5517. Primary 1031489 Primary 1031491 Primary 1031493 Primary 1031495 Primary 1031497
  5518. Primary 1031499 Primary 1031501 Primary 1031503 Primary 1031505 Primary 1031507
  5519. Primary 1031509 Primary 1031511 Sign False
  5520. SpecialCategory 745861 "Voriges J bisher~Quartal1~Monat2" Parent 745853
  5521. Levels 0 Label "Feb./2019" Inclusion Generate Lastuse 20201216 Rollup True
  5522. TimeAggregate None Primary 1031735 Primary 1031737 Primary 1031739 Primary 1031741
  5523. Primary 1031743 Primary 1031745 Primary 1031747 Primary 1031749 Primary 1031751
  5524. Primary 1031753 Primary 1031755 Primary 1031757 Primary 1031759 Primary 1031761
  5525. Primary 1031763 Primary 1031765 Primary 1031767 Primary 1031769 Primary 1031771
  5526. Primary 1031773 Primary 1031775 Primary 1031777 Primary 1031779 Primary 1031781
  5527. Primary 1031783 Primary 1031785 Primary 1031787 Primary 1031789 Sign False
  5528. SpecialCategory 745863 "Voriges J bisher~Quartal1~Monat3" Parent 745853
  5529. Levels 0 Label "März/2019" Inclusion Generate Lastuse 20201216 Rollup True
  5530. TimeAggregate None Primary 1023337 Primary 1023339 Primary 1023341 Primary 1023343
  5531. Primary 1023345 Primary 1023347 Primary 1023349 Primary 1023351 Primary 1023353
  5532. Primary 1023355 Primary 1023357 Primary 1023359 Primary 1023361 Primary 1023363
  5533. Primary 1023365 Primary 1023367 Primary 1023369 Primary 1023371 Primary 1023373
  5534. Primary 1023375 Primary 1023377 Primary 1023379 Primary 1023381 Primary 1023383
  5535. Primary 1023385 Primary 1023387 Primary 1023389 Primary 1023391 Primary 1023393
  5536. Primary 1023395 Primary 1023397 Sign False
  5537. SpecialCategory 745865 "Voriges J bisher~Quartal2" Parent 723 Levels 0
  5538. Label "2. Q. 2019" Inclusion Generate Lastuse 20201216 Rollup True TimeAggregate None
  5539. Primary 745867 Primary 745869 Primary 745871 Sign False
  5540. SpecialCategory 745867 "Voriges J bisher~Quartal2~Monat1" Parent 745865
  5541. Levels 0 Label "Apr./2019" Inclusion Generate Lastuse 20201216 Rollup True
  5542. TimeAggregate None Primary 1025539 Primary 1025541 Primary 1025543 Primary 1025545
  5543. Primary 1025547 Primary 1025549 Primary 1025551 Primary 1025553 Primary 1025555
  5544. Primary 1025557 Primary 1025559 Primary 1025561 Primary 1025563 Primary 1025565
  5545. Primary 1025567 Primary 1025569 Primary 1025571 Primary 1025573 Primary 1025575
  5546. Primary 1025577 Primary 1025579 Primary 1025581 Primary 1025583 Primary 1025585
  5547. Primary 1025587 Primary 1025589 Primary 1025591 Primary 1025593 Primary 1025595
  5548. Primary 1025597 Sign False
  5549. SpecialCategory 745869 "Voriges J bisher~Quartal2~Monat2" Parent 745865
  5550. Levels 0 Label "Mai/2019" Inclusion Generate Lastuse 20201216 Rollup True
  5551. TimeAggregate None Primary 1037903 Primary 1037905 Primary 1037907 Primary 1037909
  5552. Primary 1037911 Primary 1037913 Primary 1037915 Primary 1037917 Primary 1037919
  5553. Primary 1037921 Primary 1037923 Primary 1037925 Primary 1037927 Primary 1037929
  5554. Primary 1037931 Primary 1037933 Primary 1037935 Primary 1037937 Primary 1037939
  5555. Primary 1037941 Primary 1037943 Primary 1037945 Primary 1037947 Primary 1037949
  5556. Primary 1037951 Primary 1037953 Primary 1037955 Primary 1037957 Primary 1037959
  5557. Primary 1037961 Primary 1037963 Sign False
  5558. SpecialCategory 745871 "Voriges J bisher~Quartal2~Monat3" Parent 745865
  5559. Levels 0 Label "Juni/2019" Inclusion Generate Lastuse 20201216 Rollup True
  5560. TimeAggregate None Primary 1033435 Primary 1033437 Primary 1033439 Primary 1033441
  5561. Primary 1033443 Primary 1033445 Primary 1033447 Primary 1033449 Primary 1033451
  5562. Primary 1033453 Primary 1033455 Primary 1033457 Primary 1033459 Primary 1033461
  5563. Primary 1033463 Primary 1033465 Primary 1033467 Primary 1033469 Primary 1033471
  5564. Primary 1033473 Primary 1033475 Primary 1033477 Primary 1033479 Primary 1033481
  5565. Primary 1033483 Primary 1033485 Primary 1033487 Primary 1033489 Primary 1033491
  5566. Primary 1033493 Sign False
  5567. SpecialCategory 745873 "Voriges J bisher~Quartal3" Parent 723 Levels 0
  5568. Label "3. Q. 2019" Inclusion Generate Lastuse 20201216 Rollup True TimeAggregate None
  5569. Primary 745875 Primary 745877 Primary 745879 Sign False
  5570. SpecialCategory 745875 "Voriges J bisher~Quartal3~Monat1" Parent 745873
  5571. Levels 0 Label "Juli/2019" Inclusion Generate Lastuse 20201216 Rollup True
  5572. TimeAggregate None Primary 1025671 Primary 1025673 Primary 1025675 Primary 1025677
  5573. Primary 1025679 Primary 1025681 Primary 1025683 Primary 1025685 Primary 1025687
  5574. Primary 1025689 Primary 1025691 Primary 1025693 Primary 1025695 Primary 1025697
  5575. Primary 1025699 Primary 1025701 Primary 1025703 Primary 1025705 Primary 1025707
  5576. Primary 1025709 Primary 1025711 Primary 1025713 Primary 1025715 Primary 1025717
  5577. Primary 1025719 Primary 1025721 Primary 1025723 Primary 1025725 Primary 1025727
  5578. Primary 1025729 Primary 1025731 Sign False
  5579. SpecialCategory 745877 "Voriges J bisher~Quartal3~Monat2" Parent 745873
  5580. Levels 0 Label "Aug./2019" Inclusion Generate Lastuse 20201216 Rollup True
  5581. TimeAggregate None Primary 1029237 Primary 1029239 Primary 1029241 Primary 1029243
  5582. Primary 1029245 Primary 1029247 Primary 1029249 Primary 1029251 Primary 1029253
  5583. Primary 1029255 Primary 1029257 Primary 1029259 Primary 1029261 Primary 1029263
  5584. Primary 1029265 Primary 1029267 Primary 1029269 Primary 1029271 Primary 1029273
  5585. Primary 1029275 Primary 1029277 Primary 1029279 Primary 1029281 Primary 1029283
  5586. Primary 1029285 Primary 1029287 Primary 1029289 Primary 1029291 Primary 1029293
  5587. Primary 1029295 Primary 1029297 Sign False
  5588. SpecialCategory 745879 "Voriges J bisher~Quartal3~Monat3" Parent 745873
  5589. Levels 0 Label "Sept./2019" Inclusion Generate Lastuse 20201216 Rollup True
  5590. TimeAggregate None Primary 1022971 Primary 1022973 Primary 1022975 Primary 1022977
  5591. Primary 1022979 Primary 1022981 Primary 1022983 Primary 1022985 Primary 1022987
  5592. Primary 1022989 Primary 1022991 Primary 1022993 Primary 1022995 Primary 1022997
  5593. Primary 1022999 Primary 1023001 Primary 1023003 Primary 1023005 Primary 1023007
  5594. Primary 1023009 Primary 1023011 Primary 1023013 Primary 1023015 Primary 1023017
  5595. Primary 1023019 Primary 1023021 Primary 1023023 Primary 1023025 Primary 1023027
  5596. Primary 1023029 Sign False
  5597. SpecialCategory 1022935 "Voriges J bisher~Quartal4" Parent 723 Levels 0
  5598. Label "4. Q. 2019" Inclusion Generate Lastuse 20201216 Rollup True TimeAggregate None
  5599. Primary 1022937 Primary 1022939 Primary 1022941 Sign False
  5600. SpecialCategory 1022937 "Voriges J bisher~Quartal4~Monat1" Parent 1022935
  5601. Levels 0 Label "Okt./2019" Inclusion Generate Lastuse 20201216 Rollup True
  5602. TimeAggregate None Primary 1028393 Primary 1028395 Primary 1028397 Primary 1028399
  5603. Primary 1028401 Primary 1028403 Primary 1028405 Primary 1028407 Primary 1028409
  5604. Primary 1028411 Primary 1028413 Primary 1028415 Primary 1028417 Primary 1028419
  5605. Primary 1028421 Primary 1028423 Primary 1028425 Primary 1028427 Primary 1028429
  5606. Primary 1028431 Primary 1028433 Primary 1028435 Primary 1028437 Primary 1028439
  5607. Primary 1028441 Primary 1028443 Primary 1028445 Primary 1028447 Primary 1028449
  5608. Primary 1028451 Primary 1028453 Sign False
  5609. SpecialCategory 1022939 "Voriges J bisher~Quartal4~Monat2" Parent 1022935
  5610. Levels 0 Label "Nov./2019" Inclusion Generate Lastuse 20201216 Rollup True
  5611. TimeAggregate None Primary 1026101 Primary 1026103 Primary 1026105 Primary 1026107
  5612. Primary 1026109 Primary 1026111 Primary 1026113 Primary 1026115 Primary 1026117
  5613. Primary 1026119 Primary 1026121 Primary 1026123 Primary 1026125 Primary 1026127
  5614. Primary 1026129 Primary 1026131 Primary 1026133 Primary 1026135 Primary 1026137
  5615. Primary 1026139 Primary 1026141 Primary 1026143 Primary 1026145 Primary 1026147
  5616. Primary 1026149 Primary 1026151 Primary 1026153 Primary 1026155 Primary 1026157
  5617. Primary 1026159 Sign False
  5618. SpecialCategory 1022941 "Voriges J bisher~Quartal4~Monat3" Parent 1022935
  5619. Levels 0 Label "Dez./2019" Inclusion Generate Lastuse 20201216 Rollup True
  5620. TimeAggregate None Primary 1033209 Primary 1033211 Primary 1033213 Primary 1033215
  5621. Primary 1033217 Primary 1033219 Primary 1033221 Primary 1033223 Primary 1033225
  5622. Primary 1033227 Primary 1033229 Primary 1033231 Primary 1033233 Primary 1033235
  5623. Primary 1033237 Sign False
  5624. SpecialCategory 725 "J bisher gruppiert" Parent 673 Levels 0 Lastuse 20201216
  5625. Rollup True TimeAggregate ToDate_Grp RunningPeriods 0 ToDateLevel "Jahr"
  5626. TargetOffset 0 TargetLevel "Tag" ContextOffset -1 ContextLevel "Jahr" DateDrill 675
  5627. TransientLevelList 447539 For 725 447541 For 687 447543 For 693 EndList Primary 1585
  5628. Primary 1579 Primary 1587 Primary 1589 Sign False
  5629. SpecialCategory 1585 "J bisher gruppiert~Voriges J bisher" Parent 725 Levels 0
  5630. Label "Voriges J bisher" Lastuse 20201216 Rollup False TimeAggregate ToDate
  5631. RunningPeriods 0 ToDateLevel "Jahr" TargetOffset 0 TargetLevel "Tag" ContextOffset -1
  5632. ContextLevel "Jahr" DateDrill 675 Primary 745881 Primary 745889 Primary 745897
  5633. Primary 1022943 Sign False
  5634. SpecialCategory 745881 "J bisher gruppiert~Voriges J bisher~Quartal1" Parent 1585
  5635. Levels 0 Label "1. Q. 2019" Inclusion Generate Lastuse 20201216 Rollup True
  5636. TimeAggregate None Primary 745883 Primary 745885 Primary 745887 Sign False
  5637. SpecialCategory 745883 "J bisher gruppiert~Voriges J bisher~Quartal1~Monat1"
  5638. Parent 745881 Levels 0 Label "Jan./2019" Inclusion Generate Lastuse 20201216
  5639. Rollup True TimeAggregate None Primary 1031451 Primary 1031453 Primary 1031455
  5640. Primary 1031457 Primary 1031459 Primary 1031461 Primary 1031463 Primary 1031465
  5641. Primary 1031467 Primary 1031469 Primary 1031471 Primary 1031473 Primary 1031475
  5642. Primary 1031477 Primary 1031479 Primary 1031481 Primary 1031483 Primary 1031485
  5643. Primary 1031487 Primary 1031489 Primary 1031491 Primary 1031493 Primary 1031495
  5644. Primary 1031497 Primary 1031499 Primary 1031501 Primary 1031503 Primary 1031505
  5645. Primary 1031507 Primary 1031509 Primary 1031511 Sign False
  5646. SpecialCategory 745885 "J bisher gruppiert~Voriges J bisher~Quartal1~Monat2"
  5647. Parent 745881 Levels 0 Label "Feb./2019" Inclusion Generate Lastuse 20201216
  5648. Rollup True TimeAggregate None Primary 1031735 Primary 1031737 Primary 1031739
  5649. Primary 1031741 Primary 1031743 Primary 1031745 Primary 1031747 Primary 1031749
  5650. Primary 1031751 Primary 1031753 Primary 1031755 Primary 1031757 Primary 1031759
  5651. Primary 1031761 Primary 1031763 Primary 1031765 Primary 1031767 Primary 1031769
  5652. Primary 1031771 Primary 1031773 Primary 1031775 Primary 1031777 Primary 1031779
  5653. Primary 1031781 Primary 1031783 Primary 1031785 Primary 1031787 Primary 1031789
  5654. Sign False
  5655. SpecialCategory 745887 "J bisher gruppiert~Voriges J bisher~Quartal1~Monat3"
  5656. Parent 745881 Levels 0 Label "März/2019" Inclusion Generate Lastuse 20201216
  5657. Rollup True TimeAggregate None Primary 1023337 Primary 1023339 Primary 1023341
  5658. Primary 1023343 Primary 1023345 Primary 1023347 Primary 1023349 Primary 1023351
  5659. Primary 1023353 Primary 1023355 Primary 1023357 Primary 1023359 Primary 1023361
  5660. Primary 1023363 Primary 1023365 Primary 1023367 Primary 1023369 Primary 1023371
  5661. Primary 1023373 Primary 1023375 Primary 1023377 Primary 1023379 Primary 1023381
  5662. Primary 1023383 Primary 1023385 Primary 1023387 Primary 1023389 Primary 1023391
  5663. Primary 1023393 Primary 1023395 Primary 1023397 Sign False
  5664. SpecialCategory 745889 "J bisher gruppiert~Voriges J bisher~Quartal2" Parent 1585
  5665. Levels 0 Label "2. Q. 2019" Inclusion Generate Lastuse 20201216 Rollup True
  5666. TimeAggregate None Primary 745891 Primary 745893 Primary 745895 Sign False
  5667. SpecialCategory 745891 "J bisher gruppiert~Voriges J bisher~Quartal2~Monat1"
  5668. Parent 745889 Levels 0 Label "Apr./2019" Inclusion Generate Lastuse 20201216
  5669. Rollup True TimeAggregate None Primary 1025539 Primary 1025541 Primary 1025543
  5670. Primary 1025545 Primary 1025547 Primary 1025549 Primary 1025551 Primary 1025553
  5671. Primary 1025555 Primary 1025557 Primary 1025559 Primary 1025561 Primary 1025563
  5672. Primary 1025565 Primary 1025567 Primary 1025569 Primary 1025571 Primary 1025573
  5673. Primary 1025575 Primary 1025577 Primary 1025579 Primary 1025581 Primary 1025583
  5674. Primary 1025585 Primary 1025587 Primary 1025589 Primary 1025591 Primary 1025593
  5675. Primary 1025595 Primary 1025597 Sign False
  5676. SpecialCategory 745893 "J bisher gruppiert~Voriges J bisher~Quartal2~Monat2"
  5677. Parent 745889 Levels 0 Label "Mai/2019" Inclusion Generate Lastuse 20201216
  5678. Rollup True TimeAggregate None Primary 1037903 Primary 1037905 Primary 1037907
  5679. Primary 1037909 Primary 1037911 Primary 1037913 Primary 1037915 Primary 1037917
  5680. Primary 1037919 Primary 1037921 Primary 1037923 Primary 1037925 Primary 1037927
  5681. Primary 1037929 Primary 1037931 Primary 1037933 Primary 1037935 Primary 1037937
  5682. Primary 1037939 Primary 1037941 Primary 1037943 Primary 1037945 Primary 1037947
  5683. Primary 1037949 Primary 1037951 Primary 1037953 Primary 1037955 Primary 1037957
  5684. Primary 1037959 Primary 1037961 Primary 1037963 Sign False
  5685. SpecialCategory 745895 "J bisher gruppiert~Voriges J bisher~Quartal2~Monat3"
  5686. Parent 745889 Levels 0 Label "Juni/2019" Inclusion Generate Lastuse 20201216
  5687. Rollup True TimeAggregate None Primary 1033435 Primary 1033437 Primary 1033439
  5688. Primary 1033441 Primary 1033443 Primary 1033445 Primary 1033447 Primary 1033449
  5689. Primary 1033451 Primary 1033453 Primary 1033455 Primary 1033457 Primary 1033459
  5690. Primary 1033461 Primary 1033463 Primary 1033465 Primary 1033467 Primary 1033469
  5691. Primary 1033471 Primary 1033473 Primary 1033475 Primary 1033477 Primary 1033479
  5692. Primary 1033481 Primary 1033483 Primary 1033485 Primary 1033487 Primary 1033489
  5693. Primary 1033491 Primary 1033493 Sign False
  5694. SpecialCategory 745897 "J bisher gruppiert~Voriges J bisher~Quartal3" Parent 1585
  5695. Levels 0 Label "3. Q. 2019" Inclusion Generate Lastuse 20201216 Rollup True
  5696. TimeAggregate None Primary 745899 Primary 745901 Primary 745903 Sign False
  5697. SpecialCategory 745899 "J bisher gruppiert~Voriges J bisher~Quartal3~Monat1"
  5698. Parent 745897 Levels 0 Label "Juli/2019" Inclusion Generate Lastuse 20201216
  5699. Rollup True TimeAggregate None Primary 1025671 Primary 1025673 Primary 1025675
  5700. Primary 1025677 Primary 1025679 Primary 1025681 Primary 1025683 Primary 1025685
  5701. Primary 1025687 Primary 1025689 Primary 1025691 Primary 1025693 Primary 1025695
  5702. Primary 1025697 Primary 1025699 Primary 1025701 Primary 1025703 Primary 1025705
  5703. Primary 1025707 Primary 1025709 Primary 1025711 Primary 1025713 Primary 1025715
  5704. Primary 1025717 Primary 1025719 Primary 1025721 Primary 1025723 Primary 1025725
  5705. Primary 1025727 Primary 1025729 Primary 1025731 Sign False
  5706. SpecialCategory 745901 "J bisher gruppiert~Voriges J bisher~Quartal3~Monat2"
  5707. Parent 745897 Levels 0 Label "Aug./2019" Inclusion Generate Lastuse 20201216
  5708. Rollup True TimeAggregate None Primary 1029237 Primary 1029239 Primary 1029241
  5709. Primary 1029243 Primary 1029245 Primary 1029247 Primary 1029249 Primary 1029251
  5710. Primary 1029253 Primary 1029255 Primary 1029257 Primary 1029259 Primary 1029261
  5711. Primary 1029263 Primary 1029265 Primary 1029267 Primary 1029269 Primary 1029271
  5712. Primary 1029273 Primary 1029275 Primary 1029277 Primary 1029279 Primary 1029281
  5713. Primary 1029283 Primary 1029285 Primary 1029287 Primary 1029289 Primary 1029291
  5714. Primary 1029293 Primary 1029295 Primary 1029297 Sign False
  5715. SpecialCategory 745903 "J bisher gruppiert~Voriges J bisher~Quartal3~Monat3"
  5716. Parent 745897 Levels 0 Label "Sept./2019" Inclusion Generate Lastuse 20201216
  5717. Rollup True TimeAggregate None Primary 1022971 Primary 1022973 Primary 1022975
  5718. Primary 1022977 Primary 1022979 Primary 1022981 Primary 1022983 Primary 1022985
  5719. Primary 1022987 Primary 1022989 Primary 1022991 Primary 1022993 Primary 1022995
  5720. Primary 1022997 Primary 1022999 Primary 1023001 Primary 1023003 Primary 1023005
  5721. Primary 1023007 Primary 1023009 Primary 1023011 Primary 1023013 Primary 1023015
  5722. Primary 1023017 Primary 1023019 Primary 1023021 Primary 1023023 Primary 1023025
  5723. Primary 1023027 Primary 1023029 Sign False
  5724. SpecialCategory 1022943 "J bisher gruppiert~Voriges J bisher~Quartal4"
  5725. Parent 1585 Levels 0 Label "4. Q. 2019" Inclusion Generate Lastuse 20201216
  5726. Rollup True TimeAggregate None Primary 1022945 Primary 1022947 Primary 1022949
  5727. Sign False
  5728. SpecialCategory 1022945 "J bisher gruppiert~Voriges J bisher~Quartal4~Monat1"
  5729. Parent 1022943 Levels 0 Label "Okt./2019" Inclusion Generate Lastuse 20201216
  5730. Rollup True TimeAggregate None Primary 1028393 Primary 1028395 Primary 1028397
  5731. Primary 1028399 Primary 1028401 Primary 1028403 Primary 1028405 Primary 1028407
  5732. Primary 1028409 Primary 1028411 Primary 1028413 Primary 1028415 Primary 1028417
  5733. Primary 1028419 Primary 1028421 Primary 1028423 Primary 1028425 Primary 1028427
  5734. Primary 1028429 Primary 1028431 Primary 1028433 Primary 1028435 Primary 1028437
  5735. Primary 1028439 Primary 1028441 Primary 1028443 Primary 1028445 Primary 1028447
  5736. Primary 1028449 Primary 1028451 Primary 1028453 Sign False
  5737. SpecialCategory 1022947 "J bisher gruppiert~Voriges J bisher~Quartal4~Monat2"
  5738. Parent 1022943 Levels 0 Label "Nov./2019" Inclusion Generate Lastuse 20201216
  5739. Rollup True TimeAggregate None Primary 1026101 Primary 1026103 Primary 1026105
  5740. Primary 1026107 Primary 1026109 Primary 1026111 Primary 1026113 Primary 1026115
  5741. Primary 1026117 Primary 1026119 Primary 1026121 Primary 1026123 Primary 1026125
  5742. Primary 1026127 Primary 1026129 Primary 1026131 Primary 1026133 Primary 1026135
  5743. Primary 1026137 Primary 1026139 Primary 1026141 Primary 1026143 Primary 1026145
  5744. Primary 1026147 Primary 1026149 Primary 1026151 Primary 1026153 Primary 1026155
  5745. Primary 1026157 Primary 1026159 Sign False
  5746. SpecialCategory 1022949 "J bisher gruppiert~Voriges J bisher~Quartal4~Monat3"
  5747. Parent 1022943 Levels 0 Label "Dez./2019" Inclusion Generate Lastuse 20201216
  5748. Rollup True TimeAggregate None Primary 1033209 Primary 1033211 Primary 1033213
  5749. Primary 1033215 Primary 1033217 Primary 1033219 Primary 1033221 Primary 1033223
  5750. Primary 1033225 Primary 1033227 Primary 1033229 Primary 1033231 Primary 1033233
  5751. Primary 1033235 Primary 1033237 Sign False
  5752. SpecialCategory 1579 "J bisher gruppiert~J bisher" Parent 725 Levels 0
  5753. Label "J bisher" Lastuse 20201216 Rollup False TimeAggregate ToDate RunningPeriods 0
  5754. ToDateLevel "Jahr" TargetOffset 0 TargetLevel "Tag" ContextOffset 0 DateDrill 675
  5755. Primary 444719 Primary 447549 Primary 447557 Primary 1022951 Sign False
  5756. SpecialCategory 444719 "J bisher gruppiert~J bisher~Quartal1" Parent 1579
  5757. Levels 0 Label "1. Q. 2020" Inclusion Generate Lastuse 20201216 Rollup True
  5758. TimeAggregate None Primary 444721 Primary 447545 Primary 447547 Sign False
  5759. SpecialCategory 444721 "J bisher gruppiert~J bisher~Quartal1~Monat1" Parent 444719
  5760. Levels 0 Label "Jan./2020" Inclusion Generate Lastuse 20201216 Rollup True
  5761. TimeAggregate None Primary 1022167 Primary 1022169 Primary 1022171 Primary 1022173
  5762. Primary 1022175 Primary 1022177 Primary 1022179 Primary 1022181 Primary 1022183
  5763. Primary 1022185 Primary 1022187 Primary 1022189 Primary 1022191 Primary 1022193
  5764. Primary 1022195 Primary 1022197 Primary 1022199 Primary 1022201 Primary 1022203
  5765. Primary 1022205 Primary 1022207 Primary 1022209 Primary 1022211 Primary 1022213
  5766. Primary 1022215 Primary 1022217 Primary 1022219 Primary 1022221 Primary 1022223
  5767. Primary 1022225 Primary 1022227 Sign False
  5768. SpecialCategory 447545 "J bisher gruppiert~J bisher~Quartal1~Monat2" Parent 444719
  5769. Levels 0 Label "Feb./2020" Inclusion Generate Lastuse 20201216 Rollup True
  5770. TimeAggregate None Primary 1022231 Primary 1022233 Primary 1022235 Primary 1022237
  5771. Primary 1022239 Primary 1022241 Primary 1022243 Primary 1022245 Primary 1022247
  5772. Primary 1022249 Primary 1022251 Primary 1022253 Primary 1022255 Primary 1022257
  5773. Primary 1022259 Primary 1022261 Primary 1022263 Primary 1022265 Primary 1022267
  5774. Primary 1022269 Primary 1022271 Primary 1022273 Primary 1022275 Primary 1022277
  5775. Primary 1022279 Primary 1022281 Primary 1022283 Primary 1022285 Primary 1022287
  5776. Sign False
  5777. SpecialCategory 447547 "J bisher gruppiert~J bisher~Quartal1~Monat3" Parent 444719
  5778. Levels 0 Label "März/2020" Inclusion Generate Lastuse 20201216 Rollup True
  5779. TimeAggregate None Primary 1022291 Primary 1022293 Primary 1022295 Primary 1022297
  5780. Primary 1022299 Primary 1022301 Primary 1022303 Primary 1022305 Primary 1022307
  5781. Primary 1022309 Primary 1022311 Primary 1022313 Primary 1022315 Primary 1022317
  5782. Primary 1022319 Primary 1022321 Primary 1022323 Primary 1022325 Primary 1022327
  5783. Primary 1022329 Primary 1022331 Primary 1022333 Primary 1022335 Primary 1022337
  5784. Primary 1022339 Primary 1022341 Primary 1022343 Primary 1022345 Primary 1022347
  5785. Primary 1022349 Primary 1022351 Sign False
  5786. SpecialCategory 447549 "J bisher gruppiert~J bisher~Quartal2" Parent 1579
  5787. Levels 0 Label "2. Q. 2020" Inclusion Generate Lastuse 20201216 Rollup True
  5788. TimeAggregate None Primary 447551 Primary 447553 Primary 447555 Sign False
  5789. SpecialCategory 447551 "J bisher gruppiert~J bisher~Quartal2~Monat1" Parent 447549
  5790. Levels 0 Label "Apr./2020" Inclusion Generate Lastuse 20201216 Rollup True
  5791. TimeAggregate None Primary 1022357 Primary 1022359 Primary 1022361 Primary 1022363
  5792. Primary 1022365 Primary 1022367 Primary 1022369 Primary 1022371 Primary 1022373
  5793. Primary 1022375 Primary 1022377 Primary 1022379 Primary 1022381 Primary 1022383
  5794. Primary 1022385 Primary 1022387 Primary 1022389 Primary 1022391 Primary 1022393
  5795. Primary 1022395 Primary 1022397 Primary 1022399 Primary 1022401 Primary 1022403
  5796. Primary 1022405 Primary 1022407 Primary 1022409 Primary 1022411 Primary 1022413
  5797. Primary 1022415 Sign False
  5798. SpecialCategory 447553 "J bisher gruppiert~J bisher~Quartal2~Monat2" Parent 447549
  5799. Levels 0 Label "Mai/2020" Inclusion Generate Lastuse 20201216 Rollup True
  5800. TimeAggregate None Primary 1022419 Primary 1022421 Primary 1022423 Primary 1022425
  5801. Primary 1022427 Primary 1022429 Primary 1022431 Primary 1022433 Primary 1022435
  5802. Primary 1022437 Primary 1022439 Primary 1022441 Primary 1022443 Primary 1022445
  5803. Primary 1022447 Primary 1022449 Primary 1022451 Primary 1022453 Primary 1022455
  5804. Primary 1022457 Primary 1022459 Primary 1022461 Primary 1022463 Primary 1022465
  5805. Primary 1022467 Primary 1022469 Primary 1022471 Primary 1022473 Primary 1022475
  5806. Primary 1022477 Primary 1022479 Sign False
  5807. SpecialCategory 447555 "J bisher gruppiert~J bisher~Quartal2~Monat3" Parent 447549
  5808. Levels 0 Label "Juni/2020" Inclusion Generate Lastuse 20201216 Rollup True
  5809. TimeAggregate None Primary 1022483 Primary 1022485 Primary 1022487 Primary 1022489
  5810. Primary 1022491 Primary 1022493 Primary 1022495 Primary 1022497 Primary 1022499
  5811. Primary 1022501 Primary 1022503 Primary 1022505 Primary 1022507 Primary 1022509
  5812. Primary 1022511 Primary 1022513 Primary 1022515 Primary 1022517 Primary 1022519
  5813. Primary 1022521 Primary 1022523 Primary 1022525 Primary 1022527 Primary 1022529
  5814. Primary 1022531 Primary 1022533 Primary 1022535 Primary 1022537 Primary 1022539
  5815. Primary 1022541 Sign False
  5816. SpecialCategory 447557 "J bisher gruppiert~J bisher~Quartal3" Parent 1579
  5817. Levels 0 Label "3. Q. 2020" Inclusion Generate Lastuse 20201216 Rollup True
  5818. TimeAggregate None Primary 447559 Primary 447561 Primary 447563 Sign False
  5819. SpecialCategory 447559 "J bisher gruppiert~J bisher~Quartal3~Monat1" Parent 447557
  5820. Levels 0 Label "Juli/2020" Inclusion Generate Lastuse 20201216 Rollup True
  5821. TimeAggregate None Primary 1022547 Primary 1022549 Primary 1022551 Primary 1022553
  5822. Primary 1022555 Primary 1022557 Primary 1022559 Primary 1022561 Primary 1022563
  5823. Primary 1022565 Primary 1022567 Primary 1022569 Primary 1022571 Primary 1022573
  5824. Primary 1022575 Primary 1022577 Primary 1022579 Primary 1022581 Primary 1022583
  5825. Primary 1022585 Primary 1022587 Primary 1022589 Primary 1022591 Primary 1022593
  5826. Primary 1022595 Primary 1022597 Primary 1022599 Primary 1022601 Primary 1022603
  5827. Primary 1022605 Primary 1022607 Sign False
  5828. SpecialCategory 447561 "J bisher gruppiert~J bisher~Quartal3~Monat2" Parent 447557
  5829. Levels 0 Label "Aug./2020" Inclusion Generate Lastuse 20201216 Rollup True
  5830. TimeAggregate None Primary 1022611 Primary 1022613 Primary 1022615 Primary 1022617
  5831. Primary 1022619 Primary 1022621 Primary 1022623 Primary 1022625 Primary 1022627
  5832. Primary 1022629 Primary 1022631 Primary 1022633 Primary 1022635 Primary 1022637
  5833. Primary 1022639 Primary 1022641 Primary 1022643 Primary 1022645 Primary 1022647
  5834. Primary 1022649 Primary 1022651 Primary 1022653 Primary 1022655 Primary 1022657
  5835. Primary 1022659 Primary 1022661 Primary 1022663 Primary 1022665 Primary 1022667
  5836. Primary 1022669 Primary 1022671 Sign False
  5837. SpecialCategory 447563 "J bisher gruppiert~J bisher~Quartal3~Monat3" Parent 447557
  5838. Levels 0 Label "Sept./2020" Inclusion Generate Lastuse 20201216 Rollup True
  5839. TimeAggregate None Primary 1022675 Primary 1022677 Primary 1022679 Primary 1022681
  5840. Primary 1022683 Primary 1022685 Primary 1022687 Primary 1022689 Primary 1022691
  5841. Primary 1022693 Primary 1022695 Primary 1022697 Primary 1022699 Primary 1022701
  5842. Primary 1022703 Primary 1022705 Primary 1022707 Primary 1022709 Primary 1022711
  5843. Primary 1022713 Primary 1022715 Primary 1022717 Primary 1022719 Primary 1022721
  5844. Primary 1022723 Primary 1022725 Primary 1022727 Primary 1022729 Primary 1022731
  5845. Primary 1022733 Sign False
  5846. SpecialCategory 1022951 "J bisher gruppiert~J bisher~Quartal4" Parent 1579
  5847. Levels 0 Label "4. Q. 2020" Inclusion Generate Lastuse 20201216 Rollup True
  5848. TimeAggregate None Primary 1022953 Primary 1022955 Primary 1022957 Sign False
  5849. SpecialCategory 1022953 "J bisher gruppiert~J bisher~Quartal4~Monat1" Parent 1022951
  5850. Levels 0 Label "Okt./2020" Inclusion Generate Lastuse 20201216 Rollup True
  5851. TimeAggregate None Primary 1022739 Primary 1022741 Primary 1022743 Primary 1022745
  5852. Primary 1022747 Primary 1022749 Primary 1022751 Primary 1022753 Primary 1022755
  5853. Primary 1022757 Primary 1022759 Primary 1022761 Primary 1022763 Primary 1022765
  5854. Primary 1022767 Primary 1022769 Primary 1022771 Primary 1022773 Primary 1022775
  5855. Primary 1022777 Primary 1022779 Primary 1022781 Primary 1022783 Primary 1022785
  5856. Primary 1022787 Primary 1022789 Primary 1022791 Primary 1022793 Primary 1022795
  5857. Primary 1022797 Primary 1022799 Sign False
  5858. SpecialCategory 1022955 "J bisher gruppiert~J bisher~Quartal4~Monat2" Parent 1022951
  5859. Levels 0 Label "Nov./2020" Inclusion Generate Lastuse 20201216 Rollup True
  5860. TimeAggregate None Primary 1022803 Primary 1022805 Primary 1022807 Primary 1022809
  5861. Primary 1022811 Primary 1022813 Primary 1022815 Primary 1022817 Primary 1022819
  5862. Primary 1022821 Primary 1022823 Primary 1022825 Primary 1022827 Primary 1022829
  5863. Primary 1022831 Primary 1022833 Primary 1022835 Primary 1022837 Primary 1022839
  5864. Primary 1022841 Primary 1022843 Primary 1022845 Primary 1022847 Primary 1022849
  5865. Primary 1022851 Primary 1022853 Primary 1022855 Primary 1022857 Primary 1022859
  5866. Primary 1022861 Sign False
  5867. SpecialCategory 1022957 "J bisher gruppiert~J bisher~Quartal4~Monat3" Parent 1022951
  5868. Levels 0 Label "Dez./2020" Inclusion Generate Lastuse 20201216 Rollup True
  5869. TimeAggregate None Primary 1022865 Primary 1022867 Primary 1022869 Primary 1022871
  5870. Primary 1022873 Primary 1022875 Primary 1022877 Primary 1022879 Primary 1022881
  5871. Primary 1022883 Primary 1022885 Primary 1022887 Primary 1022889 Primary 1022891
  5872. Primary 1022893 Sign False
  5873. SpecialCategory 1587 "J bisher gruppiert~ÄNDERUNG ( ""Voriges J bisher"" , ""J bisher"" )"
  5874. Parent 725 Levels 0 Label "J bisher Änderung" Lastuse 20201216 Rollup False
  5875. TimeAggregate None Calc change ( "J bisher gruppiert~Voriges J bisher@1585" , "J bisher gruppiert~J bisher@1579" ) Sign False
  5876. SpecialCategory 1589 "J bisher gruppiert~PROZENTZUWACHS ( ""Voriges J bisher"" , ""J bisher"" )"
  5877. Parent 725 Levels 0 Label "J bisher Zuwachs" Lastuse 20201216 Rollup False
  5878. TimeAggregate None Calc percent-growth ( "J bisher gruppiert~Voriges J bisher@1585" , "J bisher gruppiert~J bisher@1579" ) Format "0%~2"
  5879. Sign False
  5880. SpecialCategory 441549 "441549" Parent 673 Levels 0 Label "Aktueller Monat"
  5881. Lastuse 20201216 Rollup True TimeAggregate Single RunningPeriods 0 TargetOffset 0
  5882. TargetLevel "Monat" ContextOffset 0 DateDrill 675 Primary 1022863 Sign False
  5883. SpecialCategory 11071 "11071" Parent 673 Levels 0 Label "Vormonat (-1)"
  5884. Lastuse 20201216 Rollup True TimeAggregate Single RunningPeriods 0 TargetOffset -1
  5885. TargetLevel "Monat" ContextOffset 0 DateDrill 675 Primary 1022801 Sign False
  5886. SpecialCategory 11073 "11073" Parent 673 Levels 0 Label "Vormonat (-2)"
  5887. Lastuse 20201216 Rollup True TimeAggregate Single RunningPeriods 0 TargetOffset -2
  5888. TargetLevel "Monat" ContextOffset 0 DateDrill 675 Primary 1022737 Sign False
  5889. SpecialCategory 11077 "11077" Parent 673 Levels 0 Label "Vormonat (-3)"
  5890. Lastuse 20201216 Rollup True TimeAggregate Single RunningPeriods 0 TargetOffset -3
  5891. TargetLevel "Monat" ContextOffset 0 DateDrill 675 Primary 1022673 Sign False
  5892. SpecialCategory 11079 "11079" Parent 673 Levels 0 Label "J bisher per Vormonat (-1)"
  5893. Lastuse 20201216 Rollup True TimeAggregate ToDate RunningPeriods 0 ToDateLevel "Jahr"
  5894. TargetOffset -1 TargetLevel "Monat" ContextOffset 0 DateDrill 675 TransientLevelList 447569 For 687
  5895. EndList Primary 444723 Primary 447571 Primary 447573 Primary 1022959 Sign False
  5896. SpecialCategory 444723 "11079~Quartal1" Parent 11079 Levels 0 Label "1. Q. 2020"
  5897. Inclusion Generate Lastuse 20201216 Rollup True TimeAggregate None Primary 1022165
  5898. Primary 1022229 Primary 1022289 Sign False
  5899. SpecialCategory 447571 "11079~Quartal2" Parent 11079 Levels 0 Label "2. Q. 2020"
  5900. Inclusion Generate Lastuse 20201216 Rollup True TimeAggregate None Primary 1022355
  5901. Primary 1022417 Primary 1022481 Sign False
  5902. SpecialCategory 447573 "11079~Quartal3" Parent 11079 Levels 0 Label "3. Q. 2020"
  5903. Inclusion Generate Lastuse 20201216 Rollup True TimeAggregate None Primary 1022545
  5904. Primary 1022609 Primary 1022673 Sign False
  5905. SpecialCategory 1022959 "11079~Quartal4" Parent 11079 Levels 0 Label "4. Q. 2020"
  5906. Inclusion Generate Lastuse 20201216 Rollup True TimeAggregate None Primary 1022737
  5907. Primary 1022801 Sign False
  5908. SpecialCategory 11083 "11083" Parent 673 Levels 0 Label "J bisher per Vormonat (-2)"
  5909. Lastuse 20201216 Rollup True TimeAggregate ToDate RunningPeriods 0 ToDateLevel "Jahr"
  5910. TargetOffset -2 TargetLevel "Monat" ContextOffset 0 DateDrill 675 TransientLevelList 447577 For 687
  5911. EndList Primary 447575 Primary 447579 Primary 447581 Primary 1022961 Sign False
  5912. SpecialCategory 447575 "11083~Quartal1" Parent 11083 Levels 0 Label "1. Q. 2020"
  5913. Inclusion Generate Lastuse 20201216 Rollup True TimeAggregate None Primary 1022165
  5914. Primary 1022229 Primary 1022289 Sign False
  5915. SpecialCategory 447579 "11083~Quartal2" Parent 11083 Levels 0 Label "2. Q. 2020"
  5916. Inclusion Generate Lastuse 20201216 Rollup True TimeAggregate None Primary 1022355
  5917. Primary 1022417 Primary 1022481 Sign False
  5918. SpecialCategory 447581 "11083~Quartal3" Parent 11083 Levels 0 Label "3. Q. 2020"
  5919. Inclusion Generate Lastuse 20201216 Rollup True TimeAggregate None Primary 1022545
  5920. Primary 1022609 Primary 1022673 Sign False
  5921. SpecialCategory 1022961 "11083~Quartal4" Parent 11083 Levels 0 Label "4. Q. 2020"
  5922. Inclusion Generate Lastuse 20201216 Rollup True TimeAggregate None Primary 1022737
  5923. Sign False
  5924. SpecialCategory 11085 "11085" Parent 673 Levels 0 Label "J bisher per Vormonat (-3)"
  5925. Lastuse 20201216 Rollup True TimeAggregate ToDate RunningPeriods 0 ToDateLevel "Jahr"
  5926. TargetOffset -3 TargetLevel "Monat" ContextOffset 0 DateDrill 675 TransientLevelList 447583 For 687
  5927. EndList Primary 444725 Primary 447585 Primary 1022963 Sign False
  5928. SpecialCategory 444725 "11085~Quartal1" Parent 11085 Levels 0 Label "1. Q. 2020"
  5929. Inclusion Generate Lastuse 20201216 Rollup True TimeAggregate None Primary 1022165
  5930. Primary 1022229 Primary 1022289 Sign False
  5931. SpecialCategory 447585 "11085~Quartal2" Parent 11085 Levels 0 Label "2. Q. 2020"
  5932. Inclusion Generate Lastuse 20201216 Rollup True TimeAggregate None Primary 1022355
  5933. Primary 1022417 Primary 1022481 Sign False
  5934. SpecialCategory 1022963 "11085~Quartal3" Parent 11085 Levels 0 Label "3. Q. 2020"
  5935. Inclusion Generate Lastuse 20201216 Rollup True TimeAggregate None Primary 1022545
  5936. Primary 1022609 Primary 1022673 Sign False
  5937. SpecialCategory 1021815 "1021815" Parent 673 Levels 0 Label "Vorletztes Jahr bisher"
  5938. Lastuse 20201216 Rollup False TimeAggregate ToDate RunningPeriods 0 ToDateLevel "Jahr"
  5939. TargetOffset 0 TargetLevel "Tag" ContextOffset -2 ContextLevel "Jahr" DateDrill 675
  5940. TransientLevelList 1840115 For 687 1840119 For 693 EndList Primary 1840113
  5941. Primary 1840125 Primary 1840133 Primary 1840141 Sign False
  5942. SpecialCategory 1840113 "1021815~Quartal1" Parent 1021815 Levels 0 Label "1. Q. 2018"
  5943. Inclusion Generate Lastuse 20201216 Rollup True TimeAggregate None Primary 1840117
  5944. Primary 1840121 Primary 1840123 Sign False
  5945. SpecialCategory 1840117 "1021815~Quartal1~Monat1" Parent 1840113 Levels 0
  5946. Label "Jan./2018" Inclusion Generate Lastuse 20201216 Rollup True TimeAggregate None
  5947. Primary 446743 Primary 446745 Primary 446747 Primary 446749 Primary 446751
  5948. Primary 446753 Primary 446755 Primary 446757 Primary 446759 Primary 446761
  5949. Primary 446763 Primary 446765 Primary 446767 Primary 446769 Primary 446771
  5950. Primary 446773 Primary 446775 Primary 446777 Primary 446779 Primary 446781
  5951. Primary 446783 Primary 446785 Primary 446787 Primary 446789 Primary 446791
  5952. Primary 446793 Primary 446795 Primary 446797 Primary 446799 Primary 446801
  5953. Primary 446803 Sign False
  5954. SpecialCategory 1840121 "1021815~Quartal1~Monat2" Parent 1840113 Levels 0
  5955. Label "Feb./2018" Inclusion Generate Lastuse 20201216 Rollup True TimeAggregate None
  5956. Primary 446807 Primary 446809 Primary 446811 Primary 446813 Primary 446815
  5957. Primary 446817 Primary 446819 Primary 446821 Primary 446823 Primary 446825
  5958. Primary 446827 Primary 446829 Primary 446831 Primary 446833 Primary 446835
  5959. Primary 446837 Primary 446839 Primary 446841 Primary 446843 Primary 446845
  5960. Primary 446847 Primary 446849 Primary 446851 Primary 446853 Primary 446855
  5961. Primary 446857 Primary 446859 Primary 446861 Sign False
  5962. SpecialCategory 1840123 "1021815~Quartal1~Monat3" Parent 1840113 Levels 0
  5963. Label "März/2018" Inclusion Generate Lastuse 20201216 Rollup True TimeAggregate None
  5964. Primary 446865 Primary 446867 Primary 446869 Primary 446871 Primary 446873
  5965. Primary 446875 Primary 446877 Primary 446879 Primary 446881 Primary 446883
  5966. Primary 446885 Primary 446887 Primary 446889 Primary 446891 Primary 446893
  5967. Primary 446895 Primary 446897 Primary 446899 Primary 446901 Primary 446903
  5968. Primary 446905 Primary 446907 Primary 446909 Primary 446911 Primary 446913
  5969. Primary 446915 Primary 446917 Primary 446919 Primary 446921 Primary 446923
  5970. Primary 446925 Sign False
  5971. SpecialCategory 1840125 "1021815~Quartal2" Parent 1021815 Levels 0 Label "2. Q. 2018"
  5972. Inclusion Generate Lastuse 20201216 Rollup True TimeAggregate None Primary 1840127
  5973. Primary 1840129 Primary 1840131 Sign False
  5974. SpecialCategory 1840127 "1021815~Quartal2~Monat1" Parent 1840125 Levels 0
  5975. Label "Apr./2018" Inclusion Generate Lastuse 20201216 Rollup True TimeAggregate None
  5976. Primary 446931 Primary 446933 Primary 446935 Primary 446937 Primary 446939
  5977. Primary 446941 Primary 446943 Primary 446945 Primary 446947 Primary 446949
  5978. Primary 446951 Primary 446953 Primary 446955 Primary 446957 Primary 446959
  5979. Primary 446961 Primary 446963 Primary 446965 Primary 446967 Primary 446969
  5980. Primary 446971 Primary 446973 Primary 446975 Primary 446977 Primary 446979
  5981. Primary 446981 Primary 446983 Primary 446985 Primary 446987 Primary 446989
  5982. Sign False
  5983. SpecialCategory 1840129 "1021815~Quartal2~Monat2" Parent 1840125 Levels 0
  5984. Label "Mai/2018" Inclusion Generate Lastuse 20201216 Rollup True TimeAggregate None
  5985. Primary 446993 Primary 446995 Primary 446997 Primary 446999 Primary 447001
  5986. Primary 447003 Primary 447005 Primary 447007 Primary 447009 Primary 447011
  5987. Primary 447013 Primary 447015 Primary 447017 Primary 447019 Primary 447021
  5988. Primary 447023 Primary 447025 Primary 447027 Primary 447029 Primary 447031
  5989. Primary 447033 Primary 447035 Primary 447037 Primary 447039 Primary 447041
  5990. Primary 447043 Primary 447045 Primary 447047 Primary 447049 Primary 447051
  5991. Primary 447053 Sign False
  5992. SpecialCategory 1840131 "1021815~Quartal2~Monat3" Parent 1840125 Levels 0
  5993. Label "Juni/2018" Inclusion Generate Lastuse 20201216 Rollup True TimeAggregate None
  5994. Primary 447057 Primary 447059 Primary 447061 Primary 447063 Primary 447065
  5995. Primary 447067 Primary 447069 Primary 447071 Primary 447073 Primary 447075
  5996. Primary 447077 Primary 447079 Primary 447081 Primary 447083 Primary 447085
  5997. Primary 447087 Primary 447089 Primary 447091 Primary 447093 Primary 447095
  5998. Primary 447097 Primary 447099 Primary 447101 Primary 447103 Primary 447105
  5999. Primary 447107 Primary 447109 Primary 447111 Primary 447113 Primary 447115
  6000. Sign False
  6001. SpecialCategory 1840133 "1021815~Quartal3" Parent 1021815 Levels 0 Label "3. Q. 2018"
  6002. Inclusion Generate Lastuse 20201216 Rollup True TimeAggregate None Primary 1840135
  6003. Primary 1840137 Primary 1840139 Sign False
  6004. SpecialCategory 1840135 "1021815~Quartal3~Monat1" Parent 1840133 Levels 0
  6005. Label "Juli/2018" Inclusion Generate Lastuse 20201216 Rollup True TimeAggregate None
  6006. Primary 447121 Primary 447123 Primary 447125 Primary 447127 Primary 447129
  6007. Primary 447131 Primary 447133 Primary 447135 Primary 447137 Primary 447139
  6008. Primary 447141 Primary 447143 Primary 447145 Primary 447147 Primary 447149
  6009. Primary 447151 Primary 447153 Primary 447155 Primary 447157 Primary 447159
  6010. Primary 447161 Primary 447163 Primary 447165 Primary 447167 Primary 447169
  6011. Primary 447171 Primary 447173 Primary 447175 Primary 447177 Primary 447179
  6012. Primary 447181 Sign False
  6013. SpecialCategory 1840137 "1021815~Quartal3~Monat2" Parent 1840133 Levels 0
  6014. Label "Aug./2018" Inclusion Generate Lastuse 20201216 Rollup True TimeAggregate None
  6015. Primary 447185 Primary 447187 Primary 447189 Primary 447191 Primary 447193
  6016. Primary 447195 Primary 447197 Primary 447199 Primary 447201 Primary 447203
  6017. Primary 447205 Primary 447207 Primary 447209 Primary 447211 Primary 447213
  6018. Primary 447215 Primary 447217 Primary 447219 Primary 447221 Primary 447223
  6019. Primary 447225 Primary 447227 Primary 447229 Primary 447231 Primary 447233
  6020. Primary 447235 Primary 447237 Primary 447239 Primary 447241 Primary 447243
  6021. Primary 447245 Sign False
  6022. SpecialCategory 1840139 "1021815~Quartal3~Monat3" Parent 1840133 Levels 0
  6023. Label "Sept./2018" Inclusion Generate Lastuse 20201216 Rollup True TimeAggregate None
  6024. Primary 447249 Primary 447251 Primary 447253 Primary 447255 Primary 447257
  6025. Primary 447259 Primary 447261 Primary 447263 Primary 447265 Primary 447267
  6026. Primary 447269 Primary 447271 Primary 447273 Primary 447275 Primary 447277
  6027. Primary 447279 Primary 447281 Primary 447283 Primary 447285 Primary 447287
  6028. Primary 447289 Primary 447291 Primary 447293 Primary 447295 Primary 447297
  6029. Primary 447299 Primary 447301 Primary 447303 Primary 447305 Primary 447307
  6030. Sign False
  6031. SpecialCategory 1840141 "1021815~Quartal4" Parent 1021815 Levels 0 Label "4. Q. 2018"
  6032. Inclusion Generate Lastuse 20201216 Rollup True TimeAggregate None Primary 1840143
  6033. Primary 1840145 Primary 1840147 Sign False
  6034. SpecialCategory 1840143 "1021815~Quartal4~Monat1" Parent 1840141 Levels 0
  6035. Label "Okt./2018" Inclusion Generate Lastuse 20201216 Rollup True TimeAggregate None
  6036. Primary 447313 Primary 447315 Primary 447317 Primary 447319 Primary 447321
  6037. Primary 447323 Primary 447325 Primary 447327 Primary 447329 Primary 447331
  6038. Primary 447333 Primary 447335 Primary 447337 Primary 447339 Primary 447341
  6039. Primary 447343 Primary 447345 Primary 447347 Primary 447349 Primary 447351
  6040. Primary 447353 Primary 447355 Primary 447357 Primary 447359 Primary 447361
  6041. Primary 447363 Primary 447365 Primary 447367 Primary 447369 Primary 447371
  6042. Primary 447373 Sign False
  6043. SpecialCategory 1840145 "1021815~Quartal4~Monat2" Parent 1840141 Levels 0
  6044. Label "Nov./2018" Inclusion Generate Lastuse 20201216 Rollup True TimeAggregate None
  6045. Primary 447377 Primary 447379 Primary 447381 Primary 447383 Primary 447385
  6046. Primary 447387 Primary 447389 Primary 447391 Primary 447393 Primary 447395
  6047. Primary 447397 Primary 447399 Primary 447401 Primary 447403 Primary 447405
  6048. Primary 447407 Primary 447409 Primary 447411 Primary 447413 Primary 447415
  6049. Primary 447417 Primary 447419 Primary 447421 Primary 447423 Primary 447425
  6050. Primary 447427 Primary 447429 Primary 447431 Primary 447433 Primary 447435
  6051. Sign False
  6052. SpecialCategory 1840147 "1021815~Quartal4~Monat3" Parent 1840141 Levels 0
  6053. Label "Dez./2018" Inclusion Generate Lastuse 20201216 Rollup True TimeAggregate None
  6054. Primary 447439 Primary 447441 Primary 447443 Primary 447445 Primary 447447
  6055. Primary 447449 Primary 447451 Primary 447453 Primary 447455 Primary 447457
  6056. Primary 447459 Primary 447461 Primary 447463 Primary 447465 Primary 447467
  6057. Sign False
  6058. SpecialCategory 745945 "745945" Parent 673 Levels 0 Label "letztes Jahr"
  6059. Lastuse 20201216 Rollup False TimeAggregate Single RunningPeriods 0 TargetOffset -1
  6060. TargetLevel "Jahr" ContextOffset 0 DateDrill 675 Primary 1022965 Sign False
  6061. SpecialCategory 1021813 "1021813" Parent 673 Levels 0 Label "Vorletztes Jahr"
  6062. Lastuse 20201216 Rollup False TimeAggregate Single RunningPeriods 0 TargetOffset -2
  6063. TargetLevel "Jahr" ContextOffset 0 DateDrill 675 Primary 446737 Sign False
  6064. SpecialCategory 745947 "745947" Parent 673 Levels 0 Label "letzte 13 Monate"
  6065. Lastuse 20201216 Rollup False TimeAggregate Running RunningPeriods 13 TargetOffset -1
  6066. TargetLevel "Monat" ContextOffset 0 DateDrill 675 Primary 1026099 Primary 1033207
  6067. Primary 1022165 Primary 1022229 Primary 1022289 Primary 1022355 Primary 1022417
  6068. Primary 1022481 Primary 1022545 Primary 1022609 Primary 1022673 Primary 1022737
  6069. Primary 1022801 Sign False
  6070. SpecialCategory 1021301 "1021301" Parent 673 Levels 0 Label "letzte 7 Tage"
  6071. Lastuse 20201216 Rollup False TimeAggregate Running RunningPeriods 7 TargetOffset 0
  6072. TargetLevel "Tag" ContextOffset 0 DateDrill 675 Primary 1022881 Primary 1022883
  6073. Primary 1022885 Primary 1022887 Primary 1022889 Primary 1022891 Primary 1022893
  6074. Sign False
  6075. SpecialCategory 1021745 "1021745" Parent 673 Levels 0 Label "12 Monate kum. rollierend"
  6076. Lastuse 20201216 Rollup False TimeAggregate None Primary 1021749 Primary 1021751
  6077. Primary 1021753 Primary 1021755 Primary 1021757 Primary 1021759 Primary 1021761
  6078. Primary 1021763 Primary 1021765 Primary 1021767 Primary 1021769 Primary 1021771
  6079. Primary 1021773 Primary 1021775 Sign False
  6080. SpecialCategory 1021749 "1021749" Parent 1021745 Levels 0 Label "-13" Lastuse 20201216
  6081. Rollup True TimeAggregate Running RunningPeriods 12 TargetOffset -13 TargetLevel "Monat"
  6082. ContextOffset 0 DateDrill 675 Primary 447437 Primary 1031449 Primary 1031733
  6083. Primary 1023335 Primary 1025537 Primary 1037901 Primary 1033433 Primary 1025669
  6084. Primary 1029235 Primary 1022969 Primary 1028391 Primary 1026099 Sign False
  6085. SpecialCategory 1021751 "1021751" Parent 1021745 Levels 0 Label "-12" Lastuse 20201216
  6086. Rollup True TimeAggregate Running RunningPeriods 12 TargetOffset -12 TargetLevel "Monat"
  6087. ContextOffset 0 DateDrill 675 Primary 1031449 Primary 1031733 Primary 1023335
  6088. Primary 1025537 Primary 1037901 Primary 1033433 Primary 1025669 Primary 1029235
  6089. Primary 1022969 Primary 1028391 Primary 1026099 Primary 1033207 Sign False
  6090. SpecialCategory 1021753 "1021753" Parent 1021745 Levels 0 Label "-11" Lastuse 20201216
  6091. Rollup True TimeAggregate Running RunningPeriods 12 TargetOffset -11 TargetLevel "Monat"
  6092. ContextOffset 0 DateDrill 675 Primary 1031733 Primary 1023335 Primary 1025537
  6093. Primary 1037901 Primary 1033433 Primary 1025669 Primary 1029235 Primary 1022969
  6094. Primary 1028391 Primary 1026099 Primary 1033207 Primary 1022165 Sign False
  6095. SpecialCategory 1021755 "1021755" Parent 1021745 Levels 0 Label "-10" Lastuse 20201216
  6096. Rollup True TimeAggregate Running RunningPeriods 12 TargetOffset -10 TargetLevel "Monat"
  6097. ContextOffset 0 DateDrill 675 Primary 1023335 Primary 1025537 Primary 1037901
  6098. Primary 1033433 Primary 1025669 Primary 1029235 Primary 1022969 Primary 1028391
  6099. Primary 1026099 Primary 1033207 Primary 1022165 Primary 1022229 Sign False
  6100. SpecialCategory 1021757 "1021757" Parent 1021745 Levels 0 Label "-9" Lastuse 20201216
  6101. Rollup True TimeAggregate Running RunningPeriods 12 TargetOffset -9 TargetLevel "Monat"
  6102. ContextOffset 0 DateDrill 675 Primary 1025537 Primary 1037901 Primary 1033433
  6103. Primary 1025669 Primary 1029235 Primary 1022969 Primary 1028391 Primary 1026099
  6104. Primary 1033207 Primary 1022165 Primary 1022229 Primary 1022289 Sign False
  6105. SpecialCategory 1021759 "1021759" Parent 1021745 Levels 0 Label "-8" Lastuse 20201216
  6106. Rollup True TimeAggregate Running RunningPeriods 12 TargetOffset -8 TargetLevel "Monat"
  6107. ContextOffset 0 DateDrill 675 Primary 1037901 Primary 1033433 Primary 1025669
  6108. Primary 1029235 Primary 1022969 Primary 1028391 Primary 1026099 Primary 1033207
  6109. Primary 1022165 Primary 1022229 Primary 1022289 Primary 1022355 Sign False
  6110. SpecialCategory 1021761 "1021761" Parent 1021745 Levels 0 Label "-7" Lastuse 20201216
  6111. Rollup True TimeAggregate Running RunningPeriods 12 TargetOffset -7 TargetLevel "Monat"
  6112. ContextOffset 0 DateDrill 675 Primary 1033433 Primary 1025669 Primary 1029235
  6113. Primary 1022969 Primary 1028391 Primary 1026099 Primary 1033207 Primary 1022165
  6114. Primary 1022229 Primary 1022289 Primary 1022355 Primary 1022417 Sign False
  6115. SpecialCategory 1021763 "1021763" Parent 1021745 Levels 0 Label "-6" Lastuse 20201216
  6116. Rollup True TimeAggregate Running RunningPeriods 12 TargetOffset -6 TargetLevel "Monat"
  6117. ContextOffset 0 DateDrill 675 Primary 1025669 Primary 1029235 Primary 1022969
  6118. Primary 1028391 Primary 1026099 Primary 1033207 Primary 1022165 Primary 1022229
  6119. Primary 1022289 Primary 1022355 Primary 1022417 Primary 1022481 Sign False
  6120. SpecialCategory 1021765 "1021765" Parent 1021745 Levels 0 Label "-5" Lastuse 20201216
  6121. Rollup True TimeAggregate Running RunningPeriods 12 TargetOffset -5 TargetLevel "Monat"
  6122. ContextOffset 0 DateDrill 675 Primary 1029235 Primary 1022969 Primary 1028391
  6123. Primary 1026099 Primary 1033207 Primary 1022165 Primary 1022229 Primary 1022289
  6124. Primary 1022355 Primary 1022417 Primary 1022481 Primary 1022545 Sign False
  6125. SpecialCategory 1021767 "1021767" Parent 1021745 Levels 0 Label "-4" Lastuse 20201216
  6126. Rollup True TimeAggregate Running RunningPeriods 12 TargetOffset -4 TargetLevel "Monat"
  6127. ContextOffset 0 DateDrill 675 Primary 1022969 Primary 1028391 Primary 1026099
  6128. Primary 1033207 Primary 1022165 Primary 1022229 Primary 1022289 Primary 1022355
  6129. Primary 1022417 Primary 1022481 Primary 1022545 Primary 1022609 Sign False
  6130. SpecialCategory 1021769 "1021769" Parent 1021745 Levels 0 Label "-3" Lastuse 20201216
  6131. Rollup True TimeAggregate Running RunningPeriods 12 TargetOffset -3 TargetLevel "Monat"
  6132. ContextOffset 0 DateDrill 675 Primary 1028391 Primary 1026099 Primary 1033207
  6133. Primary 1022165 Primary 1022229 Primary 1022289 Primary 1022355 Primary 1022417
  6134. Primary 1022481 Primary 1022545 Primary 1022609 Primary 1022673 Sign False
  6135. SpecialCategory 1021771 "1021771" Parent 1021745 Levels 0 Label "-2" Lastuse 20201216
  6136. Rollup True TimeAggregate Running RunningPeriods 12 TargetOffset -2 TargetLevel "Monat"
  6137. ContextOffset 0 DateDrill 675 Primary 1026099 Primary 1033207 Primary 1022165
  6138. Primary 1022229 Primary 1022289 Primary 1022355 Primary 1022417 Primary 1022481
  6139. Primary 1022545 Primary 1022609 Primary 1022673 Primary 1022737 Sign False
  6140. SpecialCategory 1021773 "1021773" Parent 1021745 Levels 0 Label "-1" Lastuse 20201216
  6141. Rollup True TimeAggregate Running RunningPeriods 12 TargetOffset -1 TargetLevel "Monat"
  6142. ContextOffset 0 DateDrill 675 Primary 1033207 Primary 1022165 Primary 1022229
  6143. Primary 1022289 Primary 1022355 Primary 1022417 Primary 1022481 Primary 1022545
  6144. Primary 1022609 Primary 1022673 Primary 1022737 Primary 1022801 Sign False
  6145. SpecialCategory 1021775 "1021775" Parent 1021745 Levels 0 Label "letzte 12 Mon. akt."
  6146. Lastuse 20201216 Rollup True TimeAggregate Running RunningPeriods 12 TargetOffset 0
  6147. TargetLevel "Monat" ContextOffset 0 DateDrill 675 Primary 1022165 Primary 1022229
  6148. Primary 1022289 Primary 1022355 Primary 1022417 Primary 1022481 Primary 1022545
  6149. Primary 1022609 Primary 1022673 Primary 1022737 Primary 1022801 Primary 1022863
  6150. Sign False
  6151. MapDrills
  6152. MapDrill 675
  6153. ViewName 677 "Alle Kategorien" Type All ViewCustomView 0
  6154. ViewName 679 "Dimension auslassen" Type Omit ViewCustomView 0
  6155. Dimension 727 "AH-Gruppe" DimType Regular NewCatsLock False ExcludeAutoPartitioning False
  6156. DimDefaultCategory 0
  6157. Categories
  6158. Root 729 "Hauptbetrieb" Inclusion Generate Lastuse 20201216 Filtered False
  6159. Suppressed False Sign False HideValue False IsKeyOrphanage False IsTruncated False
  6160. Blanks False
  6161. Drill 731 "Nach Hauptbetrieb" Inclusion Suppress Filtered False Suppressed True
  6162. PrimaryDrill True HideValue False
  6163. Levels 737 "Hauptbetrieb" Blanks "( Leerstelle )" DateFunction None Generate None
  6164. RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False
  6165. Timerank 0 UniqueCategories False UniqueMove False Associations 739 "Hauptbetrieb"
  6166. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Hauptbetrieb"
  6167. Levels 741 "Standort" Blanks "( Leerstelle )" DateFunction None Generate None
  6168. RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False
  6169. Timerank 0 UniqueCategories False UniqueMove False Associations 743 "Standort"
  6170. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Standort"
  6171. Levels 745 "Verkäufer" Blanks "( Leerstelle )" DateFunction None Generate None
  6172. RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False
  6173. Timerank 0 UniqueCategories False UniqueMove False Associations 747 "Verkäufer"
  6174. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Verkäufer"
  6175. Associations 302051 "Verkäufer" AssociationContext 731 AssociationType Type_Query
  6176. AssociationRole Role_OrderBy AssociationReferenced "Verkäufer" SortOrder Text
  6177. SortAs Ascending
  6178. Levels 749 "Fabrikat" Blanks "( Leerstelle )" DateFunction None Generate None
  6179. RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False
  6180. Timerank 0 UniqueCategories False UniqueMove False Associations 751 "Fabrikat"
  6181. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Fabrikat"
  6182. Associations 1022047 "Fabrikat_Order_By" AssociationContext 731 AssociationType Type_Query
  6183. AssociationRole Role_OrderBy AssociationReferenced "Fabrikat_Order_By"
  6184. SortOrder Int16 SortAs Ascending
  6185. Levels 753 "Model" Blanks "( Leerstelle )" DateFunction None Generate None
  6186. RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False
  6187. Timerank 0 UniqueCategories False UniqueMove False Associations 755 "Model"
  6188. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Model"
  6189. Associations 2577 "Model" AssociationContext 731 AssociationType Type_Query
  6190. AssociationRole Role_OrderBy AssociationReferenced "Model" SortOrder Text
  6191. SortAs Ascending
  6192. Levels 15571 "FZG" Blanks "( Leerstelle )" DateFunction None Generate None
  6193. RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False
  6194. Timerank 0 UniqueCategories False UniqueMove False Associations 15573 "FZG"
  6195. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "FZG"
  6196. Levels 1021725 "Konto" Blanks "( Leer )" DateFunction None Generate None
  6197. RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False
  6198. Timerank 0 UniqueCategories False UniqueMove False Associations 1021727
  6199. "Konto" AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Konto"
  6200. Associations 1021729 "Konto" AssociationContext 731 AssociationType Type_Query
  6201. AssociationRole Role_OrderBy AssociationReferenced "Konto" SortOrder Int16
  6202. SortAs Ascending
  6203. Category 1840701 "1" Parent 731 Levels 737 Label "Gottstein" Lastuse 20240405
  6204. SourceValue "1" Filtered False Suppressed False Sign False HideValue False
  6205. IsKeyOrphanage False IsTruncated False Blanks False
  6206. Category 1840703 "10" Parent 1840701 Levels 741 Label "BSPKW" Lastuse 20240405
  6207. SourceValue "10" Filtered False Suppressed False Sign False HideValue False
  6208. IsKeyOrphanage False IsTruncated False Blanks False
  6209. Category 1840705 "20" Parent 1840701 Levels 741 Label "BSMOT" Lastuse 20240405
  6210. SourceValue "20" Filtered False Suppressed False Sign False HideValue False
  6211. IsKeyOrphanage False IsTruncated False Blanks False
  6212. Category 1841011 "30" Parent 1840701 Levels 741 Label "RHF" Inclusion Generate
  6213. Lastuse 20240408 SourceValue "30" Filtered False Suppressed False Sign False
  6214. HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  6215. Category 1841013 "40" Parent 1840701 Levels 741 Label "SFH" Inclusion Generate
  6216. Lastuse 20240408 SourceValue "40" Filtered False Suppressed False Sign False
  6217. HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  6218. Category 1841015 "50" Parent 1840701 Levels 741 Label "WT" Inclusion Generate
  6219. Lastuse 20240408 SourceValue "50" Filtered False Suppressed False Sign False
  6220. HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  6221. Category 1841017 "60" Parent 1840701 Levels 741 Label "BI" Inclusion Generate
  6222. Lastuse 20240408 SourceValue "60" Filtered False Suppressed False Sign False
  6223. HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  6224. Category 1841019 "70" Parent 1840701 Levels 741 Label "TR" Inclusion Generate
  6225. Lastuse 20240408 SourceValue "70" Filtered False Suppressed False Sign False
  6226. HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  6227. MapDrills
  6228. MapDrill 731
  6229. ViewName 733 "Alle Kategorien" Type All ViewCustomView 0
  6230. ViewName 735 "Dimension auslassen" Type Omit ViewCustomView 0
  6231. Dimension 2393 "Verkäufer" DimType Regular NewCatsLock False ExcludeAutoPartitioning False
  6232. DimDefaultCategory 0
  6233. Categories
  6234. Root 2395 "Verkäufer" Inclusion Generate Lastuse 20201216 Filtered False
  6235. Suppressed False Sign False HideValue False IsKeyOrphanage False IsTruncated False
  6236. Blanks False
  6237. Drill 2397 "Nach Verkäufer" Inclusion Suppress Filtered False Suppressed True
  6238. PrimaryDrill True HideValue False
  6239. Levels 2403 "Verkäufer" Blanks "( Leerstelle )" DateFunction None Generate None
  6240. RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False
  6241. Timerank 0 UniqueCategories False UniqueMove False Associations 2405 "Verkäufer"
  6242. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Verkäufer"
  6243. Associations 242173 "Verkäufer" AssociationContext 2397 AssociationType Type_Query
  6244. AssociationRole Role_OrderBy AssociationReferenced "Verkäufer" SortOrder Text
  6245. SortAs Ascending
  6246. Levels 2407 "Fabrikat" Blanks "( Leerstelle )" DateFunction None Generate None
  6247. RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False
  6248. Timerank 0 UniqueCategories False UniqueMove False Associations 2409 "Fabrikat"
  6249. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Fabrikat"
  6250. Associations 1022049 "Fabrikat_Order_By" AssociationContext 2397 AssociationType Type_Query
  6251. AssociationRole Role_OrderBy AssociationReferenced "Fabrikat_Order_By"
  6252. SortOrder Int16 SortAs Ascending
  6253. Levels 2411 "Model" Blanks "( Leerstelle )" DateFunction None Generate None
  6254. RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False
  6255. Timerank 0 UniqueCategories False UniqueMove False Associations 2413 "Model"
  6256. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Model"
  6257. Associations 1020367 "Model" AssociationContext 2397 AssociationType Type_Query
  6258. AssociationRole Role_OrderBy AssociationReferenced "Model" SortOrder Text
  6259. SortAs Ascending
  6260. Levels 442445 "Modell_Beschreibung" Blanks "( Leerstelle )" DateFunction None
  6261. Generate None RefreshLabel False RefreshDescription False RefreshShortName False
  6262. NewCatsLock False Timerank 0 UniqueCategories False UniqueMove False Associations 442447
  6263. "Modellbez" AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Modellbez"
  6264. Associations 442453 "Modellbez" AssociationContext 2397 AssociationType Type_Query
  6265. AssociationRole Role_OrderBy AssociationReferenced "Modellbez" SortOrder Text
  6266. SortAs Ascending
  6267. Levels 8333 "FZG" Blanks "( Leerstelle )" DateFunction None Generate None
  6268. RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False
  6269. Timerank 0 UniqueCategories False UniqueMove False Associations 8335 "FZG"
  6270. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "FZG"
  6271. Levels 1021731 "Konto" Blanks "( Leer )" DateFunction None Generate None
  6272. RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False
  6273. Timerank 0 UniqueCategories False UniqueMove False Associations 1021733
  6274. "Konto" AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Konto"
  6275. Associations 1021735 "Konto" AssociationContext 2397 AssociationType Type_Query
  6276. AssociationRole Role_OrderBy AssociationReferenced "Konto" SortOrder Int16
  6277. SortAs Ascending
  6278. MapDrills
  6279. MapDrill 2397
  6280. ViewName 2399 "Alle Kategorien" Type All ViewCustomView 0
  6281. ViewName 2401 "Dimension auslassen" Type Omit ViewCustomView 0
  6282. Dimension 2423 "Fabrikat" DimType Regular NewCatsLock False ExcludeAutoPartitioning False
  6283. DimDefaultCategory 0
  6284. Categories
  6285. Root 2425 "Fabrikat" Inclusion Generate Lastuse 20201216 Filtered False
  6286. Suppressed False Sign False HideValue False IsKeyOrphanage False IsTruncated False
  6287. Blanks False
  6288. Drill 2427 "Nach Fabrikat" Inclusion Suppress Filtered False Suppressed True
  6289. PrimaryDrill True HideValue False
  6290. Levels 2433 "Fabrikat" Blanks "( Leerstelle )" DateFunction None Generate None
  6291. RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False
  6292. Timerank 0 UniqueCategories False UniqueMove False Associations 2435 "Fabrikat"
  6293. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Fabrikat"
  6294. Associations 1022051 "Fabrikat" AssociationContext 2427 AssociationType Type_Query
  6295. AssociationRole Role_OrderBy AssociationReferenced "Fabrikat" SortOrder Text
  6296. SortAs Ascending
  6297. Levels 2437 "Model" Blanks "( Leerstelle )" DateFunction None Generate None
  6298. RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False
  6299. Timerank 0 UniqueCategories False UniqueMove False Associations 2439 "Model"
  6300. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Model"
  6301. Associations 1020365 "Model" AssociationContext 2427 AssociationType Type_Query
  6302. AssociationRole Role_OrderBy AssociationReferenced "Model" SortOrder Text
  6303. SortAs Ascending
  6304. Levels 442449 "Modell_Beschreibung" Blanks "( Leerstelle )" DateFunction None
  6305. Generate None RefreshLabel False RefreshDescription False RefreshShortName False
  6306. NewCatsLock False Timerank 0 UniqueCategories False UniqueMove False Associations 442451
  6307. "Modellbez" AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Modellbez"
  6308. Associations 442455 "Modellbez" AssociationContext 2427 AssociationType Type_Query
  6309. AssociationRole Role_OrderBy AssociationReferenced "Modellbez" SortOrder Text
  6310. SortAs Ascending
  6311. Levels 8337 "FZG" Blanks "( Leerstelle )" DateFunction None Generate None
  6312. RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False
  6313. Timerank 0 UniqueCategories False UniqueMove False Associations 8339 "FZG"
  6314. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "FZG"
  6315. Levels 1021737 "Konto" Blanks "( Leer )" DateFunction None Generate None
  6316. RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False
  6317. Timerank 0 UniqueCategories False UniqueMove False Associations 1021739
  6318. "Konto" AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Konto"
  6319. Associations 1021741 "Konto" AssociationContext 2427 AssociationType Type_Query
  6320. AssociationRole Role_OrderBy AssociationReferenced "Konto" SortOrder Int16
  6321. SortAs Ascending
  6322. MapDrills
  6323. MapDrill 2427
  6324. ViewName 2429 "Alle Kategorien" Type All ViewCustomView 0
  6325. ViewName 2431 "Dimension auslassen" Type Omit ViewCustomView 0
  6326. Dimension 2467 "Kunde" DimType Regular NewCatsLock False ExcludeAutoPartitioning False
  6327. DimDefaultCategory 0
  6328. Categories
  6329. Root 2469 "Kunde" Inclusion Generate Lastuse 20201216 Filtered False Suppressed False
  6330. Sign False HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  6331. Drill 2471 "Nach Kunde" Inclusion Suppress Filtered False Suppressed True
  6332. PrimaryDrill True HideValue False
  6333. Levels 2477 "Kunde" Blanks "( Leerstelle )" DateFunction None Generate None
  6334. RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False
  6335. Timerank 0 UniqueCategories False UniqueMove False Associations 2479 "Kunde"
  6336. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Kunde"
  6337. Associations 2555 "Kunde" AssociationContext 2471 AssociationType Type_Query
  6338. AssociationRole Role_OrderBy AssociationReferenced "Kunde" SortOrder Int16
  6339. SortAs Ascending
  6340. MapDrills
  6341. MapDrill 2471
  6342. ViewName 2473 "Alle Kategorien" Type All ViewCustomView 0
  6343. ViewName 2475 "Dimension auslassen" Type Omit ViewCustomView 0
  6344. Dimension 9617 "Kundenart" DimType Regular NewCatsLock False ExcludeAutoPartitioning False
  6345. DimDefaultCategory 0
  6346. Categories
  6347. Root 9619 "Kundenart_neu" Inclusion Generate Lastuse 20201216 Filtered False
  6348. Suppressed False Sign False HideValue False IsKeyOrphanage False IsTruncated False
  6349. Blanks False
  6350. Drill 9621 "Nach Kundenart_neu" Inclusion Suppress Filtered False Suppressed True
  6351. PrimaryDrill True HideValue False
  6352. Levels 168637 "Kundenart" Blanks "( Leerstelle )" DateFunction None Generate None
  6353. RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False
  6354. Timerank 0 UniqueCategories False UniqueMove False Associations 168639
  6355. "Kundenart" AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Kundenart"
  6356. Associations 1021743 "Kundenart" AssociationContext 9621 AssociationType Type_Query
  6357. AssociationRole Role_OrderBy AssociationReferenced "Kundenart" SortOrder Text
  6358. SortAs Ascending
  6359. MapDrills
  6360. MapDrill 9621
  6361. ViewName 9623 "Alle Kategorien" Type All ViewCustomView 0
  6362. ViewName 9625 "Dimension auslassen" Type Omit ViewCustomView 0
  6363. Dimension 2481 "Fahrzeugart" DimType Regular NewCatsLock False ExcludeAutoPartitioning False
  6364. DimDefaultCategory 0
  6365. Categories
  6366. Root 2483 "Fahrzeugart" Inclusion Generate Lastuse 20201216 Filtered False
  6367. Suppressed False Sign False HideValue False IsKeyOrphanage False IsTruncated False
  6368. Blanks False
  6369. Drill 2485 "Nach Fahrzeugart" Inclusion Suppress Filtered False Suppressed True
  6370. PrimaryDrill True HideValue False
  6371. Levels 2491 "Fahrzeugart" Blanks "( Leerstelle )" DateFunction None Generate None
  6372. RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False
  6373. Timerank 0 UniqueCategories False UniqueMove False Associations 2493 "Fahrzeugart"
  6374. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Fahrzeugart"
  6375. Levels 8327 "Fahrzeugtyp" Blanks "( Leerstelle )" DateFunction None Generate None
  6376. RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False
  6377. Timerank 0 UniqueCategories False UniqueMove False Associations 8329 "Fahrzeugtyp"
  6378. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Fahrzeugtyp"
  6379. Associations 1841009 "Fahrzeugtyp" AssociationContext 2485 AssociationType Type_Query
  6380. AssociationRole Role_OrderBy AssociationReferenced "Fahrzeugtyp" SortOrder Text
  6381. SortAs Ascending
  6382. Levels 168649 "Fahrzeugtyp_1" Blanks "( Leerstelle )" DateFunction None
  6383. Generate None RefreshLabel False RefreshDescription False RefreshShortName False
  6384. NewCatsLock False Timerank 0 UniqueCategories False UniqueMove False
  6385. Category 1023513 "Neuwagen" Parent 2485 Levels 2491 Lastuse 20220628 SourceValue "NA"
  6386. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  6387. IsTruncated False Blanks False
  6388. Category 1023071 "Gebrauchtwagen" Parent 2485 Levels 2491 Lastuse 20220628
  6389. SourceValue "GA" Filtered False Suppressed False Sign False HideValue False
  6390. IsKeyOrphanage False IsTruncated False Blanks False
  6391. Category 1840983 "GK" Parent 2485 Levels 2491 Inclusion Filtered Lastuse 20220928
  6392. SourceValue "GK" Filtered True Suppressed False Sign False HideValue False
  6393. IsKeyOrphanage False IsTruncated False Blanks False
  6394. MapDrills
  6395. MapDrill 2485
  6396. ViewName 2487 "Alle Kategorien" Type All ViewCustomView 0
  6397. ViewName 2489 "Dimension auslassen" Type Omit ViewCustomView 0
  6398. Dimension 16463 "FZG Detail" DimType Regular NewCatsLock False ExcludeAutoPartitioning False
  6399. DimDefaultCategory 0
  6400. Categories
  6401. Root 16465 "Fahrzeugart~3369" Inclusion Generate Lastuse 20201216 Filtered False
  6402. Suppressed False Sign False HideValue False IsKeyOrphanage False IsTruncated False
  6403. Blanks False
  6404. Drill 16467 "Nach Fahrzeugart~3369" Inclusion Suppress Filtered False Suppressed True
  6405. PrimaryDrill True HideValue False
  6406. Levels 1021793 "Fabrikat" Blanks "( Leer )" DateFunction None Generate None
  6407. RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False
  6408. Timerank 0 UniqueCategories False UniqueMove False Associations 1021795
  6409. "Fabrikat" AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Fabrikat"
  6410. Associations 1022053 "Fabrikat_Order_By" AssociationContext 16467 AssociationType Type_Query
  6411. AssociationRole Role_OrderBy AssociationReferenced "Fabrikat_Order_By"
  6412. SortOrder Int16 SortAs Ascending
  6413. Levels 441535 "FZG_Detail" Blanks "( Leerstelle )" DateFunction None Generate None
  6414. RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False
  6415. Timerank 0 UniqueCategories False UniqueMove False Associations 441537
  6416. "FZG_Detail" AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "FZG_Detail"
  6417. Associations 441551 "Model" AssociationContext 16467 AssociationType Type_Query
  6418. AssociationRole Role_OrderBy AssociationReferenced "Model" SortOrder Text
  6419. SortAs Ascending
  6420. Levels 16485 "Model" Blanks "( Leerstelle )" DateFunction None Generate None
  6421. RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False
  6422. Timerank 0 UniqueCategories False UniqueMove False Associations 16487 "Modellbez"
  6423. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Modellbez"
  6424. Associations 1021809 "Invoice Date" AssociationContext 16467 AssociationType Type_Query
  6425. AssociationRole Role_OrderBy AssociationReferenced "Invoice Date" SortOrder Int16
  6426. SortAs Ascending
  6427. Levels 445495 "Konto" Blanks "( Leerstelle )" DateFunction None Generate None
  6428. RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False
  6429. Timerank 0 UniqueCategories False UniqueMove False Associations 445497
  6430. "Konto" AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Konto"
  6431. Levels 445491 "Buch_Text" Blanks "( Leerstelle )" DateFunction None Generate None
  6432. RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False
  6433. Timerank 0 UniqueCategories False UniqueMove False Associations 445493
  6434. "Beleg" AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Beleg"
  6435. MapDrills
  6436. MapDrill 16467
  6437. ViewName 16469 "Alle Kategorien" Type All ViewCustomView 0
  6438. ViewName 16471 "Dimension auslassen" Type Omit ViewCustomView 0
  6439. Dimension 442371 "PLZ-Gebiete" DimType Regular NewCatsLock False ExcludeAutoPartitioning False
  6440. DimDefaultCategory 0
  6441. Categories
  6442. Root 442373 "PLZ_1" Inclusion Generate Lastuse 20201216 Filtered False
  6443. Suppressed False Sign False HideValue False IsKeyOrphanage False IsTruncated False
  6444. Blanks False
  6445. Drill 442375 "Nach PLZ_1" Inclusion Suppress Filtered False Suppressed True
  6446. PrimaryDrill True HideValue False
  6447. Levels 442381 "PLZ_1" Blanks "( Leerstelle )" DateFunction None Generate None
  6448. RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False
  6449. Timerank 0 UniqueCategories False UniqueMove False Associations 442383
  6450. "Hauptbetrieb" AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Hauptbetrieb"
  6451. Levels 442385 "PLZ_2" Blanks "( Leerstelle )" DateFunction None Generate None
  6452. RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False
  6453. Timerank 0 UniqueCategories False UniqueMove False Associations 1840971
  6454. "Hauptbetrieb" AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Hauptbetrieb"
  6455. Levels 442389 "PLZ_3" Blanks "( Leerstelle )" DateFunction None Generate None
  6456. RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False
  6457. Timerank 0 UniqueCategories False UniqueMove False Associations 1840973
  6458. "Hauptbetrieb" AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Hauptbetrieb"
  6459. Levels 442393 "PLZ_4" Blanks "( Leerstelle )" DateFunction None Generate None
  6460. RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False
  6461. Timerank 0 UniqueCategories False UniqueMove False Associations 1840975
  6462. "Hauptbetrieb" AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Hauptbetrieb"
  6463. Levels 442397 "Plz Code_Deb" Blanks "( Leerstelle )" DateFunction None
  6464. Generate None RefreshLabel False RefreshDescription False RefreshShortName False
  6465. NewCatsLock False Timerank 0 UniqueCategories False UniqueMove False Associations 1840977
  6466. "Hauptbetrieb" AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Hauptbetrieb"
  6467. Levels 442401 "Kunde" Blanks "( Leerstelle )" DateFunction None Generate None
  6468. RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False
  6469. Timerank 0 UniqueCategories False UniqueMove False Associations 1840979
  6470. "Hauptbetrieb" AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Hauptbetrieb"
  6471. MapDrills
  6472. MapDrill 442375
  6473. ViewName 442377 "Alle Kategorien" Type All ViewCustomView 0
  6474. ViewName 442379 "Dimension auslassen" Type Omit ViewCustomView 0
  6475. Dimension 442461 "Lieferant" DimType Regular NewCatsLock False ExcludeAutoPartitioning False
  6476. DimDefaultCategory 0
  6477. Categories
  6478. Root 442463 "Name_Lieferant" Inclusion Generate Lastuse 20201216 Filtered False
  6479. Suppressed False Sign False HideValue False IsKeyOrphanage False IsTruncated False
  6480. Blanks False
  6481. Drill 442465 "Nach Name_Lieferant" Inclusion Suppress Filtered False Suppressed True
  6482. PrimaryDrill True HideValue False
  6483. Levels 442471 "Name_Lieferant" Blanks "( Leerstelle )" DateFunction None
  6484. Generate None RefreshLabel False RefreshDescription False RefreshShortName False
  6485. NewCatsLock False Timerank 0 UniqueCategories False UniqueMove False Associations 442473
  6486. "Hauptbetrieb" AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Hauptbetrieb"
  6487. Levels 442489 "FZG_Detail" Blanks "( Leerstelle )" DateFunction None Generate None
  6488. RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False
  6489. Timerank 0 UniqueCategories False UniqueMove False Associations 442493
  6490. "Standtage" AssociationContext 442465 AssociationType Type_Query AssociationRole Role_OrderBy
  6491. AssociationReferenced "Standtage" SortOrder Int16 SortAs Descending
  6492. Levels 442495 "Model" Blanks "( Leerstelle )" DateFunction None Generate None
  6493. RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False
  6494. Timerank 0 UniqueCategories False UniqueMove False Associations 1020369
  6495. "Model" AssociationContext 442465 AssociationType Type_Query AssociationRole Role_OrderBy
  6496. AssociationReferenced "Model" SortOrder Text SortAs Ascending
  6497. MapDrills
  6498. MapDrill 442465
  6499. ViewName 442467 "Alle Kategorien" Type All ViewCustomView 0
  6500. ViewName 442469 "Dimension auslassen" Type Omit ViewCustomView 0
  6501. Dimension 442511 "DB1 kleiner/größer 0" DimType Regular NewCatsLock False
  6502. ExcludeAutoPartitioning False DimDefaultCategory 0
  6503. Categories
  6504. Root 442513 "DB1 < 0" Inclusion Generate Lastuse 20201216 Filtered False
  6505. Suppressed False Sign False HideValue False IsKeyOrphanage False IsTruncated False
  6506. Blanks False
  6507. Drill 442515 "Nach DB1 < 0" Inclusion Suppress Filtered False Suppressed True
  6508. PrimaryDrill True HideValue False
  6509. Levels 442521 "DB1 < 0" Blanks "( Leerstelle )" DateFunction None Generate None
  6510. RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False
  6511. Timerank 0 UniqueCategories False UniqueMove False Associations 1840711
  6512. "Hauptbetrieb" AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Hauptbetrieb"
  6513. MapDrills
  6514. MapDrill 442515
  6515. ViewName 442517 "Alle Kategorien" Type All ViewCustomView 0
  6516. ViewName 442519 "Dimension auslassen" Type Omit ViewCustomView 0
  6517. Dimension 444779 "Einkäufer" DimType Regular NewCatsLock False ExcludeAutoPartitioning False
  6518. DimDefaultCategory 0
  6519. Categories
  6520. Root 444781 "Name_Einkäufer" Inclusion Generate Lastuse 20201216 Filtered False
  6521. Suppressed False Sign False HideValue False IsKeyOrphanage False IsTruncated False
  6522. Blanks False
  6523. Drill 444783 "Nach Name_Einkäufer" Inclusion Suppress Filtered False Suppressed True
  6524. PrimaryDrill True HideValue False
  6525. Levels 444789 "Name_Einkäufer" Blanks "( Leerstelle )" DateFunction None
  6526. Generate None RefreshLabel False RefreshDescription False RefreshShortName False
  6527. NewCatsLock False Timerank 0 UniqueCategories False UniqueMove False Associations 444791
  6528. "VB_Einkauf" AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "VB_Einkauf"
  6529. Associations 444793 "VB_Einkauf" AssociationContext 444783 AssociationType Type_Query
  6530. AssociationRole Role_OrderBy AssociationReferenced "VB_Einkauf" SortOrder Text
  6531. SortAs Ascending
  6532. Levels 444795 "Fabrikat" Blanks "( Leerstelle )" DateFunction None Generate None
  6533. RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False
  6534. Timerank 0 UniqueCategories False UniqueMove False Associations 444797
  6535. "Fabrikat" AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Fabrikat"
  6536. Associations 1022055 "Fabrikat_Order_By" AssociationContext 444783 AssociationType Type_Query
  6537. AssociationRole Role_OrderBy AssociationReferenced "Fabrikat_Order_By"
  6538. SortOrder Int16 SortAs Ascending
  6539. Levels 444805 "Model" Blanks "( Leerstelle )" DateFunction None Generate None
  6540. RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False
  6541. Timerank 0 UniqueCategories False UniqueMove False Associations 444807
  6542. "Model" AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Model"
  6543. Associations 1020371 "Model" AssociationContext 444783 AssociationType Type_Query
  6544. AssociationRole Role_OrderBy AssociationReferenced "Model" SortOrder Text
  6545. SortAs Ascending
  6546. Levels 444799 "Modell_Beschreibung" Blanks "( Leerstelle )" DateFunction None
  6547. Generate None RefreshLabel False RefreshDescription False RefreshShortName False
  6548. NewCatsLock False Timerank 0 UniqueCategories False UniqueMove False Associations 444801
  6549. "Modellbez" AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Modellbez"
  6550. Associations 444803 "Modellbez" AssociationContext 444783 AssociationType Type_Query
  6551. AssociationRole Role_OrderBy AssociationReferenced "Modellbez" SortOrder Text
  6552. SortAs Ascending
  6553. Levels 444811 "FZG" Blanks "( Leerstelle )" DateFunction None Generate None
  6554. RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False
  6555. Timerank 0 UniqueCategories False UniqueMove False Associations 444813
  6556. "FZG" AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "FZG"
  6557. MapDrills
  6558. MapDrill 444783
  6559. ViewName 444785 "Alle Kategorien" Type All ViewCustomView 0
  6560. ViewName 444787 "Dimension auslassen" Type Omit ViewCustomView 0
  6561. Dimension 1021777 "FZG" DimType Regular NewCatsLock False ExcludeAutoPartitioning False
  6562. DimDefaultCategory 0
  6563. Categories
  6564. Root 1021779 "FZG" Inclusion Generate Lastuse 20201216 Filtered False Suppressed False
  6565. Sign False HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  6566. Drill 1021781 "Nach FZG" Inclusion Suppress Filtered False Suppressed True
  6567. PrimaryDrill True HideValue False
  6568. Levels 1021787 "FZG" Blanks "( Leer )" DateFunction None Generate None
  6569. RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False
  6570. Timerank 0 UniqueCategories True UniqueMove False Associations 1021789
  6571. "FZG" AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "FZG"
  6572. Associations 1021791 "Invoice Date" AssociationContext 1021781 AssociationType Type_Query
  6573. AssociationRole Role_OrderBy AssociationReferenced "Invoice Date" SortOrder Int16
  6574. SortAs Ascending
  6575. MapDrills
  6576. MapDrill 1021781
  6577. ViewName 1021783 "Alle Kategorien" Type All ViewCustomView 0
  6578. ViewName 1021785 "Dimension auslassen" Type Omit ViewCustomView 0
  6579. Measure 242177 "Menge" Missing Zero IgnoreMissingValue False Storage Float64
  6580. OutPutScale 0 Decimals 9 ReverseSign False IsCurrency False IsFolder False
  6581. Format "#,##0~0" DrillThrough False EndList Associations 1022057 "Menge_final"
  6582. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Menge_final"
  6583. Measure 401481 "Erlös FZG" Missing Zero IgnoreMissingValue False Storage Float64
  6584. OutPutScale 0 Decimals 3 ReverseSign False IsCurrency False IsFolder False
  6585. Format "#,##0~0" DrillThrough False EndList Associations 401483 "Erlös"
  6586. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Erlös"
  6587. Measure 401485 "Einsatz FZG" Missing Zero IgnoreMissingValue False Storage Float64
  6588. OutPutScale 0 Decimals 3 ReverseSign False IsCurrency False IsFolder False
  6589. Format "#,##0~0" DrillThrough False EndList Associations 401487 "Einsatz"
  6590. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Einsatz"
  6591. Measure 242229 "DB 1" Calc "Erlös FZG@401481" - "Einsatz FZG@401485" Missing Zero
  6592. IgnoreMissingValue False Storage Float64 OutPutScale 0 Decimals 3 ReverseSign False
  6593. IsCurrency False IsFolder False Format "#,##0~0" DrillThrough False EndList
  6594. Measure 242235 "DB 1 %" Calc "DB 1@242229" / "Erlös FZG@401481" * 100 Missing Zero
  6595. Timing After_Rollup IgnoreMissingValue False Storage Default OutPutScale 0
  6596. Decimals 0 ReverseSign False IsCurrency False IsFolder False Format "#,##0~2"
  6597. DrillThrough False EndList
  6598. Measure 242233 "durchschn. DB 1" Calc "DB 1@242229" / "Menge@242177" Missing Zero
  6599. Timing After_Rollup IgnoreMissingValue False Storage Default OutPutScale 0
  6600. Decimals 0 ReverseSign False IsCurrency False IsFolder False Format "#,##0~0"
  6601. DrillThrough False EndList
  6602. Measure 1021685 "Boni" Missing Zero IgnoreMissingValue False Storage Float64
  6603. OutPutScale 0 Decimals 3 ReverseSign False IsCurrency False IsFolder False
  6604. Format "#,##0~0" DrillThrough False EndList Associations 1021687 "Bonus"
  6605. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Bonus"
  6606. Measure 1840419 "AfA" Calc 0 Missing Zero IgnoreMissingValue False Storage Float64
  6607. OutPutScale 0 Decimals 3 ReverseSign False IsCurrency False IsFolder False
  6608. Format "#,##0~0" DrillThrough False EndList
  6609. Measure 1021673 "Nachlass" Calc 0 Missing Zero IgnoreMissingValue False
  6610. Storage Float64 OutPutScale 0 Decimals 3 ReverseSign False IsCurrency False
  6611. IsFolder False Format "#,##0~0" DrillThrough False EndList
  6612. Measure 1021721 "Nachlass %" Calc "Nachlass@1021673" / ( "Erlös FZG@401481" + ( "Nachlass@1021673" * - 1 ) ) * 100 Missing Zero
  6613. IgnoreMissingValue False Storage Default OutPutScale 0 Decimals 3 ReverseSign False
  6614. IsCurrency False IsFolder False Format "#,##0~1" DrillThrough False EndList
  6615. Measure 401493 "Erlös Prov." Calc 0 Missing Zero IgnoreMissingValue False
  6616. Storage Float64 OutPutScale 0 Decimals 3 ReverseSign False IsCurrency False
  6617. IsFolder False Format "#,##0~0" DrillThrough False EndList
  6618. Measure 1021677 "Erlös Überf." Calc 0 Missing Zero IgnoreMissingValue False
  6619. Storage Float64 OutPutScale 0 Decimals 3 ReverseSign False IsCurrency False
  6620. IsFolder False Format "#,##0~0" DrillThrough False EndList
  6621. Measure 1021681 "VAK Überf." Calc 0 Missing Zero IgnoreMissingValue False
  6622. Storage Float64 OutPutScale 0 Decimals 3 ReverseSign False IsCurrency False
  6623. IsFolder False Format "#,##0~0" DrillThrough False EndList
  6624. Measure 1021689 "DB 1 Überf." Calc "Erlös Überf.@1021677" - "VAK Überf.@1021681" Missing Zero
  6625. IgnoreMissingValue False Storage Default OutPutScale 0 Decimals 3 ReverseSign False
  6626. IsCurrency False IsFolder False Format "#,##0~0" DrillThrough False EndList
  6627. Measure 1021691 "DB 1 Überf. %" Calc "DB 1 Überf.@1021689" / "Erlös Überf.@1021677" * 100 Missing Zero
  6628. IgnoreMissingValue False Storage Default OutPutScale 0 Decimals 3 ReverseSign False
  6629. IsCurrency False IsFolder False Format "#,##0~1" DrillThrough False EndList
  6630. Measure 401489 "Erlös Gar." Calc 0 Missing Zero IgnoreMissingValue False
  6631. Storage Float64 OutPutScale 0 Decimals 3 ReverseSign False IsCurrency False
  6632. IsFolder False Format "#,##0~0" DrillThrough False EndList
  6633. Measure 442349 "VAK Gar." Calc 0 Missing Zero IgnoreMissingValue False
  6634. Storage Float64 OutPutScale 0 Decimals 3 ReverseSign False IsCurrency False
  6635. IsFolder False Format "#,##0~0" DrillThrough False EndList
  6636. Measure 1021693 "DB 1 Gar." Calc "Erlös Gar.@401489" - "VAK Gar.@442349" Missing Zero
  6637. IgnoreMissingValue False Storage Default OutPutScale 0 Decimals 3 ReverseSign False
  6638. IsCurrency False IsFolder False Format "#,##0~0" DrillThrough False EndList
  6639. Measure 1021695 "DB 1 Gar. %" Calc "DB 1 Gar.@1021693" / "Erlös Gar.@401489" * 100 Missing Zero
  6640. IgnoreMissingValue False Storage Default OutPutScale 0 Decimals 3 ReverseSign False
  6641. IsCurrency False IsFolder False Format "#,##0~1" DrillThrough False EndList
  6642. Measure 1021653 "Erlös Zul." Calc 0 Missing Zero IgnoreMissingValue False
  6643. Storage Float64 OutPutScale 0 Decimals 3 ReverseSign False IsCurrency False
  6644. IsFolder False Format "#,##0~0" DrillThrough False EndList
  6645. Measure 1021657 "VAK Zul." Calc 0 Missing Zero IgnoreMissingValue False
  6646. Storage Float64 OutPutScale 0 Decimals 3 ReverseSign False IsCurrency False
  6647. IsFolder False Format "#,##0~0" DrillThrough False EndList
  6648. Measure 1021697 "DB 1 Zul." Calc "Erlös Zul.@1021653" - "VAK Zul.@1021657" Missing Zero
  6649. IgnoreMissingValue False Storage Default OutPutScale 0 Decimals 3 ReverseSign False
  6650. IsCurrency False IsFolder False Format "#,##0~0" DrillThrough False EndList
  6651. Measure 1021699 "DB 1 Zul. %" Calc "DB 1 Zul.@1021697" / "Erlös Zul.@1021653" * 100 Missing Zero
  6652. IgnoreMissingValue False Storage Default OutPutScale 0 Decimals 3 ReverseSign False
  6653. IsCurrency False IsFolder False Format "#,##0~1" DrillThrough False EndList
  6654. Measure 1021661 "Erlös Nachr." Calc 0 Missing Zero IgnoreMissingValue False
  6655. Storage Float64 OutPutScale 0 Decimals 3 ReverseSign False IsCurrency False
  6656. IsFolder False Format "#,##0~0" DrillThrough False EndList
  6657. Measure 1021665 "VAK Nachr." Calc 0 Missing Zero IgnoreMissingValue False
  6658. Storage Float64 OutPutScale 0 Decimals 3 ReverseSign False IsCurrency False
  6659. IsFolder False Format "#,##0~0" DrillThrough False EndList
  6660. Measure 1021701 "DB 1 Nachr." Calc "Erlös Nachr.@1021661" - "VAK Nachr.@1021665" Missing Zero
  6661. IgnoreMissingValue False Storage Default OutPutScale 0 Decimals 3 ReverseSign False
  6662. IsCurrency False IsFolder False Format "#,##0~0" DrillThrough False EndList
  6663. Measure 1021703 "DB 1 Nachr. %" Calc "DB 1 Nachr.@1021701" / "Erlös Nachr.@1021661" * 100 Missing Zero
  6664. IgnoreMissingValue False Storage Default OutPutScale 0 Decimals 3 ReverseSign False
  6665. IsCurrency False IsFolder False Format "#,##0~1" DrillThrough False EndList
  6666. Measure 401497 "Erlös Sonst." Calc 0 Missing Zero IgnoreMissingValue False
  6667. Storage Float64 OutPutScale 0 Decimals 3 ReverseSign False IsCurrency False
  6668. IsFolder False Format "#,##0~0" DrillThrough False EndList
  6669. Measure 401501 "VAK Sonst." Calc 0 Missing Zero IgnoreMissingValue False
  6670. Storage Float64 OutPutScale 0 Decimals 3 ReverseSign False IsCurrency False
  6671. IsFolder False Format "#,##0~0" DrillThrough False EndList
  6672. Measure 1021705 "DB 1 Sonst." Calc "Erlös Sonst.@401497" - "VAK Sonst.@401501" Missing Zero
  6673. IgnoreMissingValue False Storage Default OutPutScale 0 Decimals 3 ReverseSign False
  6674. IsCurrency False IsFolder False Format "#,##0~0" DrillThrough False EndList
  6675. Measure 1021707 "DB 1 Sonst. %" Calc "DB 1 Sonst.@1021705" / "Erlös Sonst.@401497" * 100 Missing Zero
  6676. IgnoreMissingValue False Storage Default OutPutScale 0 Decimals 3 ReverseSign False
  6677. IsCurrency False IsFolder False Format "#,##0~1" DrillThrough False EndList
  6678. Measure 1021669 "VAK Inst.setz." Calc 0 Missing Zero IgnoreMissingValue False
  6679. Storage Float64 OutPutScale 0 Decimals 3 ReverseSign False IsCurrency False
  6680. IsFolder False Format "#,##0~0" DrillThrough False EndList
  6681. Measure 441543 "Standtage" Missing Zero Rollup Average IgnoreMissingValue False
  6682. Storage Float64 OutPutScale 0 Decimals 4 ReverseSign False IsCurrency False
  6683. IsFolder False Format "#,##0~0" WeightId 1840981 DrillThrough False EndList Associations 441545
  6684. "Standtage_ori" AssociationType Type_Query AssociationRole Role_Source
  6685. AssociationReferenced "Standtage_ori"
  6686. Measure 1020373 "Erlös / Stk." Calc "Erlös FZG@401481" / "Menge@242177" IgnoreMissingValue False
  6687. Storage Default OutPutScale 0 Decimals 0 ReverseSign False IsCurrency False
  6688. IsFolder False Format "#,##0~0" DrillThrough False EndList
  6689. Measure 401519 "Instands. Werkstatt" Calc 0 Missing Zero IgnoreMissingValue False
  6690. Storage Float64 OutPutScale 0 Decimals 3 ReverseSign False IsCurrency False
  6691. IsFolder False Format "#,##0~0" DrillThrough False EndList
  6692. Measure 401523 "Instands. Teile" Calc 0 Missing Zero IgnoreMissingValue False
  6693. Storage Float64 OutPutScale 0 Decimals 3 ReverseSign False IsCurrency False
  6694. IsFolder False Format "#,##0~0" DrillThrough False EndList
  6695. Measure 401527 "Instandsetzung ges." Missing Zero IgnoreMissingValue False
  6696. Storage Float64 OutPutScale 0 Decimals 3 ReverseSign False IsCurrency False
  6697. IsFolder False Format "#,##0~0" DrillThrough False EndList Associations 401529
  6698. "int. Kosten" AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "int. Kosten"
  6699. Measure 401505 "Gesamterlöse" Calc 0 Missing Zero IgnoreMissingValue False
  6700. Storage Float64 OutPutScale 0 Decimals 3 ReverseSign False IsCurrency False
  6701. IsFolder False Format "#,##0~0" DrillThrough False EndList
  6702. Measure 401509 "Einsatz Gesamt" Calc 0 Missing Zero IgnoreMissingValue False
  6703. Storage Float64 OutPutScale 0 Decimals 3 ReverseSign False IsCurrency False
  6704. IsFolder False Format "#,##0~0" DrillThrough False EndList
  6705. Measure 442355 "Erlös inkl. Prov." Calc "Erlös FZG@401481" + "Erlös Prov.@401493" Missing Zero
  6706. Timing After_Rollup IgnoreMissingValue False Storage Default OutPutScale 0
  6707. Decimals 0 ReverseSign False IsCurrency False IsFolder False Format "#,##0~0"
  6708. DrillThrough False EndList
  6709. Measure 442357 "DB 2" Calc "DB 1@242229" - "Instandsetzung ges.@401527" Missing Zero
  6710. IgnoreMissingValue False Storage Default OutPutScale 0 Decimals 0 ReverseSign False
  6711. IsCurrency False IsFolder False Format "#,##0~0" DrillThrough False EndList
  6712. Measure 442359 "DB 2 %" Calc "DB 2@442357" / "Erlös inkl. Prov.@442355" * 100 Missing Zero
  6713. Timing After_Rollup IgnoreMissingValue False Storage Default OutPutScale 0
  6714. Decimals 0 ReverseSign False IsCurrency False IsFolder False Format "#,##0~2"
  6715. DrillThrough False EndList
  6716. Measure 442417 "durchschn. DB 2" Calc "DB 2@442357" / "Menge@242177" Missing Zero
  6717. Timing After_Rollup IgnoreMissingValue False Storage Default OutPutScale 0
  6718. Decimals 0 ReverseSign False IsCurrency False IsFolder False Format "#,##0~0"
  6719. DrillThrough False EndList
  6720. Measure 1840337 "GS AOV" Calc 0 Missing Zero IgnoreMissingValue False
  6721. Storage Float64 OutPutScale 0 Decimals 8 ReverseSign False IsCurrency False
  6722. IsFolder False Format "#,##0~0" DrillThrough False EndList
  6723. Measure 1840341 "Arbeitstag Mofr" Rollup Sum IgnoreMissingValue False Storage Float64
  6724. OutPutScale 0 Decimals 0 ReverseSign False IsCurrency False IsFolder False
  6725. DrillThrough False EndList Associations 1840343 "Arbeitstag Mofr" AssociationType Type_Query
  6726. AssociationRole Role_Source AssociationReferenced "Arbeitstag Mofr"
  6727. Measure 1840345 "Zaehler Mofr" Rollup Sum IgnoreMissingValue False Storage Float64
  6728. OutPutScale 0 Decimals 0 ReverseSign False IsCurrency False IsFolder False
  6729. DrillThrough False EndList Associations 1840347 "Zaehler Mofr" AssociationType Type_Query
  6730. AssociationRole Role_Source AssociationReferenced "Zaehler Mofr"
  6731. Measure 1840349 "Summe Mofr" Rollup Sum IgnoreMissingValue False Storage Float64
  6732. OutPutScale 0 Decimals 0 ReverseSign False IsCurrency False IsFolder False
  6733. DrillThrough False EndList Associations 1840351 "Summe Mofr" AssociationType Type_Query
  6734. AssociationRole Role_Source AssociationReferenced "Summe Mofr"
  6735. Measure 1840353 "Arbeitstag Mosa" Rollup Sum IgnoreMissingValue False Storage Float64
  6736. OutPutScale 0 Decimals 0 ReverseSign False IsCurrency False IsFolder False
  6737. DrillThrough False EndList Associations 1840355 "Arbeitstag Mosa" AssociationType Type_Query
  6738. AssociationRole Role_Source AssociationReferenced "Arbeitstag Mosa"
  6739. Measure 1840357 "Zaehler Mosa" Rollup Sum IgnoreMissingValue False Storage Float64
  6740. OutPutScale 0 Decimals 0 ReverseSign False IsCurrency False IsFolder False
  6741. DrillThrough False EndList Associations 1840359 "Zaehler Mosa" AssociationType Type_Query
  6742. AssociationRole Role_Source AssociationReferenced "Zaehler Mosa"
  6743. Measure 1840361 "Summe Mosa" Rollup Sum IgnoreMissingValue False Storage Float64
  6744. OutPutScale 0 Decimals 0 ReverseSign False IsCurrency False IsFolder False
  6745. DrillThrough False EndList Associations 1840363 "Summe Mosa" AssociationType Type_Query
  6746. AssociationRole Role_Source AssociationReferenced "Summe Mosa"
  6747. Measure 1840365 "Feiertage Id" Rollup Sum IgnoreMissingValue False Storage Float64
  6748. OutPutScale 0 Decimals 0 ReverseSign False IsCurrency False IsFolder False
  6749. DrillThrough False EndList Associations 1840367 "Feiertage Id" AssociationType Type_Query
  6750. AssociationRole Role_Source AssociationReferenced "Feiertage Id"
  6751. Measure 1840369 "Arbeitstag Nr Jahr" Rollup Sum IgnoreMissingValue False
  6752. Storage Float64 OutPutScale 0 Decimals 0 ReverseSign False IsCurrency False
  6753. IsFolder False DrillThrough False EndList Associations 1840371 "Arbeitstag Nr Jahr"
  6754. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Arbeitstag Nr Jahr"
  6755. Measure 1840373 "Gesamt Arbeitstage" Rollup Sum IgnoreMissingValue False
  6756. Storage Float64 OutPutScale 0 Decimals 0 ReverseSign False IsCurrency False
  6757. IsFolder False DrillThrough False EndList Associations 1840375 "Gesamt Arbeitstage"
  6758. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Gesamt Arbeitstage"
  6759. Signon 1021287 "GC_CARLO" UserId "gaps"
  6760. FullDb "" PromptForPassword False EncryptedPW "*1*01574E4A25607D4F742E64432E6956633E7723224574324A3CE274ED985A5F4E154C"
  6761. "4F5EE3691C42EC" AutoLogon False SignonType "DataSource"
  6762. Signon 1840413 "Global1" UserId "Global1"
  6763. FullDb "" PromptForPassword False EncryptedPW "*1*01657D344734397466603F34474D573C2F4D542C2F6062375E321F8838529A16DD9F"
  6764. "923DC4C0BD7F4F" AutoLogon True SignOnNamespace "CognosEx" SignonType "Cognos"
  6765. Cube 765 "V_Verkauf" MdcFile "c:\globalcube\system\ari\cube_out\v_verkauf.mdc"
  6766. EncryptedPW "" Status OK CubeCreation On Optimize Default ConsolidatedRecords 10000000
  6767. PartitionSize 500000 PassesNumber 5 Compress False IncrementalUpdate False
  6768. ServerCube False CubeStamp 1539250870 CubeCycle 86 BlockParentTotals False
  6769. Caching False UseAlternateFileName False DeployType DeployToAvailableLocationsAutomatic
  6770. DeployLocations "c:\globalcube\cubes" EndList DeployCleanupEnabled True
  6771. DeployCleanupNumberOfCubes 2 DrillThrough False EndList DataSourceSignon False
  6772. PublishEnable True PublishStatus None PublishAllowNullSuppression True
  6773. PublishAllowMultiEdgeSuppression True PublishAllowAccessToSuppressionOptions True
  6774. DimensionView 669 "All Categories" DimensionView 727 "All Categories" DimensionView 2393
  6775. "All Categories" DimensionView 2423 "All Categories" DimensionView 2467
  6776. "All Categories" DimensionView 9617 "All Categories" DimensionView 2481
  6777. "All Categories" DimensionView 16463 "All Categories" DimensionView 442371
  6778. "All Categories" DimensionView 442461 "All Categories" DimensionView 442511
  6779. "All Categories" DimensionView 444779 "All Categories" DimensionView 1021777
  6780. "All Categories"
  6781. MeasureInclude 242177 Yes MeasureInclude 401481 Yes MeasureInclude 401485
  6782. Yes MeasureInclude 242229 Yes MeasureInclude 242235 Yes MeasureInclude 242233
  6783. Yes MeasureInclude 1021685 Yes MeasureInclude 1840419 Yes MeasureInclude 1021673
  6784. Yes MeasureInclude 1021721 Yes MeasureInclude 401493 Yes MeasureInclude 1021677
  6785. Yes MeasureInclude 1021681 Yes MeasureInclude 1021689 Yes MeasureInclude 1021691
  6786. Yes MeasureInclude 401489 Yes MeasureInclude 442349 Yes MeasureInclude 1021693
  6787. Yes MeasureInclude 1021695 Yes MeasureInclude 1021653 Yes MeasureInclude 1021657
  6788. Yes MeasureInclude 1021697 Yes MeasureInclude 1021699 Yes MeasureInclude 1021661
  6789. Yes MeasureInclude 1021665 Yes MeasureInclude 1021701 Yes MeasureInclude 1021703
  6790. Yes MeasureInclude 401497 Yes MeasureInclude 401501 Yes MeasureInclude 1021705
  6791. Yes MeasureInclude 1021707 Yes MeasureInclude 1021669 Yes MeasureInclude 441543
  6792. Yes MeasureInclude 1020373 Yes MeasureInclude 401519 Yes MeasureInclude 401523
  6793. Yes MeasureInclude 401527 Yes MeasureInclude 401505 Yes MeasureInclude 401509
  6794. Yes MeasureInclude 442355 Yes MeasureInclude 442357 Yes MeasureInclude 442359
  6795. Yes MeasureInclude 442417 Yes MeasureInclude 1840337 Yes MeasureInclude 1840341
  6796. Yes MeasureInclude 1840345 Yes MeasureInclude 1840349 Yes MeasureInclude 1840353
  6797. Yes MeasureInclude 1840357 Yes MeasureInclude 1840361 Yes MeasureInclude 1840365
  6798. Yes MeasureInclude 1840369 Yes MeasureInclude 1840373 Yes
  6799. AllocationAdd Measure 242177 Type Default
  6800. AllocationAdd Measure 401481 Type Default
  6801. AllocationAdd Measure 401485 Type Default
  6802. AllocationAdd Measure 242229 Type Default
  6803. AllocationAdd Measure 242235 Type Default
  6804. AllocationAdd Measure 242233 Type Default
  6805. AllocationAdd Measure 1021685 Type Default
  6806. AllocationAdd Measure 1840419 Type Default
  6807. AllocationAdd Measure 1021673 Type Default
  6808. AllocationAdd Measure 1021721 Type Default
  6809. AllocationAdd Measure 401493 Type Default
  6810. AllocationAdd Measure 1021677 Type Default
  6811. AllocationAdd Measure 1021681 Type Default
  6812. AllocationAdd Measure 1021689 Type Default
  6813. AllocationAdd Measure 1021691 Type Default
  6814. AllocationAdd Measure 401489 Type Default
  6815. AllocationAdd Measure 442349 Type Default
  6816. AllocationAdd Measure 1021693 Type Default
  6817. AllocationAdd Measure 1021695 Type Default
  6818. AllocationAdd Measure 1021653 Type Default
  6819. AllocationAdd Measure 1021657 Type Default
  6820. AllocationAdd Measure 1021697 Type Default
  6821. AllocationAdd Measure 1021699 Type Default
  6822. AllocationAdd Measure 1021661 Type Default
  6823. AllocationAdd Measure 1021665 Type Default
  6824. AllocationAdd Measure 1021701 Type Default
  6825. AllocationAdd Measure 1021703 Type Default
  6826. AllocationAdd Measure 401497 Type Default
  6827. AllocationAdd Measure 401501 Type Default
  6828. AllocationAdd Measure 1021705 Type Default
  6829. AllocationAdd Measure 1021707 Type Default
  6830. AllocationAdd Measure 1021669 Type Default
  6831. AllocationAdd Measure 441543 Type Default
  6832. AllocationAdd Measure 1020373 Type Default
  6833. AllocationAdd Measure 401519 Type Default
  6834. AllocationAdd Measure 401523 Type Default
  6835. AllocationAdd Measure 401527 Type Default
  6836. AllocationAdd Measure 401505 Type Default
  6837. AllocationAdd Measure 401509 Type Default
  6838. AllocationAdd Measure 442355 Type Default
  6839. AllocationAdd Measure 442357 Type Default
  6840. AllocationAdd Measure 442359 Type Default
  6841. AllocationAdd Measure 442417 Type Default
  6842. AllocationAdd Measure 1840337 Type Default
  6843. AllocationAdd Measure 1840341 Type Default
  6844. AllocationAdd Measure 1840345 Type Default
  6845. AllocationAdd Measure 1840349 Type Default
  6846. AllocationAdd Measure 1840353 Type Default
  6847. AllocationAdd Measure 1840357 Type Default
  6848. AllocationAdd Measure 1840361 Type Default
  6849. AllocationAdd Measure 1840365 Type Default
  6850. AllocationAdd Measure 1840369 Type Default
  6851. AllocationAdd Measure 1840373 Type Default