example-graph-api-last20.xml 890 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154
  1. <wfs:FeatureCollection xmlns:wfs="http://www.opengis.net/wfs" xmlns="http://www.opengis.net/wfs" xmlns:gml="http://www.opengis.net/gml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:default_db__x3A__BI_audit_ENERGA_PRACOWNICY="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_PRACOWNICY" xmlns:p5="https://biuro.biall-net.pl/wfs" xmlns:default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object" xmlns:default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row" xmlns:default_db__x3A__BI_audit_KRS="https://biuro.biall-net.pl/wfs/default_db/BI_audit_KRS" xmlns:default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI" xmlns:default_db__x3A__BI_audit_MSIG="https://biuro.biall-net.pl/wfs/default_db/BI_audit_MSIG" xmlns:default_db__x3A__BI_audit_CEIDG="https://biuro.biall-net.pl/wfs/default_db/BI_audit_CEIDG" xsi:schemaLocation="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_PRACOWNICY https://biuro.biall-net.pl/dev-pl/se-projects/bocian/SE//wfs-data.php/default_db/?SERVICE=WFS&amp;VERSION=1.0.0&amp;TYPENAME=default_db__x3A__BI_audit_ENERGA_PRACOWNICY:BI_audit_ENERGA_PRACOWNICY&amp;REQUEST=DescribeFeatureType" numberMatched="unknown" numberReturned="20" next="https://biuro.biall-net.pl/dev-pl/se-projects/bocian/SE//wfs-data.php/default_db/?SERVICE=WFS&amp;VERSION=1.0.0&amp;REQUEST=GetFeature&amp;TYPENAME=default_db__x3A__BI_audit_ENERGA_PRACOWNICY%3ABI_audit_ENERGA_PRACOWNICY&amp;SRSNAME=EPSG%3A3003&amp;sortBy=ID+D&amp;maxFeatures=20&amp;startIndex=20">
  2. <gml:featureMember>
  3. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:BI_audit_ENERGA_PRACOWNICY fid="BI_audit_ENERGA_PRACOWNICY.475" p5:primaryKey="475">
  4. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:ID>475</default_db__x3A__BI_audit_ENERGA_PRACOWNICY:ID>
  5. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:imiona>MARIUSZ</default_db__x3A__BI_audit_ENERGA_PRACOWNICY:imiona>
  6. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:nazwisko>BUDNER</default_db__x3A__BI_audit_ENERGA_PRACOWNICY:nazwisko>
  7. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708900" p5:primaryKey="2708900">
  8. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708900</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  9. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.390301" p5:primaryKey="390301">
  10. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>390301</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  11. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708907" p5:primaryKey="2708907">
  12. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708907</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  13. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17471" p5:primaryKey="17471">
  14. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17471</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  15. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>EDF POLSKA SPÓŁKA AKCYJNA</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  16. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  17. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  18. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708906" p5:primaryKey="2708906">
  19. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708906</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  20. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  21. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708905" p5:primaryKey="2708905">
  22. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708905</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  23. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.84600" p5:primaryKey="84600">
  24. <default_db__x3A__BI_audit_MSIG:ID>84600</default_db__x3A__BI_audit_MSIG:ID>
  25. <default_db__x3A__BI_audit_MSIG:nazwa>ERTEL SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  26. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  27. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  28. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708904" p5:primaryKey="2708904">
  29. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708904</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  30. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.91683" p5:primaryKey="91683">
  31. <default_db__x3A__BI_audit_KRS:ID>91683</default_db__x3A__BI_audit_KRS:ID>
  32. <default_db__x3A__BI_audit_KRS:krs>0000129892</default_db__x3A__BI_audit_KRS:krs>
  33. <default_db__x3A__BI_audit_KRS:nazwa>ERTEL SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  34. <default_db__x3A__BI_audit_KRS:S_miejscowosc>RYBNIK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  35. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  36. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  37. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708903" p5:primaryKey="2708903">
  38. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708903</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  39. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  40. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708902" p5:primaryKey="2708902">
  41. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708902</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  42. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.415307" p5:primaryKey="415307">
  43. <default_db__x3A__BI_audit_KRS:ID>415307</default_db__x3A__BI_audit_KRS:ID>
  44. <default_db__x3A__BI_audit_KRS:krs>0000524435</default_db__x3A__BI_audit_KRS:krs>
  45. <default_db__x3A__BI_audit_KRS:nazwa>FUNDACJA NASZA WIZJA</default_db__x3A__BI_audit_KRS:nazwa>
  46. <default_db__x3A__BI_audit_KRS:S_miejscowosc>WARSZAWA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  47. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  48. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  49. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708901" p5:primaryKey="2708901">
  50. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708901</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  51. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  52. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708900" p5:primaryKey="2708900"/>
  53. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  54. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  55. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2675022" p5:primaryKey="2675022">
  56. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2675022</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  57. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.385737" p5:primaryKey="385737">
  58. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>385737</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  59. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2675029" p5:primaryKey="2675029">
  60. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2675029</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  61. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17471" p5:primaryKey="17471">
  62. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17471</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  63. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>EDF POLSKA SPÓŁKA AKCYJNA</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  64. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  65. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  66. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2675028" p5:primaryKey="2675028">
  67. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2675028</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  68. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  69. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2675027" p5:primaryKey="2675027">
  70. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2675027</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  71. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.84600" p5:primaryKey="84600">
  72. <default_db__x3A__BI_audit_MSIG:ID>84600</default_db__x3A__BI_audit_MSIG:ID>
  73. <default_db__x3A__BI_audit_MSIG:nazwa>ERTEL SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  74. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  75. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  76. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2675026" p5:primaryKey="2675026">
  77. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2675026</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  78. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.91683" p5:primaryKey="91683">
  79. <default_db__x3A__BI_audit_KRS:ID>91683</default_db__x3A__BI_audit_KRS:ID>
  80. <default_db__x3A__BI_audit_KRS:krs>0000129892</default_db__x3A__BI_audit_KRS:krs>
  81. <default_db__x3A__BI_audit_KRS:nazwa>ERTEL SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  82. <default_db__x3A__BI_audit_KRS:S_miejscowosc>RYBNIK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  83. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  84. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  85. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2675025" p5:primaryKey="2675025">
  86. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2675025</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  87. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  88. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2675024" p5:primaryKey="2675024">
  89. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2675024</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  90. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.415307" p5:primaryKey="415307">
  91. <default_db__x3A__BI_audit_KRS:ID>415307</default_db__x3A__BI_audit_KRS:ID>
  92. <default_db__x3A__BI_audit_KRS:krs>0000524435</default_db__x3A__BI_audit_KRS:krs>
  93. <default_db__x3A__BI_audit_KRS:nazwa>FUNDACJA NASZA WIZJA</default_db__x3A__BI_audit_KRS:nazwa>
  94. <default_db__x3A__BI_audit_KRS:S_miejscowosc>WARSZAWA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  95. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  96. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  97. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2675023" p5:primaryKey="2675023">
  98. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2675023</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  99. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  100. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2675022" p5:primaryKey="2675022"/>
  101. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  102. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  103. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2675015" p5:primaryKey="2675015">
  104. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2675015</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  105. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.385736" p5:primaryKey="385736">
  106. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>385736</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  107. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2675021" p5:primaryKey="2675021">
  108. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2675021</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  109. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.64" p5:primaryKey="64">
  110. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>64</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  111. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BIPROSTAL S.A. FIRMA INŻYNIERYJNO-KONSULTINGOWA</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  112. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  113. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  114. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2675020" p5:primaryKey="2675020">
  115. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2675020</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  116. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  117. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2675019" p5:primaryKey="2675019">
  118. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2675019</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  119. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.232282" p5:primaryKey="232282">
  120. <default_db__x3A__BI_audit_KRS:ID>232282</default_db__x3A__BI_audit_KRS:ID>
  121. <default_db__x3A__BI_audit_KRS:krs>0000314669</default_db__x3A__BI_audit_KRS:krs>
  122. <default_db__x3A__BI_audit_KRS:nazwa>CONNECTED SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  123. <default_db__x3A__BI_audit_KRS:S_miejscowosc>KRAKÓW</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  124. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  125. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  126. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2675018" p5:primaryKey="2675018">
  127. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2675018</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  128. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  129. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2675017" p5:primaryKey="2675017">
  130. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2675017</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  131. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.415307" p5:primaryKey="415307">
  132. <default_db__x3A__BI_audit_KRS:ID>415307</default_db__x3A__BI_audit_KRS:ID>
  133. <default_db__x3A__BI_audit_KRS:krs>0000524435</default_db__x3A__BI_audit_KRS:krs>
  134. <default_db__x3A__BI_audit_KRS:nazwa>FUNDACJA NASZA WIZJA</default_db__x3A__BI_audit_KRS:nazwa>
  135. <default_db__x3A__BI_audit_KRS:S_miejscowosc>WARSZAWA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  136. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  137. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  138. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2675016" p5:primaryKey="2675016">
  139. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2675016</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  140. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  141. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2675015" p5:primaryKey="2675015"/>
  142. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  143. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  144. </default_db__x3A__BI_audit_ENERGA_PRACOWNICY:BI_audit_ENERGA_PRACOWNICY>
  145. </gml:featureMember>
  146. <gml:featureMember>
  147. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:BI_audit_ENERGA_PRACOWNICY fid="BI_audit_ENERGA_PRACOWNICY.474" p5:primaryKey="474">
  148. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:ID>474</default_db__x3A__BI_audit_ENERGA_PRACOWNICY:ID>
  149. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:imiona>MICHAŁ</default_db__x3A__BI_audit_ENERGA_PRACOWNICY:imiona>
  150. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:nazwisko>SZNYCER</default_db__x3A__BI_audit_ENERGA_PRACOWNICY:nazwisko>
  151. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2675007" p5:primaryKey="2675007">
  152. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2675007</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  153. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.385735" p5:primaryKey="385735">
  154. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>385735</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  155. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2675014" p5:primaryKey="2675014">
  156. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2675014</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  157. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.7" p5:primaryKey="7">
  158. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>7</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  159. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>CENTRUM INNOWACJI SP. Z O.O.</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  160. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  161. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  162. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2675013" p5:primaryKey="2675013">
  163. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2675013</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  164. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.216402" p5:primaryKey="216402">
  165. <default_db__x3A__BI_audit_MSIG:ID>216402</default_db__x3A__BI_audit_MSIG:ID>
  166. <default_db__x3A__BI_audit_MSIG:nazwa>„CENTRUM INNOWACJI” SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  167. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  168. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  169. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2675012" p5:primaryKey="2675012">
  170. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2675012</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  171. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  172. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2675011" p5:primaryKey="2675011">
  173. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2675011</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  174. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.429736" p5:primaryKey="429736">
  175. <default_db__x3A__BI_audit_MSIG:ID>429736</default_db__x3A__BI_audit_MSIG:ID>
  176. <default_db__x3A__BI_audit_MSIG:nazwa>VOLTEKO SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  177. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  178. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  179. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2675010" p5:primaryKey="2675010">
  180. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2675010</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  181. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  182. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2675009" p5:primaryKey="2675009">
  183. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2675009</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  184. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.384733" p5:primaryKey="384733">
  185. <default_db__x3A__BI_audit_MSIG:ID>384733</default_db__x3A__BI_audit_MSIG:ID>
  186. <default_db__x3A__BI_audit_MSIG:nazwa>ENERGIA EKO SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  187. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  188. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  189. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2675008" p5:primaryKey="2675008">
  190. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2675008</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  191. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  192. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2675007" p5:primaryKey="2675007"/>
  193. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  194. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  195. </default_db__x3A__BI_audit_ENERGA_PRACOWNICY:BI_audit_ENERGA_PRACOWNICY>
  196. </gml:featureMember>
  197. <gml:featureMember>
  198. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:BI_audit_ENERGA_PRACOWNICY fid="BI_audit_ENERGA_PRACOWNICY.473" p5:primaryKey="473">
  199. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:ID>473</default_db__x3A__BI_audit_ENERGA_PRACOWNICY:ID>
  200. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:imiona>MICHAŁ KRZYSZTOF</default_db__x3A__BI_audit_ENERGA_PRACOWNICY:imiona>
  201. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:nazwisko>SZNYCER</default_db__x3A__BI_audit_ENERGA_PRACOWNICY:nazwisko>
  202. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708892" p5:primaryKey="2708892">
  203. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708892</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  204. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.390300" p5:primaryKey="390300">
  205. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>390300</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  206. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708899" p5:primaryKey="2708899">
  207. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708899</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  208. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17500" p5:primaryKey="17500">
  209. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17500</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  210. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>TAURON SPRZEDAŻ SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  211. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  212. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  213. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708898" p5:primaryKey="2708898">
  214. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708898</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  215. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.197731" p5:primaryKey="197731">
  216. <default_db__x3A__BI_audit_KRS:ID>197731</default_db__x3A__BI_audit_KRS:ID>
  217. <default_db__x3A__BI_audit_KRS:krs>0000270491</default_db__x3A__BI_audit_KRS:krs>
  218. <default_db__x3A__BI_audit_KRS:nazwa>TAURON SPRZEDAŻ SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  219. <default_db__x3A__BI_audit_KRS:S_miejscowosc>KRAKÓW</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  220. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  221. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  222. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708897" p5:primaryKey="2708897">
  223. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708897</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  224. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  225. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708896" p5:primaryKey="2708896">
  226. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708896</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  227. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.543517" p5:primaryKey="543517">
  228. <default_db__x3A__BI_audit_KRS:ID>543517</default_db__x3A__BI_audit_KRS:ID>
  229. <default_db__x3A__BI_audit_KRS:krs>0000660388</default_db__x3A__BI_audit_KRS:krs>
  230. <default_db__x3A__BI_audit_KRS:nazwa>MAGENTA GRUPA TAURON SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  231. <default_db__x3A__BI_audit_KRS:S_miejscowosc>KATOWICE</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  232. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  233. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  234. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708895" p5:primaryKey="2708895">
  235. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708895</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  236. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  237. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708894" p5:primaryKey="2708894">
  238. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708894</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  239. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.129241" p5:primaryKey="129241">
  240. <default_db__x3A__BI_audit_KRS:ID>129241</default_db__x3A__BI_audit_KRS:ID>
  241. <default_db__x3A__BI_audit_KRS:krs>0000181074</default_db__x3A__BI_audit_KRS:krs>
  242. <default_db__x3A__BI_audit_KRS:nazwa>&quot;TOWARZYSTWO OBROTU ENERGIĄ&quot;</default_db__x3A__BI_audit_KRS:nazwa>
  243. <default_db__x3A__BI_audit_KRS:S_miejscowosc>WARSZAWA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  244. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  245. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  246. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708893" p5:primaryKey="2708893">
  247. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708893</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  248. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  249. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708892" p5:primaryKey="2708892"/>
  250. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  251. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  252. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708884" p5:primaryKey="2708884">
  253. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708884</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  254. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.390299" p5:primaryKey="390299">
  255. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>390299</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  256. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708891" p5:primaryKey="2708891">
  257. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708891</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  258. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17500" p5:primaryKey="17500">
  259. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17500</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  260. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>TAURON SPRZEDAŻ SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  261. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  262. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  263. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708890" p5:primaryKey="2708890">
  264. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708890</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  265. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.197731" p5:primaryKey="197731">
  266. <default_db__x3A__BI_audit_KRS:ID>197731</default_db__x3A__BI_audit_KRS:ID>
  267. <default_db__x3A__BI_audit_KRS:krs>0000270491</default_db__x3A__BI_audit_KRS:krs>
  268. <default_db__x3A__BI_audit_KRS:nazwa>TAURON SPRZEDAŻ SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  269. <default_db__x3A__BI_audit_KRS:S_miejscowosc>KRAKÓW</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  270. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  271. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  272. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708889" p5:primaryKey="2708889">
  273. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708889</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  274. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  275. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708888" p5:primaryKey="2708888">
  276. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708888</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  277. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.543517" p5:primaryKey="543517">
  278. <default_db__x3A__BI_audit_KRS:ID>543517</default_db__x3A__BI_audit_KRS:ID>
  279. <default_db__x3A__BI_audit_KRS:krs>0000660388</default_db__x3A__BI_audit_KRS:krs>
  280. <default_db__x3A__BI_audit_KRS:nazwa>MAGENTA GRUPA TAURON SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  281. <default_db__x3A__BI_audit_KRS:S_miejscowosc>KATOWICE</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  282. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  283. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  284. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708887" p5:primaryKey="2708887">
  285. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708887</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  286. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  287. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708886" p5:primaryKey="2708886">
  288. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708886</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  289. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.129241" p5:primaryKey="129241">
  290. <default_db__x3A__BI_audit_KRS:ID>129241</default_db__x3A__BI_audit_KRS:ID>
  291. <default_db__x3A__BI_audit_KRS:krs>0000181074</default_db__x3A__BI_audit_KRS:krs>
  292. <default_db__x3A__BI_audit_KRS:nazwa>&quot;TOWARZYSTWO OBROTU ENERGIĄ&quot;</default_db__x3A__BI_audit_KRS:nazwa>
  293. <default_db__x3A__BI_audit_KRS:S_miejscowosc>WARSZAWA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  294. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  295. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  296. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708885" p5:primaryKey="2708885">
  297. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708885</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  298. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  299. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708884" p5:primaryKey="2708884"/>
  300. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  301. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  302. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708878" p5:primaryKey="2708878">
  303. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708878</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  304. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.390298" p5:primaryKey="390298">
  305. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>390298</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  306. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708883" p5:primaryKey="2708883">
  307. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708883</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  308. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17500" p5:primaryKey="17500">
  309. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17500</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  310. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>TAURON SPRZEDAŻ SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  311. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  312. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  313. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708882" p5:primaryKey="2708882">
  314. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708882</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  315. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.197731" p5:primaryKey="197731">
  316. <default_db__x3A__BI_audit_KRS:ID>197731</default_db__x3A__BI_audit_KRS:ID>
  317. <default_db__x3A__BI_audit_KRS:krs>0000270491</default_db__x3A__BI_audit_KRS:krs>
  318. <default_db__x3A__BI_audit_KRS:nazwa>TAURON SPRZEDAŻ SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  319. <default_db__x3A__BI_audit_KRS:S_miejscowosc>KRAKÓW</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  320. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  321. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  322. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708881" p5:primaryKey="2708881">
  323. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708881</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  324. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  325. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708880" p5:primaryKey="2708880">
  326. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708880</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  327. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.129241" p5:primaryKey="129241">
  328. <default_db__x3A__BI_audit_KRS:ID>129241</default_db__x3A__BI_audit_KRS:ID>
  329. <default_db__x3A__BI_audit_KRS:krs>0000181074</default_db__x3A__BI_audit_KRS:krs>
  330. <default_db__x3A__BI_audit_KRS:nazwa>&quot;TOWARZYSTWO OBROTU ENERGIĄ&quot;</default_db__x3A__BI_audit_KRS:nazwa>
  331. <default_db__x3A__BI_audit_KRS:S_miejscowosc>WARSZAWA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  332. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  333. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  334. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708879" p5:primaryKey="2708879">
  335. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708879</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  336. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  337. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708878" p5:primaryKey="2708878"/>
  338. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  339. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  340. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708871" p5:primaryKey="2708871">
  341. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708871</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  342. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.390297" p5:primaryKey="390297">
  343. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>390297</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  344. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708877" p5:primaryKey="2708877">
  345. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708877</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  346. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17500" p5:primaryKey="17500">
  347. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17500</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  348. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>TAURON SPRZEDAŻ SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  349. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  350. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  351. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708876" p5:primaryKey="2708876">
  352. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708876</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  353. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  354. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708875" p5:primaryKey="2708875">
  355. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708875</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  356. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.197731" p5:primaryKey="197731">
  357. <default_db__x3A__BI_audit_KRS:ID>197731</default_db__x3A__BI_audit_KRS:ID>
  358. <default_db__x3A__BI_audit_KRS:krs>0000270491</default_db__x3A__BI_audit_KRS:krs>
  359. <default_db__x3A__BI_audit_KRS:nazwa>TAURON SPRZEDAŻ SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  360. <default_db__x3A__BI_audit_KRS:S_miejscowosc>KRAKÓW</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  361. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  362. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  363. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708874" p5:primaryKey="2708874">
  364. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708874</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  365. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  366. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708873" p5:primaryKey="2708873">
  367. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708873</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  368. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.129241" p5:primaryKey="129241">
  369. <default_db__x3A__BI_audit_KRS:ID>129241</default_db__x3A__BI_audit_KRS:ID>
  370. <default_db__x3A__BI_audit_KRS:krs>0000181074</default_db__x3A__BI_audit_KRS:krs>
  371. <default_db__x3A__BI_audit_KRS:nazwa>&quot;TOWARZYSTWO OBROTU ENERGIĄ&quot;</default_db__x3A__BI_audit_KRS:nazwa>
  372. <default_db__x3A__BI_audit_KRS:S_miejscowosc>WARSZAWA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  373. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  374. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  375. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708872" p5:primaryKey="2708872">
  376. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708872</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  377. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  378. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708871" p5:primaryKey="2708871"/>
  379. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  380. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  381. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708863" p5:primaryKey="2708863">
  382. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708863</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  383. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.390296" p5:primaryKey="390296">
  384. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>390296</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  385. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708870" p5:primaryKey="2708870">
  386. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708870</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  387. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17490" p5:primaryKey="17490">
  388. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17490</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  389. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>POLSKA ENERGIA-PIERWSZA KOMPANIA HANDLOWA SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  390. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  391. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  392. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708869" p5:primaryKey="2708869">
  393. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708869</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  394. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.21798" p5:primaryKey="21798">
  395. <default_db__x3A__BI_audit_KRS:ID>21798</default_db__x3A__BI_audit_KRS:ID>
  396. <default_db__x3A__BI_audit_KRS:krs>0000031635</default_db__x3A__BI_audit_KRS:krs>
  397. <default_db__x3A__BI_audit_KRS:nazwa>POLSKA ENERGIA-PIERWSZA KOMPANIA HANDLOWA SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  398. <default_db__x3A__BI_audit_KRS:S_miejscowosc>WARSZAWA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  399. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  400. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  401. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708868" p5:primaryKey="2708868">
  402. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708868</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  403. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  404. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708867" p5:primaryKey="2708867">
  405. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708867</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  406. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.197731" p5:primaryKey="197731">
  407. <default_db__x3A__BI_audit_KRS:ID>197731</default_db__x3A__BI_audit_KRS:ID>
  408. <default_db__x3A__BI_audit_KRS:krs>0000270491</default_db__x3A__BI_audit_KRS:krs>
  409. <default_db__x3A__BI_audit_KRS:nazwa>TAURON SPRZEDAŻ SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  410. <default_db__x3A__BI_audit_KRS:S_miejscowosc>KRAKÓW</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  411. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  412. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  413. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708866" p5:primaryKey="2708866">
  414. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708866</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  415. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  416. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708865" p5:primaryKey="2708865">
  417. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708865</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  418. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.129241" p5:primaryKey="129241">
  419. <default_db__x3A__BI_audit_KRS:ID>129241</default_db__x3A__BI_audit_KRS:ID>
  420. <default_db__x3A__BI_audit_KRS:krs>0000181074</default_db__x3A__BI_audit_KRS:krs>
  421. <default_db__x3A__BI_audit_KRS:nazwa>&quot;TOWARZYSTWO OBROTU ENERGIĄ&quot;</default_db__x3A__BI_audit_KRS:nazwa>
  422. <default_db__x3A__BI_audit_KRS:S_miejscowosc>WARSZAWA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  423. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  424. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  425. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708864" p5:primaryKey="2708864">
  426. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708864</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  427. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  428. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708863" p5:primaryKey="2708863"/>
  429. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  430. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  431. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708855" p5:primaryKey="2708855">
  432. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708855</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  433. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.390295" p5:primaryKey="390295">
  434. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>390295</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  435. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708862" p5:primaryKey="2708862">
  436. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708862</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  437. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17500" p5:primaryKey="17500">
  438. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17500</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  439. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>TAURON SPRZEDAŻ SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  440. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  441. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  442. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708861" p5:primaryKey="2708861">
  443. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708861</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  444. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.197731" p5:primaryKey="197731">
  445. <default_db__x3A__BI_audit_KRS:ID>197731</default_db__x3A__BI_audit_KRS:ID>
  446. <default_db__x3A__BI_audit_KRS:krs>0000270491</default_db__x3A__BI_audit_KRS:krs>
  447. <default_db__x3A__BI_audit_KRS:nazwa>TAURON SPRZEDAŻ SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  448. <default_db__x3A__BI_audit_KRS:S_miejscowosc>KRAKÓW</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  449. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  450. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  451. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708860" p5:primaryKey="2708860">
  452. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708860</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  453. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  454. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708859" p5:primaryKey="2708859">
  455. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708859</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  456. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.25759" p5:primaryKey="25759">
  457. <default_db__x3A__BI_audit_KRS:ID>25759</default_db__x3A__BI_audit_KRS:ID>
  458. <default_db__x3A__BI_audit_KRS:krs>0000036971</default_db__x3A__BI_audit_KRS:krs>
  459. <default_db__x3A__BI_audit_KRS:nazwa>TAURON SPRZEDAŻ GZE SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  460. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GLIWICE</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  461. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  462. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  463. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708858" p5:primaryKey="2708858">
  464. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708858</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  465. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  466. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708857" p5:primaryKey="2708857">
  467. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708857</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  468. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.129241" p5:primaryKey="129241">
  469. <default_db__x3A__BI_audit_KRS:ID>129241</default_db__x3A__BI_audit_KRS:ID>
  470. <default_db__x3A__BI_audit_KRS:krs>0000181074</default_db__x3A__BI_audit_KRS:krs>
  471. <default_db__x3A__BI_audit_KRS:nazwa>&quot;TOWARZYSTWO OBROTU ENERGIĄ&quot;</default_db__x3A__BI_audit_KRS:nazwa>
  472. <default_db__x3A__BI_audit_KRS:S_miejscowosc>WARSZAWA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  473. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  474. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  475. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708856" p5:primaryKey="2708856">
  476. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708856</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  477. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  478. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708855" p5:primaryKey="2708855"/>
  479. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  480. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  481. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708847" p5:primaryKey="2708847">
  482. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708847</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  483. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.390294" p5:primaryKey="390294">
  484. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>390294</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  485. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708854" p5:primaryKey="2708854">
  486. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708854</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  487. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17500" p5:primaryKey="17500">
  488. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17500</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  489. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>TAURON SPRZEDAŻ SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  490. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  491. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  492. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708853" p5:primaryKey="2708853">
  493. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708853</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  494. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.197731" p5:primaryKey="197731">
  495. <default_db__x3A__BI_audit_KRS:ID>197731</default_db__x3A__BI_audit_KRS:ID>
  496. <default_db__x3A__BI_audit_KRS:krs>0000270491</default_db__x3A__BI_audit_KRS:krs>
  497. <default_db__x3A__BI_audit_KRS:nazwa>TAURON SPRZEDAŻ SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  498. <default_db__x3A__BI_audit_KRS:S_miejscowosc>KRAKÓW</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  499. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  500. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  501. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708852" p5:primaryKey="2708852">
  502. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708852</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  503. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  504. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708851" p5:primaryKey="2708851">
  505. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708851</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  506. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.25759" p5:primaryKey="25759">
  507. <default_db__x3A__BI_audit_KRS:ID>25759</default_db__x3A__BI_audit_KRS:ID>
  508. <default_db__x3A__BI_audit_KRS:krs>0000036971</default_db__x3A__BI_audit_KRS:krs>
  509. <default_db__x3A__BI_audit_KRS:nazwa>TAURON SPRZEDAŻ GZE SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  510. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GLIWICE</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  511. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  512. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  513. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708850" p5:primaryKey="2708850">
  514. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708850</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  515. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  516. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708849" p5:primaryKey="2708849">
  517. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708849</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  518. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.129241" p5:primaryKey="129241">
  519. <default_db__x3A__BI_audit_KRS:ID>129241</default_db__x3A__BI_audit_KRS:ID>
  520. <default_db__x3A__BI_audit_KRS:krs>0000181074</default_db__x3A__BI_audit_KRS:krs>
  521. <default_db__x3A__BI_audit_KRS:nazwa>&quot;TOWARZYSTWO OBROTU ENERGIĄ&quot;</default_db__x3A__BI_audit_KRS:nazwa>
  522. <default_db__x3A__BI_audit_KRS:S_miejscowosc>WARSZAWA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  523. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  524. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  525. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708848" p5:primaryKey="2708848">
  526. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708848</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  527. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  528. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708847" p5:primaryKey="2708847"/>
  529. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  530. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  531. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708839" p5:primaryKey="2708839">
  532. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708839</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  533. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.390293" p5:primaryKey="390293">
  534. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>390293</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  535. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708846" p5:primaryKey="2708846">
  536. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708846</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  537. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17500" p5:primaryKey="17500">
  538. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17500</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  539. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>TAURON SPRZEDAŻ SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  540. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  541. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  542. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708845" p5:primaryKey="2708845">
  543. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708845</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  544. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.197731" p5:primaryKey="197731">
  545. <default_db__x3A__BI_audit_KRS:ID>197731</default_db__x3A__BI_audit_KRS:ID>
  546. <default_db__x3A__BI_audit_KRS:krs>0000270491</default_db__x3A__BI_audit_KRS:krs>
  547. <default_db__x3A__BI_audit_KRS:nazwa>TAURON SPRZEDAŻ SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  548. <default_db__x3A__BI_audit_KRS:S_miejscowosc>KRAKÓW</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  549. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  550. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  551. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708844" p5:primaryKey="2708844">
  552. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708844</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  553. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  554. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708843" p5:primaryKey="2708843">
  555. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708843</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  556. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.25759" p5:primaryKey="25759">
  557. <default_db__x3A__BI_audit_KRS:ID>25759</default_db__x3A__BI_audit_KRS:ID>
  558. <default_db__x3A__BI_audit_KRS:krs>0000036971</default_db__x3A__BI_audit_KRS:krs>
  559. <default_db__x3A__BI_audit_KRS:nazwa>TAURON SPRZEDAŻ GZE SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  560. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GLIWICE</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  561. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  562. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  563. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708842" p5:primaryKey="2708842">
  564. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708842</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  565. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  566. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708841" p5:primaryKey="2708841">
  567. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708841</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  568. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.129241" p5:primaryKey="129241">
  569. <default_db__x3A__BI_audit_KRS:ID>129241</default_db__x3A__BI_audit_KRS:ID>
  570. <default_db__x3A__BI_audit_KRS:krs>0000181074</default_db__x3A__BI_audit_KRS:krs>
  571. <default_db__x3A__BI_audit_KRS:nazwa>&quot;TOWARZYSTWO OBROTU ENERGIĄ&quot;</default_db__x3A__BI_audit_KRS:nazwa>
  572. <default_db__x3A__BI_audit_KRS:S_miejscowosc>WARSZAWA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  573. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  574. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  575. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708840" p5:primaryKey="2708840">
  576. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708840</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  577. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  578. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708839" p5:primaryKey="2708839"/>
  579. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  580. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  581. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708831" p5:primaryKey="2708831">
  582. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708831</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  583. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.390292" p5:primaryKey="390292">
  584. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>390292</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  585. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708838" p5:primaryKey="2708838">
  586. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708838</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  587. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17490" p5:primaryKey="17490">
  588. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17490</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  589. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>POLSKA ENERGIA-PIERWSZA KOMPANIA HANDLOWA SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  590. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  591. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  592. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708837" p5:primaryKey="2708837">
  593. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708837</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  594. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.21798" p5:primaryKey="21798">
  595. <default_db__x3A__BI_audit_KRS:ID>21798</default_db__x3A__BI_audit_KRS:ID>
  596. <default_db__x3A__BI_audit_KRS:krs>0000031635</default_db__x3A__BI_audit_KRS:krs>
  597. <default_db__x3A__BI_audit_KRS:nazwa>POLSKA ENERGIA-PIERWSZA KOMPANIA HANDLOWA SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  598. <default_db__x3A__BI_audit_KRS:S_miejscowosc>WARSZAWA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  599. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  600. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  601. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708836" p5:primaryKey="2708836">
  602. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708836</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  603. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  604. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708835" p5:primaryKey="2708835">
  605. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708835</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  606. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.25759" p5:primaryKey="25759">
  607. <default_db__x3A__BI_audit_KRS:ID>25759</default_db__x3A__BI_audit_KRS:ID>
  608. <default_db__x3A__BI_audit_KRS:krs>0000036971</default_db__x3A__BI_audit_KRS:krs>
  609. <default_db__x3A__BI_audit_KRS:nazwa>TAURON SPRZEDAŻ GZE SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  610. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GLIWICE</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  611. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  612. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  613. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708834" p5:primaryKey="2708834">
  614. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708834</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  615. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  616. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708833" p5:primaryKey="2708833">
  617. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708833</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  618. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.129241" p5:primaryKey="129241">
  619. <default_db__x3A__BI_audit_KRS:ID>129241</default_db__x3A__BI_audit_KRS:ID>
  620. <default_db__x3A__BI_audit_KRS:krs>0000181074</default_db__x3A__BI_audit_KRS:krs>
  621. <default_db__x3A__BI_audit_KRS:nazwa>&quot;TOWARZYSTWO OBROTU ENERGIĄ&quot;</default_db__x3A__BI_audit_KRS:nazwa>
  622. <default_db__x3A__BI_audit_KRS:S_miejscowosc>WARSZAWA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  623. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  624. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  625. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708832" p5:primaryKey="2708832">
  626. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708832</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  627. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  628. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708831" p5:primaryKey="2708831"/>
  629. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  630. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  631. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708824" p5:primaryKey="2708824">
  632. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708824</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  633. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.390291" p5:primaryKey="390291">
  634. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>390291</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  635. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708830" p5:primaryKey="2708830">
  636. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708830</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  637. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17500" p5:primaryKey="17500">
  638. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17500</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  639. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>TAURON SPRZEDAŻ SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  640. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  641. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  642. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708829" p5:primaryKey="2708829">
  643. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708829</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  644. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.62846" p5:primaryKey="62846">
  645. <default_db__x3A__BI_audit_MSIG:ID>62846</default_db__x3A__BI_audit_MSIG:ID>
  646. <default_db__x3A__BI_audit_MSIG:nazwa>TAURON SPRZEDAŻ SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  647. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  648. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  649. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708828" p5:primaryKey="2708828">
  650. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708828</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  651. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  652. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708827" p5:primaryKey="2708827">
  653. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708827</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  654. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  655. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708826" p5:primaryKey="2708826">
  656. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708826</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  657. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.129241" p5:primaryKey="129241">
  658. <default_db__x3A__BI_audit_KRS:ID>129241</default_db__x3A__BI_audit_KRS:ID>
  659. <default_db__x3A__BI_audit_KRS:krs>0000181074</default_db__x3A__BI_audit_KRS:krs>
  660. <default_db__x3A__BI_audit_KRS:nazwa>&quot;TOWARZYSTWO OBROTU ENERGIĄ&quot;</default_db__x3A__BI_audit_KRS:nazwa>
  661. <default_db__x3A__BI_audit_KRS:S_miejscowosc>WARSZAWA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  662. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  663. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  664. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708825" p5:primaryKey="2708825">
  665. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708825</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  666. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  667. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708824" p5:primaryKey="2708824"/>
  668. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  669. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  670. <!--<p5:links>
  671. <p5:next p5:typeName="default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object" p5:backRefNS="default_db/BI_audit_ENERGA_PRACOWNICY/BI_audit_ENERGA_PRACOWNICY" p5:backRefPK="473" p5:startIndex="10">https://biuro.biall-net.pl/dev-pl/se-projects/bocian/SE//wfs-data.php/default_db/?SERVICE=WFS&amp;VERSION=1.0.0&amp;TYPENAME=default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object&amp;REQUEST=GetFeature&amp;backRefNS=default_db/BI_audit_ENERGA_PRACOWNICY/BI_audit_ENERGA_PRACOWNICY&amp;backRefPK=473&amp;backRefField=default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object&amp;maxFeatures=10&amp;startIndex=10</p5:next>
  672. </p5:links>-->
  673. </default_db__x3A__BI_audit_ENERGA_PRACOWNICY:BI_audit_ENERGA_PRACOWNICY>
  674. </gml:featureMember>
  675. <gml:featureMember>
  676. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:BI_audit_ENERGA_PRACOWNICY fid="BI_audit_ENERGA_PRACOWNICY.472" p5:primaryKey="472">
  677. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:ID>472</default_db__x3A__BI_audit_ENERGA_PRACOWNICY:ID>
  678. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:imiona>RAFAŁ</default_db__x3A__BI_audit_ENERGA_PRACOWNICY:imiona>
  679. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:nazwisko>SZLĄZAK</default_db__x3A__BI_audit_ENERGA_PRACOWNICY:nazwisko>
  680. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2674542" p5:primaryKey="2674542">
  681. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2674542</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  682. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.385671" p5:primaryKey="385671">
  683. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>385671</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  684. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2674549" p5:primaryKey="2674549">
  685. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2674549</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  686. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.875" p5:primaryKey="875">
  687. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>875</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  688. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>KOPEX SA</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  689. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  690. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  691. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2674548" p5:primaryKey="2674548">
  692. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2674548</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  693. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  694. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2674547" p5:primaryKey="2674547">
  695. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2674547</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  696. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.33883" p5:primaryKey="33883">
  697. <default_db__x3A__BI_audit_KRS:ID>33883</default_db__x3A__BI_audit_KRS:ID>
  698. <default_db__x3A__BI_audit_KRS:krs>0000048200</default_db__x3A__BI_audit_KRS:krs>
  699. <default_db__x3A__BI_audit_KRS:nazwa>ZWIĄZEK ZAWODOWY &quot;KADRA&quot; PRACOWNIKÓW PRZEDSIĘBIORSTWA EKSPORTU I IMPORTU &quot;KOPEX&quot; S.A. W KATOWICACH</default_db__x3A__BI_audit_KRS:nazwa>
  700. <default_db__x3A__BI_audit_KRS:S_miejscowosc>KATOWICE</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  701. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  702. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  703. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2674546" p5:primaryKey="2674546">
  704. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2674546</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  705. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  706. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2674545" p5:primaryKey="2674545">
  707. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2674545</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  708. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  709. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2674544" p5:primaryKey="2674544">
  710. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2674544</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  711. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.55201" p5:primaryKey="55201">
  712. <default_db__x3A__BI_audit_MSIG:ID>55201</default_db__x3A__BI_audit_MSIG:ID>
  713. <default_db__x3A__BI_audit_MSIG:nazwa>GWARANT GRUPA KAPITAŁOWA SPÓŁKA AKCYJNA</default_db__x3A__BI_audit_MSIG:nazwa>
  714. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  715. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  716. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2674543" p5:primaryKey="2674543">
  717. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2674543</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  718. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  719. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2674542" p5:primaryKey="2674542"/>
  720. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  721. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  722. </default_db__x3A__BI_audit_ENERGA_PRACOWNICY:BI_audit_ENERGA_PRACOWNICY>
  723. </gml:featureMember>
  724. <gml:featureMember>
  725. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:BI_audit_ENERGA_PRACOWNICY fid="BI_audit_ENERGA_PRACOWNICY.471" p5:primaryKey="471">
  726. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:ID>471</default_db__x3A__BI_audit_ENERGA_PRACOWNICY:ID>
  727. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:imiona>MARCIN ALEKSANDER</default_db__x3A__BI_audit_ENERGA_PRACOWNICY:imiona>
  728. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:nazwisko>UNTON</default_db__x3A__BI_audit_ENERGA_PRACOWNICY:nazwisko>
  729. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708678" p5:primaryKey="2708678">
  730. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708678</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  731. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.390271" p5:primaryKey="390271">
  732. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>390271</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  733. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708685" p5:primaryKey="2708685">
  734. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708685</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  735. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17228" p5:primaryKey="17228">
  736. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17228</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  737. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BINDER</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  738. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  739. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  740. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708684" p5:primaryKey="2708684">
  741. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708684</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  742. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  743. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708683" p5:primaryKey="2708683">
  744. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708683</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  745. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.457386" p5:primaryKey="457386">
  746. <default_db__x3A__BI_audit_MSIG:ID>457386</default_db__x3A__BI_audit_MSIG:ID>
  747. <default_db__x3A__BI_audit_MSIG:nazwa>NETDAY SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  748. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  749. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  750. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708682" p5:primaryKey="2708682">
  751. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708682</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  752. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  753. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708681" p5:primaryKey="2708681">
  754. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708681</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  755. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  756. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708680" p5:primaryKey="2708680">
  757. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708680</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  758. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.512535" p5:primaryKey="512535">
  759. <default_db__x3A__BI_audit_KRS:ID>512535</default_db__x3A__BI_audit_KRS:ID>
  760. <default_db__x3A__BI_audit_KRS:krs>0000627944</default_db__x3A__BI_audit_KRS:krs>
  761. <default_db__x3A__BI_audit_KRS:nazwa>NETDAY SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  762. <default_db__x3A__BI_audit_KRS:S_miejscowosc>OTOMIN</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  763. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  764. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  765. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708679" p5:primaryKey="2708679">
  766. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708679</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  767. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  768. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708678" p5:primaryKey="2708678"/>
  769. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  770. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  771. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708670" p5:primaryKey="2708670">
  772. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708670</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  773. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.390270" p5:primaryKey="390270">
  774. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>390270</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  775. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708677" p5:primaryKey="2708677">
  776. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708677</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  777. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17228" p5:primaryKey="17228">
  778. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17228</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  779. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BINDER</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  780. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  781. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  782. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708676" p5:primaryKey="2708676">
  783. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708676</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  784. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  785. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708675" p5:primaryKey="2708675">
  786. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708675</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  787. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.383757" p5:primaryKey="383757">
  788. <default_db__x3A__BI_audit_MSIG:ID>383757</default_db__x3A__BI_audit_MSIG:ID>
  789. <default_db__x3A__BI_audit_MSIG:nazwa>THE BINDER CONSULTING SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  790. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  791. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  792. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708674" p5:primaryKey="2708674">
  793. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708674</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  794. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  795. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708673" p5:primaryKey="2708673">
  796. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708673</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  797. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  798. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708672" p5:primaryKey="2708672">
  799. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708672</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  800. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.512535" p5:primaryKey="512535">
  801. <default_db__x3A__BI_audit_KRS:ID>512535</default_db__x3A__BI_audit_KRS:ID>
  802. <default_db__x3A__BI_audit_KRS:krs>0000627944</default_db__x3A__BI_audit_KRS:krs>
  803. <default_db__x3A__BI_audit_KRS:nazwa>NETDAY SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  804. <default_db__x3A__BI_audit_KRS:S_miejscowosc>OTOMIN</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  805. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  806. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  807. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708671" p5:primaryKey="2708671">
  808. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708671</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  809. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  810. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708670" p5:primaryKey="2708670"/>
  811. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  812. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  813. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708662" p5:primaryKey="2708662">
  814. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708662</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  815. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.390269" p5:primaryKey="390269">
  816. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>390269</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  817. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708669" p5:primaryKey="2708669">
  818. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708669</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  819. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17228" p5:primaryKey="17228">
  820. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17228</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  821. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BINDER</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  822. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  823. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  824. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708668" p5:primaryKey="2708668">
  825. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708668</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  826. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  827. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708667" p5:primaryKey="2708667">
  828. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708667</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  829. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.384094" p5:primaryKey="384094">
  830. <default_db__x3A__BI_audit_MSIG:ID>384094</default_db__x3A__BI_audit_MSIG:ID>
  831. <default_db__x3A__BI_audit_MSIG:nazwa>ZOOMPACK SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  832. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  833. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  834. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708666" p5:primaryKey="2708666">
  835. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708666</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  836. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  837. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708665" p5:primaryKey="2708665">
  838. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708665</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  839. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  840. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708664" p5:primaryKey="2708664">
  841. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708664</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  842. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.512535" p5:primaryKey="512535">
  843. <default_db__x3A__BI_audit_KRS:ID>512535</default_db__x3A__BI_audit_KRS:ID>
  844. <default_db__x3A__BI_audit_KRS:krs>0000627944</default_db__x3A__BI_audit_KRS:krs>
  845. <default_db__x3A__BI_audit_KRS:nazwa>NETDAY SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  846. <default_db__x3A__BI_audit_KRS:S_miejscowosc>OTOMIN</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  847. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  848. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  849. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708663" p5:primaryKey="2708663">
  850. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708663</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  851. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  852. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708662" p5:primaryKey="2708662"/>
  853. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  854. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  855. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708655" p5:primaryKey="2708655">
  856. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708655</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  857. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.390268" p5:primaryKey="390268">
  858. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>390268</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  859. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708661" p5:primaryKey="2708661">
  860. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708661</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  861. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17230" p5:primaryKey="17230">
  862. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17230</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  863. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BIALL Sp. z o.o.</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  864. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  865. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  866. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708660" p5:primaryKey="2708660">
  867. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708660</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  868. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.36736" p5:primaryKey="36736">
  869. <default_db__x3A__BI_audit_MSIG:ID>36736</default_db__x3A__BI_audit_MSIG:ID>
  870. <default_db__x3A__BI_audit_MSIG:nazwa>„BIALL” SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  871. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  872. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  873. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708659" p5:primaryKey="2708659">
  874. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708659</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  875. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  876. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708658" p5:primaryKey="2708658">
  877. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708658</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  878. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  879. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708657" p5:primaryKey="2708657">
  880. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708657</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  881. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.512535" p5:primaryKey="512535">
  882. <default_db__x3A__BI_audit_KRS:ID>512535</default_db__x3A__BI_audit_KRS:ID>
  883. <default_db__x3A__BI_audit_KRS:krs>0000627944</default_db__x3A__BI_audit_KRS:krs>
  884. <default_db__x3A__BI_audit_KRS:nazwa>NETDAY SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  885. <default_db__x3A__BI_audit_KRS:S_miejscowosc>OTOMIN</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  886. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  887. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  888. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708656" p5:primaryKey="2708656">
  889. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708656</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  890. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  891. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708655" p5:primaryKey="2708655"/>
  892. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  893. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  894. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708647" p5:primaryKey="2708647">
  895. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708647</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  896. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.390267" p5:primaryKey="390267">
  897. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>390267</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  898. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708654" p5:primaryKey="2708654">
  899. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708654</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  900. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17228" p5:primaryKey="17228">
  901. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17228</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  902. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BINDER</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  903. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  904. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  905. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708653" p5:primaryKey="2708653">
  906. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708653</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  907. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  908. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708652" p5:primaryKey="2708652">
  909. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708652</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  910. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.384094" p5:primaryKey="384094">
  911. <default_db__x3A__BI_audit_MSIG:ID>384094</default_db__x3A__BI_audit_MSIG:ID>
  912. <default_db__x3A__BI_audit_MSIG:nazwa>ZOOMPACK SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  913. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  914. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  915. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708651" p5:primaryKey="2708651">
  916. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708651</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  917. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.437388" p5:primaryKey="437388">
  918. <default_db__x3A__BI_audit_KRS:ID>437388</default_db__x3A__BI_audit_KRS:ID>
  919. <default_db__x3A__BI_audit_KRS:krs>0000548260</default_db__x3A__BI_audit_KRS:krs>
  920. <default_db__x3A__BI_audit_KRS:nazwa>ZOOMPACK SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  921. <default_db__x3A__BI_audit_KRS:S_miejscowosc>OTOMIN</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  922. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  923. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  924. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708650" p5:primaryKey="2708650">
  925. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708650</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  926. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  927. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708649" p5:primaryKey="2708649">
  928. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708649</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  929. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.512535" p5:primaryKey="512535">
  930. <default_db__x3A__BI_audit_KRS:ID>512535</default_db__x3A__BI_audit_KRS:ID>
  931. <default_db__x3A__BI_audit_KRS:krs>0000627944</default_db__x3A__BI_audit_KRS:krs>
  932. <default_db__x3A__BI_audit_KRS:nazwa>NETDAY SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  933. <default_db__x3A__BI_audit_KRS:S_miejscowosc>OTOMIN</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  934. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  935. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  936. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708648" p5:primaryKey="2708648">
  937. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708648</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  938. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  939. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708647" p5:primaryKey="2708647"/>
  940. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  941. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  942. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708640" p5:primaryKey="2708640">
  943. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708640</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  944. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.390266" p5:primaryKey="390266">
  945. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>390266</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  946. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708646" p5:primaryKey="2708646">
  947. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708646</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  948. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17228" p5:primaryKey="17228">
  949. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17228</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  950. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BINDER</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  951. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  952. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  953. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708645" p5:primaryKey="2708645">
  954. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708645</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  955. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  956. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708644" p5:primaryKey="2708644">
  957. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708644</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  958. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.437385" p5:primaryKey="437385">
  959. <default_db__x3A__BI_audit_KRS:ID>437385</default_db__x3A__BI_audit_KRS:ID>
  960. <default_db__x3A__BI_audit_KRS:krs>0000548256</default_db__x3A__BI_audit_KRS:krs>
  961. <default_db__x3A__BI_audit_KRS:nazwa>THE BINDER CONSULTING SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  962. <default_db__x3A__BI_audit_KRS:S_miejscowosc>OTOMIN</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  963. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  964. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  965. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708643" p5:primaryKey="2708643">
  966. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708643</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  967. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  968. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708642" p5:primaryKey="2708642">
  969. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708642</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  970. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.512535" p5:primaryKey="512535">
  971. <default_db__x3A__BI_audit_KRS:ID>512535</default_db__x3A__BI_audit_KRS:ID>
  972. <default_db__x3A__BI_audit_KRS:krs>0000627944</default_db__x3A__BI_audit_KRS:krs>
  973. <default_db__x3A__BI_audit_KRS:nazwa>NETDAY SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  974. <default_db__x3A__BI_audit_KRS:S_miejscowosc>OTOMIN</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  975. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  976. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  977. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708641" p5:primaryKey="2708641">
  978. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708641</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  979. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  980. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708640" p5:primaryKey="2708640"/>
  981. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  982. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  983. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708632" p5:primaryKey="2708632">
  984. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708632</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  985. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.390265" p5:primaryKey="390265">
  986. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>390265</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  987. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708639" p5:primaryKey="2708639">
  988. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708639</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  989. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17230" p5:primaryKey="17230">
  990. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17230</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  991. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BIALL Sp. z o.o.</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  992. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  993. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  994. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708638" p5:primaryKey="2708638">
  995. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708638</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  996. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.161323" p5:primaryKey="161323">
  997. <default_db__x3A__BI_audit_KRS:ID>161323</default_db__x3A__BI_audit_KRS:ID>
  998. <default_db__x3A__BI_audit_KRS:krs>0000223476</default_db__x3A__BI_audit_KRS:krs>
  999. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  1000. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  1001. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  1002. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1003. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708637" p5:primaryKey="2708637">
  1004. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708637</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1005. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1006. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708636" p5:primaryKey="2708636">
  1007. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708636</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1008. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.437385" p5:primaryKey="437385">
  1009. <default_db__x3A__BI_audit_KRS:ID>437385</default_db__x3A__BI_audit_KRS:ID>
  1010. <default_db__x3A__BI_audit_KRS:krs>0000548256</default_db__x3A__BI_audit_KRS:krs>
  1011. <default_db__x3A__BI_audit_KRS:nazwa>THE BINDER CONSULTING SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  1012. <default_db__x3A__BI_audit_KRS:S_miejscowosc>OTOMIN</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  1013. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  1014. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1015. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708635" p5:primaryKey="2708635">
  1016. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708635</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1017. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1018. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708634" p5:primaryKey="2708634">
  1019. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708634</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1020. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.512535" p5:primaryKey="512535">
  1021. <default_db__x3A__BI_audit_KRS:ID>512535</default_db__x3A__BI_audit_KRS:ID>
  1022. <default_db__x3A__BI_audit_KRS:krs>0000627944</default_db__x3A__BI_audit_KRS:krs>
  1023. <default_db__x3A__BI_audit_KRS:nazwa>NETDAY SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  1024. <default_db__x3A__BI_audit_KRS:S_miejscowosc>OTOMIN</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  1025. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  1026. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1027. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708633" p5:primaryKey="2708633">
  1028. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708633</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1029. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1030. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708632" p5:primaryKey="2708632"/>
  1031. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  1032. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1033. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708624" p5:primaryKey="2708624">
  1034. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708624</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1035. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.390264" p5:primaryKey="390264">
  1036. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>390264</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  1037. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708631" p5:primaryKey="2708631">
  1038. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708631</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1039. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17228" p5:primaryKey="17228">
  1040. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17228</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  1041. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BINDER</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  1042. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  1043. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1044. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708630" p5:primaryKey="2708630">
  1045. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708630</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1046. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1047. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708629" p5:primaryKey="2708629">
  1048. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708629</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1049. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.383757" p5:primaryKey="383757">
  1050. <default_db__x3A__BI_audit_MSIG:ID>383757</default_db__x3A__BI_audit_MSIG:ID>
  1051. <default_db__x3A__BI_audit_MSIG:nazwa>THE BINDER CONSULTING SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  1052. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  1053. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1054. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708628" p5:primaryKey="2708628">
  1055. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708628</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1056. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.437385" p5:primaryKey="437385">
  1057. <default_db__x3A__BI_audit_KRS:ID>437385</default_db__x3A__BI_audit_KRS:ID>
  1058. <default_db__x3A__BI_audit_KRS:krs>0000548256</default_db__x3A__BI_audit_KRS:krs>
  1059. <default_db__x3A__BI_audit_KRS:nazwa>THE BINDER CONSULTING SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  1060. <default_db__x3A__BI_audit_KRS:S_miejscowosc>OTOMIN</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  1061. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  1062. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1063. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708627" p5:primaryKey="2708627">
  1064. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708627</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1065. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1066. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708626" p5:primaryKey="2708626">
  1067. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708626</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1068. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.512535" p5:primaryKey="512535">
  1069. <default_db__x3A__BI_audit_KRS:ID>512535</default_db__x3A__BI_audit_KRS:ID>
  1070. <default_db__x3A__BI_audit_KRS:krs>0000627944</default_db__x3A__BI_audit_KRS:krs>
  1071. <default_db__x3A__BI_audit_KRS:nazwa>NETDAY SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  1072. <default_db__x3A__BI_audit_KRS:S_miejscowosc>OTOMIN</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  1073. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  1074. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1075. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708625" p5:primaryKey="2708625">
  1076. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708625</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1077. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1078. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708624" p5:primaryKey="2708624"/>
  1079. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  1080. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1081. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708616" p5:primaryKey="2708616">
  1082. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708616</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1083. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.390263" p5:primaryKey="390263">
  1084. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>390263</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  1085. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708623" p5:primaryKey="2708623">
  1086. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708623</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1087. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17230" p5:primaryKey="17230">
  1088. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17230</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  1089. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BIALL Sp. z o.o.</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  1090. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  1091. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1092. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708622" p5:primaryKey="2708622">
  1093. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708622</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1094. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.161323" p5:primaryKey="161323">
  1095. <default_db__x3A__BI_audit_KRS:ID>161323</default_db__x3A__BI_audit_KRS:ID>
  1096. <default_db__x3A__BI_audit_KRS:krs>0000223476</default_db__x3A__BI_audit_KRS:krs>
  1097. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  1098. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  1099. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  1100. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1101. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708621" p5:primaryKey="2708621">
  1102. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708621</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1103. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1104. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708620" p5:primaryKey="2708620">
  1105. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708620</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1106. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.151308" p5:primaryKey="151308">
  1107. <default_db__x3A__BI_audit_KRS:ID>151308</default_db__x3A__BI_audit_KRS:ID>
  1108. <default_db__x3A__BI_audit_KRS:krs>0000210311</default_db__x3A__BI_audit_KRS:krs>
  1109. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL-NET&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  1110. <default_db__x3A__BI_audit_KRS:S_miejscowosc>OTOMIN</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  1111. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  1112. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1113. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708619" p5:primaryKey="2708619">
  1114. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708619</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1115. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1116. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708618" p5:primaryKey="2708618">
  1117. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708618</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1118. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.512535" p5:primaryKey="512535">
  1119. <default_db__x3A__BI_audit_KRS:ID>512535</default_db__x3A__BI_audit_KRS:ID>
  1120. <default_db__x3A__BI_audit_KRS:krs>0000627944</default_db__x3A__BI_audit_KRS:krs>
  1121. <default_db__x3A__BI_audit_KRS:nazwa>NETDAY SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  1122. <default_db__x3A__BI_audit_KRS:S_miejscowosc>OTOMIN</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  1123. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  1124. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1125. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708617" p5:primaryKey="2708617">
  1126. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708617</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1127. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1128. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708616" p5:primaryKey="2708616"/>
  1129. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  1130. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1131. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708608" p5:primaryKey="2708608">
  1132. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708608</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1133. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.390262" p5:primaryKey="390262">
  1134. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>390262</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  1135. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708615" p5:primaryKey="2708615">
  1136. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708615</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1137. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17230" p5:primaryKey="17230">
  1138. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17230</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  1139. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BIALL Sp. z o.o.</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  1140. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  1141. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1142. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708614" p5:primaryKey="2708614">
  1143. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708614</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1144. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.161323" p5:primaryKey="161323">
  1145. <default_db__x3A__BI_audit_KRS:ID>161323</default_db__x3A__BI_audit_KRS:ID>
  1146. <default_db__x3A__BI_audit_KRS:krs>0000223476</default_db__x3A__BI_audit_KRS:krs>
  1147. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  1148. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  1149. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  1150. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1151. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708613" p5:primaryKey="2708613">
  1152. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708613</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1153. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1154. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708612" p5:primaryKey="2708612">
  1155. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708612</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1156. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.151308" p5:primaryKey="151308">
  1157. <default_db__x3A__BI_audit_KRS:ID>151308</default_db__x3A__BI_audit_KRS:ID>
  1158. <default_db__x3A__BI_audit_KRS:krs>0000210311</default_db__x3A__BI_audit_KRS:krs>
  1159. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL-NET&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  1160. <default_db__x3A__BI_audit_KRS:S_miejscowosc>OTOMIN</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  1161. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  1162. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1163. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708611" p5:primaryKey="2708611">
  1164. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708611</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1165. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1166. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708610" p5:primaryKey="2708610">
  1167. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708610</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1168. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.512535" p5:primaryKey="512535">
  1169. <default_db__x3A__BI_audit_KRS:ID>512535</default_db__x3A__BI_audit_KRS:ID>
  1170. <default_db__x3A__BI_audit_KRS:krs>0000627944</default_db__x3A__BI_audit_KRS:krs>
  1171. <default_db__x3A__BI_audit_KRS:nazwa>NETDAY SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  1172. <default_db__x3A__BI_audit_KRS:S_miejscowosc>OTOMIN</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  1173. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  1174. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1175. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708609" p5:primaryKey="2708609">
  1176. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708609</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1177. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1178. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708608" p5:primaryKey="2708608"/>
  1179. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  1180. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1181. <p5:links>
  1182. <p5:next p5:typeName="default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object" p5:backRefNS="default_db/BI_audit_ENERGA_PRACOWNICY/BI_audit_ENERGA_PRACOWNICY" p5:backRefPK="471" p5:startIndex="10">https://biuro.biall-net.pl/dev-pl/se-projects/bocian/SE//wfs-data.php/default_db/?SERVICE=WFS&amp;VERSION=1.0.0&amp;TYPENAME=default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object&amp;REQUEST=GetFeature&amp;backRefNS=default_db/BI_audit_ENERGA_PRACOWNICY/BI_audit_ENERGA_PRACOWNICY&amp;backRefPK=471&amp;backRefField=default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object&amp;maxFeatures=10&amp;startIndex=10</p5:next>
  1183. </p5:links>
  1184. </default_db__x3A__BI_audit_ENERGA_PRACOWNICY:BI_audit_ENERGA_PRACOWNICY>
  1185. </gml:featureMember>
  1186. <gml:featureMember>
  1187. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:BI_audit_ENERGA_PRACOWNICY fid="BI_audit_ENERGA_PRACOWNICY.470" p5:primaryKey="470">
  1188. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:ID>470</default_db__x3A__BI_audit_ENERGA_PRACOWNICY:ID>
  1189. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:imiona>ANNA</default_db__x3A__BI_audit_ENERGA_PRACOWNICY:imiona>
  1190. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:nazwisko>KRZYŻOWSKA</default_db__x3A__BI_audit_ENERGA_PRACOWNICY:nazwisko>
  1191. </default_db__x3A__BI_audit_ENERGA_PRACOWNICY:BI_audit_ENERGA_PRACOWNICY>
  1192. </gml:featureMember>
  1193. <gml:featureMember>
  1194. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:BI_audit_ENERGA_PRACOWNICY fid="BI_audit_ENERGA_PRACOWNICY.469" p5:primaryKey="469">
  1195. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:ID>469</default_db__x3A__BI_audit_ENERGA_PRACOWNICY:ID>
  1196. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:imiona>ADRIAN RYSZARD</default_db__x3A__BI_audit_ENERGA_PRACOWNICY:imiona>
  1197. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:nazwisko>WIECZORKOWSKI</default_db__x3A__BI_audit_ENERGA_PRACOWNICY:nazwisko>
  1198. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708019" p5:primaryKey="2708019">
  1199. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708019</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1200. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.390185" p5:primaryKey="390185">
  1201. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>390185</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  1202. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708022" p5:primaryKey="2708022">
  1203. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708022</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1204. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17230" p5:primaryKey="17230">
  1205. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17230</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  1206. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BIALL Sp. z o.o.</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  1207. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  1208. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1209. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708021" p5:primaryKey="2708021">
  1210. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708021</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1211. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.161323" p5:primaryKey="161323">
  1212. <default_db__x3A__BI_audit_KRS:ID>161323</default_db__x3A__BI_audit_KRS:ID>
  1213. <default_db__x3A__BI_audit_KRS:krs>0000223476</default_db__x3A__BI_audit_KRS:krs>
  1214. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  1215. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  1216. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  1217. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1218. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708020" p5:primaryKey="2708020">
  1219. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708020</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1220. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1221. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708019" p5:primaryKey="2708019"/>
  1222. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  1223. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1224. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708014" p5:primaryKey="2708014">
  1225. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708014</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1226. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.390184" p5:primaryKey="390184">
  1227. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>390184</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  1228. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708018" p5:primaryKey="2708018">
  1229. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708018</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1230. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17230" p5:primaryKey="17230">
  1231. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17230</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  1232. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BIALL Sp. z o.o.</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  1233. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  1234. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1235. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708017" p5:primaryKey="2708017">
  1236. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708017</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1237. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1238. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708016" p5:primaryKey="2708016">
  1239. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708016</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1240. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.161323" p5:primaryKey="161323">
  1241. <default_db__x3A__BI_audit_KRS:ID>161323</default_db__x3A__BI_audit_KRS:ID>
  1242. <default_db__x3A__BI_audit_KRS:krs>0000223476</default_db__x3A__BI_audit_KRS:krs>
  1243. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  1244. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  1245. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  1246. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1247. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708015" p5:primaryKey="2708015">
  1248. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708015</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1249. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1250. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708014" p5:primaryKey="2708014"/>
  1251. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  1252. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1253. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708007" p5:primaryKey="2708007">
  1254. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708007</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1255. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.390183" p5:primaryKey="390183">
  1256. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>390183</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  1257. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708013" p5:primaryKey="2708013">
  1258. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708013</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1259. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17230" p5:primaryKey="17230">
  1260. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17230</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  1261. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BIALL Sp. z o.o.</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  1262. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  1263. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1264. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708012" p5:primaryKey="2708012">
  1265. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708012</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1266. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.36736" p5:primaryKey="36736">
  1267. <default_db__x3A__BI_audit_MSIG:ID>36736</default_db__x3A__BI_audit_MSIG:ID>
  1268. <default_db__x3A__BI_audit_MSIG:nazwa>„BIALL” SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  1269. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  1270. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1271. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708011" p5:primaryKey="2708011">
  1272. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708011</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1273. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1274. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708010" p5:primaryKey="2708010">
  1275. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708010</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1276. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1277. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708009" p5:primaryKey="2708009">
  1278. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708009</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1279. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.161323" p5:primaryKey="161323">
  1280. <default_db__x3A__BI_audit_KRS:ID>161323</default_db__x3A__BI_audit_KRS:ID>
  1281. <default_db__x3A__BI_audit_KRS:krs>0000223476</default_db__x3A__BI_audit_KRS:krs>
  1282. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  1283. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  1284. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  1285. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1286. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708008" p5:primaryKey="2708008">
  1287. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708008</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1288. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1289. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708007" p5:primaryKey="2708007"/>
  1290. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  1291. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1292. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708000" p5:primaryKey="2708000">
  1293. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708000</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1294. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.390182" p5:primaryKey="390182">
  1295. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>390182</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  1296. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708006" p5:primaryKey="2708006">
  1297. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708006</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1298. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17228" p5:primaryKey="17228">
  1299. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17228</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  1300. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BINDER</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  1301. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  1302. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1303. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708005" p5:primaryKey="2708005">
  1304. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708005</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1305. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1306. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708004" p5:primaryKey="2708004">
  1307. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708004</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1308. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.151308" p5:primaryKey="151308">
  1309. <default_db__x3A__BI_audit_KRS:ID>151308</default_db__x3A__BI_audit_KRS:ID>
  1310. <default_db__x3A__BI_audit_KRS:krs>0000210311</default_db__x3A__BI_audit_KRS:krs>
  1311. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL-NET&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  1312. <default_db__x3A__BI_audit_KRS:S_miejscowosc>OTOMIN</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  1313. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  1314. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1315. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708003" p5:primaryKey="2708003">
  1316. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708003</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1317. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1318. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708002" p5:primaryKey="2708002">
  1319. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708002</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1320. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.161323" p5:primaryKey="161323">
  1321. <default_db__x3A__BI_audit_KRS:ID>161323</default_db__x3A__BI_audit_KRS:ID>
  1322. <default_db__x3A__BI_audit_KRS:krs>0000223476</default_db__x3A__BI_audit_KRS:krs>
  1323. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  1324. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  1325. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  1326. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1327. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708001" p5:primaryKey="2708001">
  1328. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2708001</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1329. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1330. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2708000" p5:primaryKey="2708000"/>
  1331. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  1332. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1333. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707992" p5:primaryKey="2707992">
  1334. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707992</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1335. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.390181" p5:primaryKey="390181">
  1336. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>390181</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  1337. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707999" p5:primaryKey="2707999">
  1338. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707999</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1339. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17228" p5:primaryKey="17228">
  1340. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17228</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  1341. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BINDER</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  1342. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  1343. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1344. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707998" p5:primaryKey="2707998">
  1345. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707998</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1346. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1347. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707997" p5:primaryKey="2707997">
  1348. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707997</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1349. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.36735" p5:primaryKey="36735">
  1350. <default_db__x3A__BI_audit_MSIG:ID>36735</default_db__x3A__BI_audit_MSIG:ID>
  1351. <default_db__x3A__BI_audit_MSIG:nazwa>„BIALL-NET”SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  1352. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  1353. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1354. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707996" p5:primaryKey="2707996">
  1355. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707996</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1356. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.151308" p5:primaryKey="151308">
  1357. <default_db__x3A__BI_audit_KRS:ID>151308</default_db__x3A__BI_audit_KRS:ID>
  1358. <default_db__x3A__BI_audit_KRS:krs>0000210311</default_db__x3A__BI_audit_KRS:krs>
  1359. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL-NET&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  1360. <default_db__x3A__BI_audit_KRS:S_miejscowosc>OTOMIN</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  1361. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  1362. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1363. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707995" p5:primaryKey="2707995">
  1364. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707995</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1365. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1366. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707994" p5:primaryKey="2707994">
  1367. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707994</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1368. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.161323" p5:primaryKey="161323">
  1369. <default_db__x3A__BI_audit_KRS:ID>161323</default_db__x3A__BI_audit_KRS:ID>
  1370. <default_db__x3A__BI_audit_KRS:krs>0000223476</default_db__x3A__BI_audit_KRS:krs>
  1371. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  1372. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  1373. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  1374. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1375. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707993" p5:primaryKey="2707993">
  1376. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707993</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1377. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1378. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707992" p5:primaryKey="2707992"/>
  1379. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  1380. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1381. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707987" p5:primaryKey="2707987">
  1382. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707987</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1383. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.390180" p5:primaryKey="390180">
  1384. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>390180</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  1385. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707991" p5:primaryKey="2707991">
  1386. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707991</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1387. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17228" p5:primaryKey="17228">
  1388. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17228</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  1389. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BINDER</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  1390. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  1391. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1392. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707990" p5:primaryKey="2707990">
  1393. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707990</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1394. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1395. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707989" p5:primaryKey="2707989">
  1396. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707989</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1397. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.161323" p5:primaryKey="161323">
  1398. <default_db__x3A__BI_audit_KRS:ID>161323</default_db__x3A__BI_audit_KRS:ID>
  1399. <default_db__x3A__BI_audit_KRS:krs>0000223476</default_db__x3A__BI_audit_KRS:krs>
  1400. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  1401. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  1402. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  1403. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1404. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707988" p5:primaryKey="2707988">
  1405. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707988</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1406. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1407. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707987" p5:primaryKey="2707987"/>
  1408. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  1409. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1410. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707979" p5:primaryKey="2707979">
  1411. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707979</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1412. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.390179" p5:primaryKey="390179">
  1413. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>390179</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  1414. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707986" p5:primaryKey="2707986">
  1415. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707986</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1416. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17228" p5:primaryKey="17228">
  1417. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17228</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  1418. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BINDER</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  1419. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  1420. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1421. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707985" p5:primaryKey="2707985">
  1422. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707985</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1423. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1424. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707984" p5:primaryKey="2707984">
  1425. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707984</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1426. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.457386" p5:primaryKey="457386">
  1427. <default_db__x3A__BI_audit_MSIG:ID>457386</default_db__x3A__BI_audit_MSIG:ID>
  1428. <default_db__x3A__BI_audit_MSIG:nazwa>NETDAY SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  1429. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  1430. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1431. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707983" p5:primaryKey="2707983">
  1432. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707983</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1433. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.512535" p5:primaryKey="512535">
  1434. <default_db__x3A__BI_audit_KRS:ID>512535</default_db__x3A__BI_audit_KRS:ID>
  1435. <default_db__x3A__BI_audit_KRS:krs>0000627944</default_db__x3A__BI_audit_KRS:krs>
  1436. <default_db__x3A__BI_audit_KRS:nazwa>NETDAY SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  1437. <default_db__x3A__BI_audit_KRS:S_miejscowosc>OTOMIN</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  1438. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  1439. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1440. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707982" p5:primaryKey="2707982">
  1441. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707982</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1442. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1443. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707981" p5:primaryKey="2707981">
  1444. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707981</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1445. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.161323" p5:primaryKey="161323">
  1446. <default_db__x3A__BI_audit_KRS:ID>161323</default_db__x3A__BI_audit_KRS:ID>
  1447. <default_db__x3A__BI_audit_KRS:krs>0000223476</default_db__x3A__BI_audit_KRS:krs>
  1448. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  1449. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  1450. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  1451. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1452. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707980" p5:primaryKey="2707980">
  1453. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707980</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1454. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1455. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707979" p5:primaryKey="2707979"/>
  1456. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  1457. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1458. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707971" p5:primaryKey="2707971">
  1459. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707971</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1460. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.390178" p5:primaryKey="390178">
  1461. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>390178</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  1462. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707978" p5:primaryKey="2707978">
  1463. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707978</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1464. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17228" p5:primaryKey="17228">
  1465. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17228</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  1466. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BINDER</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  1467. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  1468. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1469. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707977" p5:primaryKey="2707977">
  1470. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707977</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1471. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1472. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707976" p5:primaryKey="2707976">
  1473. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707976</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1474. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.383757" p5:primaryKey="383757">
  1475. <default_db__x3A__BI_audit_MSIG:ID>383757</default_db__x3A__BI_audit_MSIG:ID>
  1476. <default_db__x3A__BI_audit_MSIG:nazwa>THE BINDER CONSULTING SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  1477. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  1478. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1479. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707975" p5:primaryKey="2707975">
  1480. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707975</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1481. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.437385" p5:primaryKey="437385">
  1482. <default_db__x3A__BI_audit_KRS:ID>437385</default_db__x3A__BI_audit_KRS:ID>
  1483. <default_db__x3A__BI_audit_KRS:krs>0000548256</default_db__x3A__BI_audit_KRS:krs>
  1484. <default_db__x3A__BI_audit_KRS:nazwa>THE BINDER CONSULTING SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  1485. <default_db__x3A__BI_audit_KRS:S_miejscowosc>OTOMIN</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  1486. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  1487. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1488. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707974" p5:primaryKey="2707974">
  1489. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707974</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1490. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1491. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707973" p5:primaryKey="2707973">
  1492. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707973</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1493. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.161323" p5:primaryKey="161323">
  1494. <default_db__x3A__BI_audit_KRS:ID>161323</default_db__x3A__BI_audit_KRS:ID>
  1495. <default_db__x3A__BI_audit_KRS:krs>0000223476</default_db__x3A__BI_audit_KRS:krs>
  1496. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  1497. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  1498. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  1499. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1500. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707972" p5:primaryKey="2707972">
  1501. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707972</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1502. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1503. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707971" p5:primaryKey="2707971"/>
  1504. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  1505. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1506. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707963" p5:primaryKey="2707963">
  1507. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707963</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1508. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.390177" p5:primaryKey="390177">
  1509. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>390177</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  1510. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707970" p5:primaryKey="2707970">
  1511. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707970</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1512. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17228" p5:primaryKey="17228">
  1513. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17228</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  1514. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BINDER</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  1515. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  1516. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1517. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707969" p5:primaryKey="2707969">
  1518. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707969</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1519. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1520. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707968" p5:primaryKey="2707968">
  1521. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707968</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1522. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.197902" p5:primaryKey="197902">
  1523. <default_db__x3A__BI_audit_MSIG:ID>197902</default_db__x3A__BI_audit_MSIG:ID>
  1524. <default_db__x3A__BI_audit_MSIG:nazwa>AMS SYSTEM SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  1525. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  1526. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1527. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707967" p5:primaryKey="2707967">
  1528. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707967</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1529. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.203646" p5:primaryKey="203646">
  1530. <default_db__x3A__BI_audit_KRS:ID>203646</default_db__x3A__BI_audit_KRS:ID>
  1531. <default_db__x3A__BI_audit_KRS:krs>0000278304</default_db__x3A__BI_audit_KRS:krs>
  1532. <default_db__x3A__BI_audit_KRS:nazwa>AMS SYSTEM SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  1533. <default_db__x3A__BI_audit_KRS:S_miejscowosc>WARSZAWA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  1534. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  1535. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1536. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707966" p5:primaryKey="2707966">
  1537. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707966</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1538. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1539. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707965" p5:primaryKey="2707965">
  1540. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707965</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1541. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.161323" p5:primaryKey="161323">
  1542. <default_db__x3A__BI_audit_KRS:ID>161323</default_db__x3A__BI_audit_KRS:ID>
  1543. <default_db__x3A__BI_audit_KRS:krs>0000223476</default_db__x3A__BI_audit_KRS:krs>
  1544. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  1545. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  1546. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  1547. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1548. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707964" p5:primaryKey="2707964">
  1549. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707964</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1550. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1551. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707963" p5:primaryKey="2707963"/>
  1552. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  1553. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1554. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707955" p5:primaryKey="2707955">
  1555. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707955</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1556. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.390176" p5:primaryKey="390176">
  1557. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>390176</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  1558. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707962" p5:primaryKey="2707962">
  1559. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707962</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1560. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17228" p5:primaryKey="17228">
  1561. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17228</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  1562. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BINDER</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  1563. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  1564. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1565. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707961" p5:primaryKey="2707961">
  1566. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707961</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1567. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1568. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707960" p5:primaryKey="2707960">
  1569. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707960</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1570. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.36735" p5:primaryKey="36735">
  1571. <default_db__x3A__BI_audit_MSIG:ID>36735</default_db__x3A__BI_audit_MSIG:ID>
  1572. <default_db__x3A__BI_audit_MSIG:nazwa>„BIALL-NET”SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  1573. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  1574. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1575. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707959" p5:primaryKey="2707959">
  1576. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707959</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1577. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.151308" p5:primaryKey="151308">
  1578. <default_db__x3A__BI_audit_KRS:ID>151308</default_db__x3A__BI_audit_KRS:ID>
  1579. <default_db__x3A__BI_audit_KRS:krs>0000210311</default_db__x3A__BI_audit_KRS:krs>
  1580. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL-NET&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  1581. <default_db__x3A__BI_audit_KRS:S_miejscowosc>OTOMIN</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  1582. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  1583. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1584. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707958" p5:primaryKey="2707958">
  1585. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707958</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1586. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1587. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707957" p5:primaryKey="2707957">
  1588. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707957</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1589. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.161323" p5:primaryKey="161323">
  1590. <default_db__x3A__BI_audit_KRS:ID>161323</default_db__x3A__BI_audit_KRS:ID>
  1591. <default_db__x3A__BI_audit_KRS:krs>0000223476</default_db__x3A__BI_audit_KRS:krs>
  1592. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  1593. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  1594. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  1595. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1596. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707956" p5:primaryKey="2707956">
  1597. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707956</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1598. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1599. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707955" p5:primaryKey="2707955"/>
  1600. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  1601. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1602. <p5:links>
  1603. <p5:next p5:typeName="default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object" p5:backRefNS="default_db/BI_audit_ENERGA_PRACOWNICY/BI_audit_ENERGA_PRACOWNICY" p5:backRefPK="469" p5:startIndex="10">https://biuro.biall-net.pl/dev-pl/se-projects/bocian/SE//wfs-data.php/default_db/?SERVICE=WFS&amp;VERSION=1.0.0&amp;TYPENAME=default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object&amp;REQUEST=GetFeature&amp;backRefNS=default_db/BI_audit_ENERGA_PRACOWNICY/BI_audit_ENERGA_PRACOWNICY&amp;backRefPK=469&amp;backRefField=default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object&amp;maxFeatures=10&amp;startIndex=10</p5:next>
  1604. </p5:links>
  1605. </default_db__x3A__BI_audit_ENERGA_PRACOWNICY:BI_audit_ENERGA_PRACOWNICY>
  1606. </gml:featureMember>
  1607. <gml:featureMember>
  1608. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:BI_audit_ENERGA_PRACOWNICY fid="BI_audit_ENERGA_PRACOWNICY.468" p5:primaryKey="468">
  1609. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:ID>468</default_db__x3A__BI_audit_ENERGA_PRACOWNICY:ID>
  1610. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:imiona>SŁAWOMIR ANDRZEJ</default_db__x3A__BI_audit_ENERGA_PRACOWNICY:imiona>
  1611. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:nazwisko>BINDER</default_db__x3A__BI_audit_ENERGA_PRACOWNICY:nazwisko>
  1612. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707074" p5:primaryKey="2707074">
  1613. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707074</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1614. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.390058" p5:primaryKey="390058">
  1615. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>390058</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  1616. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707077" p5:primaryKey="2707077">
  1617. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707077</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1618. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17230" p5:primaryKey="17230">
  1619. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17230</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  1620. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BIALL Sp. z o.o.</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  1621. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  1622. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1623. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707076" p5:primaryKey="2707076">
  1624. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707076</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1625. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.161323" p5:primaryKey="161323">
  1626. <default_db__x3A__BI_audit_KRS:ID>161323</default_db__x3A__BI_audit_KRS:ID>
  1627. <default_db__x3A__BI_audit_KRS:krs>0000223476</default_db__x3A__BI_audit_KRS:krs>
  1628. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  1629. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  1630. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  1631. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1632. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707075" p5:primaryKey="2707075">
  1633. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707075</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1634. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1635. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707074" p5:primaryKey="2707074"/>
  1636. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  1637. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1638. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707069" p5:primaryKey="2707069">
  1639. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707069</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1640. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.390057" p5:primaryKey="390057">
  1641. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>390057</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  1642. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707073" p5:primaryKey="2707073">
  1643. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707073</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1644. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17230" p5:primaryKey="17230">
  1645. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17230</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  1646. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BIALL Sp. z o.o.</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  1647. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  1648. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1649. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707072" p5:primaryKey="2707072">
  1650. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707072</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1651. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1652. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707071" p5:primaryKey="2707071">
  1653. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707071</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1654. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.161323" p5:primaryKey="161323">
  1655. <default_db__x3A__BI_audit_KRS:ID>161323</default_db__x3A__BI_audit_KRS:ID>
  1656. <default_db__x3A__BI_audit_KRS:krs>0000223476</default_db__x3A__BI_audit_KRS:krs>
  1657. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  1658. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  1659. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  1660. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1661. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707070" p5:primaryKey="2707070">
  1662. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707070</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1663. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1664. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707069" p5:primaryKey="2707069"/>
  1665. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  1666. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1667. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707062" p5:primaryKey="2707062">
  1668. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707062</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1669. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.390056" p5:primaryKey="390056">
  1670. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>390056</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  1671. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707068" p5:primaryKey="2707068">
  1672. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707068</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1673. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17230" p5:primaryKey="17230">
  1674. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17230</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  1675. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BIALL Sp. z o.o.</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  1676. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  1677. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1678. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707067" p5:primaryKey="2707067">
  1679. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707067</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1680. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.36736" p5:primaryKey="36736">
  1681. <default_db__x3A__BI_audit_MSIG:ID>36736</default_db__x3A__BI_audit_MSIG:ID>
  1682. <default_db__x3A__BI_audit_MSIG:nazwa>„BIALL” SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  1683. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  1684. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1685. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707066" p5:primaryKey="2707066">
  1686. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707066</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1687. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1688. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707065" p5:primaryKey="2707065">
  1689. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707065</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1690. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1691. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707064" p5:primaryKey="2707064">
  1692. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707064</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1693. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.161323" p5:primaryKey="161323">
  1694. <default_db__x3A__BI_audit_KRS:ID>161323</default_db__x3A__BI_audit_KRS:ID>
  1695. <default_db__x3A__BI_audit_KRS:krs>0000223476</default_db__x3A__BI_audit_KRS:krs>
  1696. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  1697. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  1698. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  1699. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1700. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707063" p5:primaryKey="2707063">
  1701. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707063</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1702. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1703. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707062" p5:primaryKey="2707062"/>
  1704. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  1705. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1706. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707055" p5:primaryKey="2707055">
  1707. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707055</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1708. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.390055" p5:primaryKey="390055">
  1709. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>390055</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  1710. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707061" p5:primaryKey="2707061">
  1711. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707061</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1712. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17228" p5:primaryKey="17228">
  1713. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17228</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  1714. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BINDER</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  1715. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  1716. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1717. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707060" p5:primaryKey="2707060">
  1718. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707060</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1719. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1720. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707059" p5:primaryKey="2707059">
  1721. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707059</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1722. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.151308" p5:primaryKey="151308">
  1723. <default_db__x3A__BI_audit_KRS:ID>151308</default_db__x3A__BI_audit_KRS:ID>
  1724. <default_db__x3A__BI_audit_KRS:krs>0000210311</default_db__x3A__BI_audit_KRS:krs>
  1725. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL-NET&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  1726. <default_db__x3A__BI_audit_KRS:S_miejscowosc>OTOMIN</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  1727. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  1728. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1729. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707058" p5:primaryKey="2707058">
  1730. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707058</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1731. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1732. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707057" p5:primaryKey="2707057">
  1733. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707057</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1734. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.161323" p5:primaryKey="161323">
  1735. <default_db__x3A__BI_audit_KRS:ID>161323</default_db__x3A__BI_audit_KRS:ID>
  1736. <default_db__x3A__BI_audit_KRS:krs>0000223476</default_db__x3A__BI_audit_KRS:krs>
  1737. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  1738. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  1739. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  1740. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1741. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707056" p5:primaryKey="2707056">
  1742. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707056</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1743. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1744. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707055" p5:primaryKey="2707055"/>
  1745. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  1746. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1747. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707047" p5:primaryKey="2707047">
  1748. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707047</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1749. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.390054" p5:primaryKey="390054">
  1750. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>390054</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  1751. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707054" p5:primaryKey="2707054">
  1752. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707054</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1753. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17228" p5:primaryKey="17228">
  1754. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17228</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  1755. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BINDER</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  1756. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  1757. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1758. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707053" p5:primaryKey="2707053">
  1759. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707053</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1760. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1761. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707052" p5:primaryKey="2707052">
  1762. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707052</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1763. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.36735" p5:primaryKey="36735">
  1764. <default_db__x3A__BI_audit_MSIG:ID>36735</default_db__x3A__BI_audit_MSIG:ID>
  1765. <default_db__x3A__BI_audit_MSIG:nazwa>„BIALL-NET”SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  1766. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  1767. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1768. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707051" p5:primaryKey="2707051">
  1769. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707051</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1770. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.151308" p5:primaryKey="151308">
  1771. <default_db__x3A__BI_audit_KRS:ID>151308</default_db__x3A__BI_audit_KRS:ID>
  1772. <default_db__x3A__BI_audit_KRS:krs>0000210311</default_db__x3A__BI_audit_KRS:krs>
  1773. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL-NET&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  1774. <default_db__x3A__BI_audit_KRS:S_miejscowosc>OTOMIN</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  1775. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  1776. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1777. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707050" p5:primaryKey="2707050">
  1778. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707050</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1779. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1780. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707049" p5:primaryKey="2707049">
  1781. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707049</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1782. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.161323" p5:primaryKey="161323">
  1783. <default_db__x3A__BI_audit_KRS:ID>161323</default_db__x3A__BI_audit_KRS:ID>
  1784. <default_db__x3A__BI_audit_KRS:krs>0000223476</default_db__x3A__BI_audit_KRS:krs>
  1785. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  1786. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  1787. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  1788. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1789. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707048" p5:primaryKey="2707048">
  1790. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707048</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1791. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1792. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707047" p5:primaryKey="2707047"/>
  1793. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  1794. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1795. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707042" p5:primaryKey="2707042">
  1796. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707042</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1797. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.390053" p5:primaryKey="390053">
  1798. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>390053</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  1799. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707046" p5:primaryKey="2707046">
  1800. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707046</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1801. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17228" p5:primaryKey="17228">
  1802. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17228</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  1803. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BINDER</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  1804. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  1805. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1806. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707045" p5:primaryKey="2707045">
  1807. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707045</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1808. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1809. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707044" p5:primaryKey="2707044">
  1810. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707044</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1811. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.161323" p5:primaryKey="161323">
  1812. <default_db__x3A__BI_audit_KRS:ID>161323</default_db__x3A__BI_audit_KRS:ID>
  1813. <default_db__x3A__BI_audit_KRS:krs>0000223476</default_db__x3A__BI_audit_KRS:krs>
  1814. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  1815. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  1816. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  1817. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1818. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707043" p5:primaryKey="2707043">
  1819. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707043</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1820. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1821. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707042" p5:primaryKey="2707042"/>
  1822. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  1823. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1824. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707034" p5:primaryKey="2707034">
  1825. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707034</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1826. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.390052" p5:primaryKey="390052">
  1827. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>390052</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  1828. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707041" p5:primaryKey="2707041">
  1829. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707041</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1830. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17228" p5:primaryKey="17228">
  1831. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17228</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  1832. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BINDER</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  1833. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  1834. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1835. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707040" p5:primaryKey="2707040">
  1836. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707040</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1837. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1838. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707039" p5:primaryKey="2707039">
  1839. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707039</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1840. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.457386" p5:primaryKey="457386">
  1841. <default_db__x3A__BI_audit_MSIG:ID>457386</default_db__x3A__BI_audit_MSIG:ID>
  1842. <default_db__x3A__BI_audit_MSIG:nazwa>NETDAY SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  1843. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  1844. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1845. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707038" p5:primaryKey="2707038">
  1846. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707038</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1847. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.512535" p5:primaryKey="512535">
  1848. <default_db__x3A__BI_audit_KRS:ID>512535</default_db__x3A__BI_audit_KRS:ID>
  1849. <default_db__x3A__BI_audit_KRS:krs>0000627944</default_db__x3A__BI_audit_KRS:krs>
  1850. <default_db__x3A__BI_audit_KRS:nazwa>NETDAY SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  1851. <default_db__x3A__BI_audit_KRS:S_miejscowosc>OTOMIN</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  1852. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  1853. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1854. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707037" p5:primaryKey="2707037">
  1855. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707037</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1856. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1857. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707036" p5:primaryKey="2707036">
  1858. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707036</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1859. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.161323" p5:primaryKey="161323">
  1860. <default_db__x3A__BI_audit_KRS:ID>161323</default_db__x3A__BI_audit_KRS:ID>
  1861. <default_db__x3A__BI_audit_KRS:krs>0000223476</default_db__x3A__BI_audit_KRS:krs>
  1862. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  1863. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  1864. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  1865. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1866. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707035" p5:primaryKey="2707035">
  1867. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707035</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1868. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1869. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707034" p5:primaryKey="2707034"/>
  1870. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  1871. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1872. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707026" p5:primaryKey="2707026">
  1873. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707026</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1874. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.390051" p5:primaryKey="390051">
  1875. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>390051</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  1876. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707033" p5:primaryKey="2707033">
  1877. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707033</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1878. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17228" p5:primaryKey="17228">
  1879. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17228</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  1880. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BINDER</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  1881. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  1882. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1883. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707032" p5:primaryKey="2707032">
  1884. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707032</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1885. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1886. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707031" p5:primaryKey="2707031">
  1887. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707031</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1888. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.383757" p5:primaryKey="383757">
  1889. <default_db__x3A__BI_audit_MSIG:ID>383757</default_db__x3A__BI_audit_MSIG:ID>
  1890. <default_db__x3A__BI_audit_MSIG:nazwa>THE BINDER CONSULTING SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  1891. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  1892. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1893. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707030" p5:primaryKey="2707030">
  1894. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707030</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1895. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.437385" p5:primaryKey="437385">
  1896. <default_db__x3A__BI_audit_KRS:ID>437385</default_db__x3A__BI_audit_KRS:ID>
  1897. <default_db__x3A__BI_audit_KRS:krs>0000548256</default_db__x3A__BI_audit_KRS:krs>
  1898. <default_db__x3A__BI_audit_KRS:nazwa>THE BINDER CONSULTING SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  1899. <default_db__x3A__BI_audit_KRS:S_miejscowosc>OTOMIN</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  1900. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  1901. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1902. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707029" p5:primaryKey="2707029">
  1903. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707029</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1904. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1905. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707028" p5:primaryKey="2707028">
  1906. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707028</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1907. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.161323" p5:primaryKey="161323">
  1908. <default_db__x3A__BI_audit_KRS:ID>161323</default_db__x3A__BI_audit_KRS:ID>
  1909. <default_db__x3A__BI_audit_KRS:krs>0000223476</default_db__x3A__BI_audit_KRS:krs>
  1910. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  1911. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  1912. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  1913. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1914. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707027" p5:primaryKey="2707027">
  1915. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707027</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1916. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1917. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707026" p5:primaryKey="2707026"/>
  1918. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  1919. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1920. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707018" p5:primaryKey="2707018">
  1921. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707018</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1922. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.390050" p5:primaryKey="390050">
  1923. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>390050</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  1924. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707025" p5:primaryKey="2707025">
  1925. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707025</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1926. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17228" p5:primaryKey="17228">
  1927. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17228</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  1928. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BINDER</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  1929. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  1930. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1931. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707024" p5:primaryKey="2707024">
  1932. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707024</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1933. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1934. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707023" p5:primaryKey="2707023">
  1935. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707023</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1936. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.197902" p5:primaryKey="197902">
  1937. <default_db__x3A__BI_audit_MSIG:ID>197902</default_db__x3A__BI_audit_MSIG:ID>
  1938. <default_db__x3A__BI_audit_MSIG:nazwa>AMS SYSTEM SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  1939. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  1940. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1941. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707022" p5:primaryKey="2707022">
  1942. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707022</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1943. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.203646" p5:primaryKey="203646">
  1944. <default_db__x3A__BI_audit_KRS:ID>203646</default_db__x3A__BI_audit_KRS:ID>
  1945. <default_db__x3A__BI_audit_KRS:krs>0000278304</default_db__x3A__BI_audit_KRS:krs>
  1946. <default_db__x3A__BI_audit_KRS:nazwa>AMS SYSTEM SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  1947. <default_db__x3A__BI_audit_KRS:S_miejscowosc>WARSZAWA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  1948. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  1949. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1950. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707021" p5:primaryKey="2707021">
  1951. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707021</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1952. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1953. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707020" p5:primaryKey="2707020">
  1954. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707020</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1955. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.161323" p5:primaryKey="161323">
  1956. <default_db__x3A__BI_audit_KRS:ID>161323</default_db__x3A__BI_audit_KRS:ID>
  1957. <default_db__x3A__BI_audit_KRS:krs>0000223476</default_db__x3A__BI_audit_KRS:krs>
  1958. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  1959. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  1960. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  1961. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1962. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707019" p5:primaryKey="2707019">
  1963. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707019</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1964. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1965. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707018" p5:primaryKey="2707018"/>
  1966. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  1967. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1968. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707010" p5:primaryKey="2707010">
  1969. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707010</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1970. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.390049" p5:primaryKey="390049">
  1971. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>390049</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  1972. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707017" p5:primaryKey="2707017">
  1973. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707017</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1974. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17228" p5:primaryKey="17228">
  1975. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17228</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  1976. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BINDER</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  1977. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  1978. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1979. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707016" p5:primaryKey="2707016">
  1980. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707016</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1981. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1982. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707015" p5:primaryKey="2707015">
  1983. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707015</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1984. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.36735" p5:primaryKey="36735">
  1985. <default_db__x3A__BI_audit_MSIG:ID>36735</default_db__x3A__BI_audit_MSIG:ID>
  1986. <default_db__x3A__BI_audit_MSIG:nazwa>„BIALL-NET”SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  1987. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  1988. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1989. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707014" p5:primaryKey="2707014">
  1990. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707014</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  1991. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.151308" p5:primaryKey="151308">
  1992. <default_db__x3A__BI_audit_KRS:ID>151308</default_db__x3A__BI_audit_KRS:ID>
  1993. <default_db__x3A__BI_audit_KRS:krs>0000210311</default_db__x3A__BI_audit_KRS:krs>
  1994. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL-NET&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  1995. <default_db__x3A__BI_audit_KRS:S_miejscowosc>OTOMIN</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  1996. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  1997. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  1998. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707013" p5:primaryKey="2707013">
  1999. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707013</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2000. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2001. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707012" p5:primaryKey="2707012">
  2002. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707012</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2003. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.161323" p5:primaryKey="161323">
  2004. <default_db__x3A__BI_audit_KRS:ID>161323</default_db__x3A__BI_audit_KRS:ID>
  2005. <default_db__x3A__BI_audit_KRS:krs>0000223476</default_db__x3A__BI_audit_KRS:krs>
  2006. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  2007. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  2008. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  2009. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2010. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707011" p5:primaryKey="2707011">
  2011. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2707011</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2012. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2013. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2707010" p5:primaryKey="2707010"/>
  2014. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  2015. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2016. <p5:links>
  2017. <p5:next p5:typeName="default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object" p5:backRefNS="default_db/BI_audit_ENERGA_PRACOWNICY/BI_audit_ENERGA_PRACOWNICY" p5:backRefPK="468" p5:startIndex="10">https://biuro.biall-net.pl/dev-pl/se-projects/bocian/SE//wfs-data.php/default_db/?SERVICE=WFS&amp;VERSION=1.0.0&amp;TYPENAME=default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object&amp;REQUEST=GetFeature&amp;backRefNS=default_db/BI_audit_ENERGA_PRACOWNICY/BI_audit_ENERGA_PRACOWNICY&amp;backRefPK=468&amp;backRefField=default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object&amp;maxFeatures=10&amp;startIndex=10</p5:next>
  2018. </p5:links>
  2019. </default_db__x3A__BI_audit_ENERGA_PRACOWNICY:BI_audit_ENERGA_PRACOWNICY>
  2020. </gml:featureMember>
  2021. <gml:featureMember>
  2022. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:BI_audit_ENERGA_PRACOWNICY fid="BI_audit_ENERGA_PRACOWNICY.467" p5:primaryKey="467">
  2023. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:ID>467</default_db__x3A__BI_audit_ENERGA_PRACOWNICY:ID>
  2024. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:imiona>TOMASZ</default_db__x3A__BI_audit_ENERGA_PRACOWNICY:imiona>
  2025. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:nazwisko>ŻURAŃSKI</default_db__x3A__BI_audit_ENERGA_PRACOWNICY:nazwisko>
  2026. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2706016" p5:primaryKey="2706016">
  2027. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2706016</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2028. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.389916" p5:primaryKey="389916">
  2029. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>389916</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  2030. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2706022" p5:primaryKey="2706022">
  2031. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2706022</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2032. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17316" p5:primaryKey="17316">
  2033. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17316</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  2034. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>KPMG TAX M.MICHNA SPÓŁKA KOMANDYTOWA</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  2035. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  2036. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2037. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2706021" p5:primaryKey="2706021">
  2038. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2706021</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2039. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2040. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2706020" p5:primaryKey="2706020">
  2041. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2706020</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2042. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.282107" p5:primaryKey="282107">
  2043. <default_db__x3A__BI_audit_KRS:ID>282107</default_db__x3A__BI_audit_KRS:ID>
  2044. <default_db__x3A__BI_audit_KRS:krs>0000374430</default_db__x3A__BI_audit_KRS:krs>
  2045. <default_db__x3A__BI_audit_KRS:nazwa>K-SPV 20 SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  2046. <default_db__x3A__BI_audit_KRS:S_miejscowosc>KRAKÓW</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  2047. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  2048. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2049. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2706019" p5:primaryKey="2706019">
  2050. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2706019</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2051. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2052. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2706018" p5:primaryKey="2706018">
  2053. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2706018</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2054. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.63172" p5:primaryKey="63172">
  2055. <default_db__x3A__BI_audit_KRS:ID>63172</default_db__x3A__BI_audit_KRS:ID>
  2056. <default_db__x3A__BI_audit_KRS:krs>0000089460</default_db__x3A__BI_audit_KRS:krs>
  2057. <default_db__x3A__BI_audit_KRS:nazwa>VECTRA SPÓŁKA AKCYJNA</default_db__x3A__BI_audit_KRS:nazwa>
  2058. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDYNIA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  2059. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  2060. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2061. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2706017" p5:primaryKey="2706017">
  2062. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2706017</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2063. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2064. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2706016" p5:primaryKey="2706016"/>
  2065. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  2066. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2067. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2706010" p5:primaryKey="2706010">
  2068. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2706010</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2069. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.389915" p5:primaryKey="389915">
  2070. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>389915</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  2071. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2706015" p5:primaryKey="2706015">
  2072. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2706015</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2073. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17238" p5:primaryKey="17238">
  2074. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17238</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  2075. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>ENERGA INVEST SPÓŁKA AKCYJNA</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  2076. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  2077. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2078. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2706014" p5:primaryKey="2706014">
  2079. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2706014</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2080. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.33643" p5:primaryKey="33643">
  2081. <default_db__x3A__BI_audit_KRS:ID>33643</default_db__x3A__BI_audit_KRS:ID>
  2082. <default_db__x3A__BI_audit_KRS:krs>0000047874</default_db__x3A__BI_audit_KRS:krs>
  2083. <default_db__x3A__BI_audit_KRS:nazwa>ENERGA INVEST SPÓŁKA AKCYJNA</default_db__x3A__BI_audit_KRS:nazwa>
  2084. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  2085. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  2086. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2087. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2706013" p5:primaryKey="2706013">
  2088. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2706013</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2089. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2090. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2706012" p5:primaryKey="2706012">
  2091. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2706012</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2092. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.33515" p5:primaryKey="33515">
  2093. <default_db__x3A__BI_audit_KRS:ID>33515</default_db__x3A__BI_audit_KRS:ID>
  2094. <default_db__x3A__BI_audit_KRS:krs>0000047702</default_db__x3A__BI_audit_KRS:krs>
  2095. <default_db__x3A__BI_audit_KRS:nazwa>FOTA SPÓŁKA AKCYJNA W UPADŁOŚCI UKŁADOWEJ</default_db__x3A__BI_audit_KRS:nazwa>
  2096. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDYNIA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  2097. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  2098. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2099. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2706011" p5:primaryKey="2706011">
  2100. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2706011</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2101. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2102. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2706010" p5:primaryKey="2706010"/>
  2103. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  2104. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2105. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2706003" p5:primaryKey="2706003">
  2106. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2706003</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2107. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.389914" p5:primaryKey="389914">
  2108. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>389914</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  2109. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2706009" p5:primaryKey="2706009">
  2110. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2706009</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2111. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17238" p5:primaryKey="17238">
  2112. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17238</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  2113. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>ENERGA INVEST SPÓŁKA AKCYJNA</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  2114. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  2115. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2116. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2706008" p5:primaryKey="2706008">
  2117. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2706008</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2118. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2119. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2706007" p5:primaryKey="2706007">
  2120. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2706007</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2121. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.33643" p5:primaryKey="33643">
  2122. <default_db__x3A__BI_audit_KRS:ID>33643</default_db__x3A__BI_audit_KRS:ID>
  2123. <default_db__x3A__BI_audit_KRS:krs>0000047874</default_db__x3A__BI_audit_KRS:krs>
  2124. <default_db__x3A__BI_audit_KRS:nazwa>ENERGA INVEST SPÓŁKA AKCYJNA</default_db__x3A__BI_audit_KRS:nazwa>
  2125. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  2126. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  2127. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2128. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2706006" p5:primaryKey="2706006">
  2129. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2706006</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2130. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2131. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2706005" p5:primaryKey="2706005">
  2132. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2706005</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2133. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.33515" p5:primaryKey="33515">
  2134. <default_db__x3A__BI_audit_KRS:ID>33515</default_db__x3A__BI_audit_KRS:ID>
  2135. <default_db__x3A__BI_audit_KRS:krs>0000047702</default_db__x3A__BI_audit_KRS:krs>
  2136. <default_db__x3A__BI_audit_KRS:nazwa>FOTA SPÓŁKA AKCYJNA W UPADŁOŚCI UKŁADOWEJ</default_db__x3A__BI_audit_KRS:nazwa>
  2137. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDYNIA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  2138. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  2139. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2140. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2706004" p5:primaryKey="2706004">
  2141. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2706004</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2142. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2143. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2706003" p5:primaryKey="2706003"/>
  2144. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  2145. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2146. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705995" p5:primaryKey="2705995">
  2147. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705995</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2148. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.389913" p5:primaryKey="389913">
  2149. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>389913</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  2150. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2706002" p5:primaryKey="2706002">
  2151. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2706002</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2152. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17240" p5:primaryKey="17240">
  2153. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17240</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  2154. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>ENERGA WYTWARZANIE SPÓŁKA AKCYJNA</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  2155. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  2156. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2157. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2706001" p5:primaryKey="2706001">
  2158. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2706001</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2159. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2160. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2706000" p5:primaryKey="2706000">
  2161. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2706000</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2162. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.249812" p5:primaryKey="249812">
  2163. <default_db__x3A__BI_audit_MSIG:ID>249812</default_db__x3A__BI_audit_MSIG:ID>
  2164. <default_db__x3A__BI_audit_MSIG:nazwa>AEGIR 5 SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  2165. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  2166. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2167. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705999" p5:primaryKey="2705999">
  2168. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705999</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2169. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2170. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705998" p5:primaryKey="2705998">
  2171. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705998</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2172. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2173. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705997" p5:primaryKey="2705997">
  2174. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705997</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2175. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.33515" p5:primaryKey="33515">
  2176. <default_db__x3A__BI_audit_KRS:ID>33515</default_db__x3A__BI_audit_KRS:ID>
  2177. <default_db__x3A__BI_audit_KRS:krs>0000047702</default_db__x3A__BI_audit_KRS:krs>
  2178. <default_db__x3A__BI_audit_KRS:nazwa>FOTA SPÓŁKA AKCYJNA W UPADŁOŚCI UKŁADOWEJ</default_db__x3A__BI_audit_KRS:nazwa>
  2179. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDYNIA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  2180. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  2181. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2182. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705996" p5:primaryKey="2705996">
  2183. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705996</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2184. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2185. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705995" p5:primaryKey="2705995"/>
  2186. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  2187. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2188. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705987" p5:primaryKey="2705987">
  2189. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705987</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2190. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.389912" p5:primaryKey="389912">
  2191. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>389912</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  2192. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705994" p5:primaryKey="2705994">
  2193. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705994</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2194. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17238" p5:primaryKey="17238">
  2195. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17238</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  2196. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>ENERGA INVEST SPÓŁKA AKCYJNA</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  2197. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  2198. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2199. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705993" p5:primaryKey="2705993">
  2200. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705993</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2201. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2202. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705992" p5:primaryKey="2705992">
  2203. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705992</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2204. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.249812" p5:primaryKey="249812">
  2205. <default_db__x3A__BI_audit_MSIG:ID>249812</default_db__x3A__BI_audit_MSIG:ID>
  2206. <default_db__x3A__BI_audit_MSIG:nazwa>AEGIR 5 SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  2207. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  2208. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2209. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705991" p5:primaryKey="2705991">
  2210. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705991</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2211. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2212. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705990" p5:primaryKey="2705990">
  2213. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705990</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2214. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2215. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705989" p5:primaryKey="2705989">
  2216. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705989</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2217. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.33515" p5:primaryKey="33515">
  2218. <default_db__x3A__BI_audit_KRS:ID>33515</default_db__x3A__BI_audit_KRS:ID>
  2219. <default_db__x3A__BI_audit_KRS:krs>0000047702</default_db__x3A__BI_audit_KRS:krs>
  2220. <default_db__x3A__BI_audit_KRS:nazwa>FOTA SPÓŁKA AKCYJNA W UPADŁOŚCI UKŁADOWEJ</default_db__x3A__BI_audit_KRS:nazwa>
  2221. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDYNIA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  2222. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  2223. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2224. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705988" p5:primaryKey="2705988">
  2225. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705988</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2226. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2227. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705987" p5:primaryKey="2705987"/>
  2228. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  2229. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2230. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705979" p5:primaryKey="2705979">
  2231. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705979</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2232. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.389911" p5:primaryKey="389911">
  2233. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>389911</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  2234. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705986" p5:primaryKey="2705986">
  2235. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705986</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2236. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17238" p5:primaryKey="17238">
  2237. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17238</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  2238. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>ENERGA INVEST SPÓŁKA AKCYJNA</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  2239. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  2240. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2241. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705985" p5:primaryKey="2705985">
  2242. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705985</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2243. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2244. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705984" p5:primaryKey="2705984">
  2245. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705984</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2246. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.249811" p5:primaryKey="249811">
  2247. <default_db__x3A__BI_audit_MSIG:ID>249811</default_db__x3A__BI_audit_MSIG:ID>
  2248. <default_db__x3A__BI_audit_MSIG:nazwa>AEGIR 4 SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  2249. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  2250. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2251. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705983" p5:primaryKey="2705983">
  2252. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705983</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2253. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2254. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705982" p5:primaryKey="2705982">
  2255. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705982</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2256. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2257. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705981" p5:primaryKey="2705981">
  2258. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705981</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2259. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.33515" p5:primaryKey="33515">
  2260. <default_db__x3A__BI_audit_KRS:ID>33515</default_db__x3A__BI_audit_KRS:ID>
  2261. <default_db__x3A__BI_audit_KRS:krs>0000047702</default_db__x3A__BI_audit_KRS:krs>
  2262. <default_db__x3A__BI_audit_KRS:nazwa>FOTA SPÓŁKA AKCYJNA W UPADŁOŚCI UKŁADOWEJ</default_db__x3A__BI_audit_KRS:nazwa>
  2263. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDYNIA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  2264. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  2265. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2266. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705980" p5:primaryKey="2705980">
  2267. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705980</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2268. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2269. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705979" p5:primaryKey="2705979"/>
  2270. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  2271. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2272. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705971" p5:primaryKey="2705971">
  2273. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705971</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2274. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.389910" p5:primaryKey="389910">
  2275. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>389910</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  2276. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705978" p5:primaryKey="2705978">
  2277. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705978</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2278. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17238" p5:primaryKey="17238">
  2279. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17238</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  2280. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>ENERGA INVEST SPÓŁKA AKCYJNA</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  2281. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  2282. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2283. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705977" p5:primaryKey="2705977">
  2284. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705977</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2285. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2286. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705976" p5:primaryKey="2705976">
  2287. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705976</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2288. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.249810" p5:primaryKey="249810">
  2289. <default_db__x3A__BI_audit_MSIG:ID>249810</default_db__x3A__BI_audit_MSIG:ID>
  2290. <default_db__x3A__BI_audit_MSIG:nazwa>AEGIR 2 SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  2291. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  2292. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2293. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705975" p5:primaryKey="2705975">
  2294. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705975</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2295. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2296. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705974" p5:primaryKey="2705974">
  2297. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705974</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2298. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2299. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705973" p5:primaryKey="2705973">
  2300. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705973</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2301. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.33515" p5:primaryKey="33515">
  2302. <default_db__x3A__BI_audit_KRS:ID>33515</default_db__x3A__BI_audit_KRS:ID>
  2303. <default_db__x3A__BI_audit_KRS:krs>0000047702</default_db__x3A__BI_audit_KRS:krs>
  2304. <default_db__x3A__BI_audit_KRS:nazwa>FOTA SPÓŁKA AKCYJNA W UPADŁOŚCI UKŁADOWEJ</default_db__x3A__BI_audit_KRS:nazwa>
  2305. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDYNIA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  2306. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  2307. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2308. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705972" p5:primaryKey="2705972">
  2309. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705972</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2310. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2311. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705971" p5:primaryKey="2705971"/>
  2312. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  2313. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2314. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705963" p5:primaryKey="2705963">
  2315. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705963</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2316. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.389909" p5:primaryKey="389909">
  2317. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>389909</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  2318. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705970" p5:primaryKey="2705970">
  2319. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705970</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2320. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17238" p5:primaryKey="17238">
  2321. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17238</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  2322. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>ENERGA INVEST SPÓŁKA AKCYJNA</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  2323. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  2324. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2325. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705969" p5:primaryKey="2705969">
  2326. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705969</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2327. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2328. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705968" p5:primaryKey="2705968">
  2329. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705968</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2330. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.249810" p5:primaryKey="249810">
  2331. <default_db__x3A__BI_audit_MSIG:ID>249810</default_db__x3A__BI_audit_MSIG:ID>
  2332. <default_db__x3A__BI_audit_MSIG:nazwa>AEGIR 2 SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  2333. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  2334. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2335. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705967" p5:primaryKey="2705967">
  2336. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705967</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2337. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2338. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705966" p5:primaryKey="2705966">
  2339. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705966</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2340. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2341. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705965" p5:primaryKey="2705965">
  2342. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705965</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2343. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.33515" p5:primaryKey="33515">
  2344. <default_db__x3A__BI_audit_KRS:ID>33515</default_db__x3A__BI_audit_KRS:ID>
  2345. <default_db__x3A__BI_audit_KRS:krs>0000047702</default_db__x3A__BI_audit_KRS:krs>
  2346. <default_db__x3A__BI_audit_KRS:nazwa>FOTA SPÓŁKA AKCYJNA W UPADŁOŚCI UKŁADOWEJ</default_db__x3A__BI_audit_KRS:nazwa>
  2347. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDYNIA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  2348. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  2349. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2350. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705964" p5:primaryKey="2705964">
  2351. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705964</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2352. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2353. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705963" p5:primaryKey="2705963"/>
  2354. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  2355. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2356. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705955" p5:primaryKey="2705955">
  2357. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705955</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2358. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.389908" p5:primaryKey="389908">
  2359. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>389908</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  2360. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705962" p5:primaryKey="2705962">
  2361. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705962</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2362. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17238" p5:primaryKey="17238">
  2363. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17238</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  2364. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>ENERGA INVEST SPÓŁKA AKCYJNA</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  2365. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  2366. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2367. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705961" p5:primaryKey="2705961">
  2368. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705961</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2369. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2370. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705960" p5:primaryKey="2705960">
  2371. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705960</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2372. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.249809" p5:primaryKey="249809">
  2373. <default_db__x3A__BI_audit_MSIG:ID>249809</default_db__x3A__BI_audit_MSIG:ID>
  2374. <default_db__x3A__BI_audit_MSIG:nazwa>AEGIR 1 SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  2375. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  2376. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2377. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705959" p5:primaryKey="2705959">
  2378. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705959</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2379. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2380. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705958" p5:primaryKey="2705958">
  2381. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705958</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2382. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2383. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705957" p5:primaryKey="2705957">
  2384. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705957</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2385. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.33515" p5:primaryKey="33515">
  2386. <default_db__x3A__BI_audit_KRS:ID>33515</default_db__x3A__BI_audit_KRS:ID>
  2387. <default_db__x3A__BI_audit_KRS:krs>0000047702</default_db__x3A__BI_audit_KRS:krs>
  2388. <default_db__x3A__BI_audit_KRS:nazwa>FOTA SPÓŁKA AKCYJNA W UPADŁOŚCI UKŁADOWEJ</default_db__x3A__BI_audit_KRS:nazwa>
  2389. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDYNIA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  2390. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  2391. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2392. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705956" p5:primaryKey="2705956">
  2393. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705956</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2394. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2395. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705955" p5:primaryKey="2705955"/>
  2396. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  2397. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2398. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705947" p5:primaryKey="2705947">
  2399. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705947</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2400. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.389907" p5:primaryKey="389907">
  2401. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>389907</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  2402. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705954" p5:primaryKey="2705954">
  2403. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705954</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2404. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17238" p5:primaryKey="17238">
  2405. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17238</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  2406. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>ENERGA INVEST SPÓŁKA AKCYJNA</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  2407. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  2408. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2409. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705953" p5:primaryKey="2705953">
  2410. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705953</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2411. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2412. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705952" p5:primaryKey="2705952">
  2413. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705952</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2414. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.249699" p5:primaryKey="249699">
  2415. <default_db__x3A__BI_audit_MSIG:ID>249699</default_db__x3A__BI_audit_MSIG:ID>
  2416. <default_db__x3A__BI_audit_MSIG:nazwa>AEGIR 3 SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  2417. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  2418. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2419. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705951" p5:primaryKey="2705951">
  2420. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705951</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2421. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2422. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705950" p5:primaryKey="2705950">
  2423. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705950</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2424. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2425. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705949" p5:primaryKey="2705949">
  2426. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705949</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2427. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.33515" p5:primaryKey="33515">
  2428. <default_db__x3A__BI_audit_KRS:ID>33515</default_db__x3A__BI_audit_KRS:ID>
  2429. <default_db__x3A__BI_audit_KRS:krs>0000047702</default_db__x3A__BI_audit_KRS:krs>
  2430. <default_db__x3A__BI_audit_KRS:nazwa>FOTA SPÓŁKA AKCYJNA W UPADŁOŚCI UKŁADOWEJ</default_db__x3A__BI_audit_KRS:nazwa>
  2431. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDYNIA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  2432. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  2433. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2434. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705948" p5:primaryKey="2705948">
  2435. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705948</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2436. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2437. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705947" p5:primaryKey="2705947"/>
  2438. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  2439. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2440. <p5:links>
  2441. <p5:next p5:typeName="default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object" p5:backRefNS="default_db/BI_audit_ENERGA_PRACOWNICY/BI_audit_ENERGA_PRACOWNICY" p5:backRefPK="467" p5:startIndex="10">https://biuro.biall-net.pl/dev-pl/se-projects/bocian/SE//wfs-data.php/default_db/?SERVICE=WFS&amp;VERSION=1.0.0&amp;TYPENAME=default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object&amp;REQUEST=GetFeature&amp;backRefNS=default_db/BI_audit_ENERGA_PRACOWNICY/BI_audit_ENERGA_PRACOWNICY&amp;backRefPK=467&amp;backRefField=default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object&amp;maxFeatures=10&amp;startIndex=10</p5:next>
  2442. </p5:links>
  2443. </default_db__x3A__BI_audit_ENERGA_PRACOWNICY:BI_audit_ENERGA_PRACOWNICY>
  2444. </gml:featureMember>
  2445. <gml:featureMember>
  2446. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:BI_audit_ENERGA_PRACOWNICY fid="BI_audit_ENERGA_PRACOWNICY.466" p5:primaryKey="466">
  2447. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:ID>466</default_db__x3A__BI_audit_ENERGA_PRACOWNICY:ID>
  2448. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:imiona>PAWEŁ BOGDAN</default_db__x3A__BI_audit_ENERGA_PRACOWNICY:imiona>
  2449. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:nazwisko>ADAMOWICZ</default_db__x3A__BI_audit_ENERGA_PRACOWNICY:nazwisko>
  2450. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705888" p5:primaryKey="2705888">
  2451. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705888</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2452. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.389899" p5:primaryKey="389899">
  2453. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>389899</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  2454. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705893" p5:primaryKey="2705893">
  2455. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705893</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2456. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17427" p5:primaryKey="17427">
  2457. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17427</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  2458. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>FUNDACJA ROZWOJU UNIWERSYTETU GDAŃSKIEGO</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  2459. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  2460. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2461. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705892" p5:primaryKey="2705892">
  2462. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705892</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2463. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.32085" p5:primaryKey="32085">
  2464. <default_db__x3A__BI_audit_KRS:ID>32085</default_db__x3A__BI_audit_KRS:ID>
  2465. <default_db__x3A__BI_audit_KRS:krs>0000045713</default_db__x3A__BI_audit_KRS:krs>
  2466. <default_db__x3A__BI_audit_KRS:nazwa>FUNDACJA ROZWOJU UNIWERSYTETU GDAŃSKIEGO</default_db__x3A__BI_audit_KRS:nazwa>
  2467. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  2468. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  2469. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2470. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705891" p5:primaryKey="2705891">
  2471. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705891</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2472. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2473. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705890" p5:primaryKey="2705890">
  2474. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705890</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2475. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.302971" p5:primaryKey="302971">
  2476. <default_db__x3A__BI_audit_KRS:ID>302971</default_db__x3A__BI_audit_KRS:ID>
  2477. <default_db__x3A__BI_audit_KRS:krs>0000398498</default_db__x3A__BI_audit_KRS:krs>
  2478. <default_db__x3A__BI_audit_KRS:nazwa>OBSZAR METROPOLITALNY GDAŃSK-GDYNIA-SOPOT</default_db__x3A__BI_audit_KRS:nazwa>
  2479. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  2480. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  2481. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2482. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705889" p5:primaryKey="2705889">
  2483. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705889</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2484. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2485. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705888" p5:primaryKey="2705888"/>
  2486. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  2487. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2488. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705880" p5:primaryKey="2705880">
  2489. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705880</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2490. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.389898" p5:primaryKey="389898">
  2491. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>389898</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  2492. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705887" p5:primaryKey="2705887">
  2493. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705887</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2494. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17362" p5:primaryKey="17362">
  2495. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17362</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  2496. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>&quot;ZWIĄZEK MIAST I GMIN MORSKICH&quot;</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  2497. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  2498. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2499. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705886" p5:primaryKey="2705886">
  2500. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705886</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2501. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.31812" p5:primaryKey="31812">
  2502. <default_db__x3A__BI_audit_KRS:ID>31812</default_db__x3A__BI_audit_KRS:ID>
  2503. <default_db__x3A__BI_audit_KRS:krs>0000045355</default_db__x3A__BI_audit_KRS:krs>
  2504. <default_db__x3A__BI_audit_KRS:nazwa>&quot;ZWIĄZEK MIAST I GMIN MORSKICH&quot;</default_db__x3A__BI_audit_KRS:nazwa>
  2505. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  2506. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  2507. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2508. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705885" p5:primaryKey="2705885">
  2509. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705885</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2510. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2511. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705884" p5:primaryKey="2705884">
  2512. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705884</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2513. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.213143" p5:primaryKey="213143">
  2514. <default_db__x3A__BI_audit_KRS:ID>213143</default_db__x3A__BI_audit_KRS:ID>
  2515. <default_db__x3A__BI_audit_KRS:krs>0000290357</default_db__x3A__BI_audit_KRS:krs>
  2516. <default_db__x3A__BI_audit_KRS:nazwa>STOWARZYSZENIE &quot;STREFA TURYSTYCZNA ŻARNOWIEC&quot;</default_db__x3A__BI_audit_KRS:nazwa>
  2517. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GNIEWINO</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  2518. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  2519. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2520. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705883" p5:primaryKey="2705883">
  2521. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705883</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2522. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2523. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705882" p5:primaryKey="2705882">
  2524. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705882</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2525. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.302971" p5:primaryKey="302971">
  2526. <default_db__x3A__BI_audit_KRS:ID>302971</default_db__x3A__BI_audit_KRS:ID>
  2527. <default_db__x3A__BI_audit_KRS:krs>0000398498</default_db__x3A__BI_audit_KRS:krs>
  2528. <default_db__x3A__BI_audit_KRS:nazwa>OBSZAR METROPOLITALNY GDAŃSK-GDYNIA-SOPOT</default_db__x3A__BI_audit_KRS:nazwa>
  2529. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  2530. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  2531. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2532. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705881" p5:primaryKey="2705881">
  2533. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705881</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2534. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2535. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705880" p5:primaryKey="2705880"/>
  2536. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  2537. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2538. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705872" p5:primaryKey="2705872">
  2539. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705872</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2540. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.389897" p5:primaryKey="389897">
  2541. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>389897</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  2542. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705879" p5:primaryKey="2705879">
  2543. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705879</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2544. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17467" p5:primaryKey="17467">
  2545. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17467</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  2546. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>&quot;TREFL GDAŃSK&quot; SPÓŁKA AKCYJNA</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  2547. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  2548. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2549. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705878" p5:primaryKey="2705878">
  2550. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705878</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2551. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.179771" p5:primaryKey="179771">
  2552. <default_db__x3A__BI_audit_KRS:ID>179771</default_db__x3A__BI_audit_KRS:ID>
  2553. <default_db__x3A__BI_audit_KRS:krs>0000247386</default_db__x3A__BI_audit_KRS:krs>
  2554. <default_db__x3A__BI_audit_KRS:nazwa>&quot;TREFL GDAŃSK&quot; SPÓŁKA AKCYJNA</default_db__x3A__BI_audit_KRS:nazwa>
  2555. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  2556. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  2557. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2558. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705877" p5:primaryKey="2705877">
  2559. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705877</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2560. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2561. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705876" p5:primaryKey="2705876">
  2562. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705876</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2563. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.219336" p5:primaryKey="219336">
  2564. <default_db__x3A__BI_audit_KRS:ID>219336</default_db__x3A__BI_audit_KRS:ID>
  2565. <default_db__x3A__BI_audit_KRS:krs>0000298251</default_db__x3A__BI_audit_KRS:krs>
  2566. <default_db__x3A__BI_audit_KRS:nazwa>ATOM TREFL SOPOT SPÓŁKA AKCYJNA</default_db__x3A__BI_audit_KRS:nazwa>
  2567. <default_db__x3A__BI_audit_KRS:S_miejscowosc>SOPOT</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  2568. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  2569. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2570. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705875" p5:primaryKey="2705875">
  2571. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705875</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2572. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2573. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705874" p5:primaryKey="2705874">
  2574. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705874</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2575. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.302971" p5:primaryKey="302971">
  2576. <default_db__x3A__BI_audit_KRS:ID>302971</default_db__x3A__BI_audit_KRS:ID>
  2577. <default_db__x3A__BI_audit_KRS:krs>0000398498</default_db__x3A__BI_audit_KRS:krs>
  2578. <default_db__x3A__BI_audit_KRS:nazwa>OBSZAR METROPOLITALNY GDAŃSK-GDYNIA-SOPOT</default_db__x3A__BI_audit_KRS:nazwa>
  2579. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  2580. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  2581. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2582. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705873" p5:primaryKey="2705873">
  2583. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705873</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2584. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2585. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705872" p5:primaryKey="2705872"/>
  2586. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  2587. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2588. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705864" p5:primaryKey="2705864">
  2589. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705864</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2590. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.389896" p5:primaryKey="389896">
  2591. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>389896</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  2592. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705871" p5:primaryKey="2705871">
  2593. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705871</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2594. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17467" p5:primaryKey="17467">
  2595. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17467</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  2596. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>&quot;TREFL GDAŃSK&quot; SPÓŁKA AKCYJNA</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  2597. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  2598. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2599. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705870" p5:primaryKey="2705870">
  2600. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705870</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2601. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.179771" p5:primaryKey="179771">
  2602. <default_db__x3A__BI_audit_KRS:ID>179771</default_db__x3A__BI_audit_KRS:ID>
  2603. <default_db__x3A__BI_audit_KRS:krs>0000247386</default_db__x3A__BI_audit_KRS:krs>
  2604. <default_db__x3A__BI_audit_KRS:nazwa>&quot;TREFL GDAŃSK&quot; SPÓŁKA AKCYJNA</default_db__x3A__BI_audit_KRS:nazwa>
  2605. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  2606. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  2607. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2608. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705869" p5:primaryKey="2705869">
  2609. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705869</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2610. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2611. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705868" p5:primaryKey="2705868">
  2612. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705868</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2613. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.219336" p5:primaryKey="219336">
  2614. <default_db__x3A__BI_audit_KRS:ID>219336</default_db__x3A__BI_audit_KRS:ID>
  2615. <default_db__x3A__BI_audit_KRS:krs>0000298251</default_db__x3A__BI_audit_KRS:krs>
  2616. <default_db__x3A__BI_audit_KRS:nazwa>ATOM TREFL SOPOT SPÓŁKA AKCYJNA</default_db__x3A__BI_audit_KRS:nazwa>
  2617. <default_db__x3A__BI_audit_KRS:S_miejscowosc>SOPOT</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  2618. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  2619. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2620. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705867" p5:primaryKey="2705867">
  2621. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705867</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2622. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2623. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705866" p5:primaryKey="2705866">
  2624. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705866</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2625. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.302971" p5:primaryKey="302971">
  2626. <default_db__x3A__BI_audit_KRS:ID>302971</default_db__x3A__BI_audit_KRS:ID>
  2627. <default_db__x3A__BI_audit_KRS:krs>0000398498</default_db__x3A__BI_audit_KRS:krs>
  2628. <default_db__x3A__BI_audit_KRS:nazwa>OBSZAR METROPOLITALNY GDAŃSK-GDYNIA-SOPOT</default_db__x3A__BI_audit_KRS:nazwa>
  2629. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  2630. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  2631. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2632. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705865" p5:primaryKey="2705865">
  2633. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705865</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2634. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2635. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705864" p5:primaryKey="2705864"/>
  2636. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  2637. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2638. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705856" p5:primaryKey="2705856">
  2639. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705856</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2640. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.389895" p5:primaryKey="389895">
  2641. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>389895</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  2642. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705863" p5:primaryKey="2705863">
  2643. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705863</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2644. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17298" p5:primaryKey="17298">
  2645. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17298</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  2646. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>ENERGA ELEKTROWNIE OSTROŁĘKA SPÓŁKA AKCYJNA</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  2647. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  2648. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2649. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705862" p5:primaryKey="2705862">
  2650. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705862</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2651. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.43624" p5:primaryKey="43624">
  2652. <default_db__x3A__BI_audit_KRS:ID>43624</default_db__x3A__BI_audit_KRS:ID>
  2653. <default_db__x3A__BI_audit_KRS:krs>0000061837</default_db__x3A__BI_audit_KRS:krs>
  2654. <default_db__x3A__BI_audit_KRS:nazwa>ENERGA ELEKTROWNIE OSTROŁĘKA SPÓŁKA AKCYJNA</default_db__x3A__BI_audit_KRS:nazwa>
  2655. <default_db__x3A__BI_audit_KRS:S_miejscowosc>OSTROŁĘKA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  2656. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  2657. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2658. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705861" p5:primaryKey="2705861">
  2659. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705861</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2660. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2661. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705860" p5:primaryKey="2705860">
  2662. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705860</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2663. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.53237" p5:primaryKey="53237">
  2664. <default_db__x3A__BI_audit_KRS:ID>53237</default_db__x3A__BI_audit_KRS:ID>
  2665. <default_db__x3A__BI_audit_KRS:krs>0000075422</default_db__x3A__BI_audit_KRS:krs>
  2666. <default_db__x3A__BI_audit_KRS:nazwa>PORT LOTNICZY GDAŃSK SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  2667. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  2668. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  2669. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2670. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705859" p5:primaryKey="2705859">
  2671. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705859</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2672. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2673. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705858" p5:primaryKey="2705858">
  2674. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705858</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2675. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.302971" p5:primaryKey="302971">
  2676. <default_db__x3A__BI_audit_KRS:ID>302971</default_db__x3A__BI_audit_KRS:ID>
  2677. <default_db__x3A__BI_audit_KRS:krs>0000398498</default_db__x3A__BI_audit_KRS:krs>
  2678. <default_db__x3A__BI_audit_KRS:nazwa>OBSZAR METROPOLITALNY GDAŃSK-GDYNIA-SOPOT</default_db__x3A__BI_audit_KRS:nazwa>
  2679. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  2680. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  2681. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2682. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705857" p5:primaryKey="2705857">
  2683. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705857</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2684. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2685. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705856" p5:primaryKey="2705856"/>
  2686. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  2687. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2688. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705848" p5:primaryKey="2705848">
  2689. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705848</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2690. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.389894" p5:primaryKey="389894">
  2691. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>389894</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  2692. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705855" p5:primaryKey="2705855">
  2693. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705855</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2694. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17296" p5:primaryKey="17296">
  2695. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17296</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  2696. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>PKP SZYBKA KOLEJ MIEJSKA W TRÓJMIEŚCIE SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  2697. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  2698. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2699. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705854" p5:primaryKey="2705854">
  2700. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705854</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2701. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.54105" p5:primaryKey="54105">
  2702. <default_db__x3A__BI_audit_KRS:ID>54105</default_db__x3A__BI_audit_KRS:ID>
  2703. <default_db__x3A__BI_audit_KRS:krs>0000076705</default_db__x3A__BI_audit_KRS:krs>
  2704. <default_db__x3A__BI_audit_KRS:nazwa>PKP SZYBKA KOLEJ MIEJSKA W TRÓJMIEŚCIE SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  2705. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDYNIA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  2706. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  2707. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2708. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705853" p5:primaryKey="2705853">
  2709. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705853</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2710. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2711. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705852" p5:primaryKey="2705852">
  2712. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705852</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2713. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.53237" p5:primaryKey="53237">
  2714. <default_db__x3A__BI_audit_KRS:ID>53237</default_db__x3A__BI_audit_KRS:ID>
  2715. <default_db__x3A__BI_audit_KRS:krs>0000075422</default_db__x3A__BI_audit_KRS:krs>
  2716. <default_db__x3A__BI_audit_KRS:nazwa>PORT LOTNICZY GDAŃSK SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  2717. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  2718. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  2719. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2720. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705851" p5:primaryKey="2705851">
  2721. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705851</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2722. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2723. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705850" p5:primaryKey="2705850">
  2724. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705850</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2725. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.302971" p5:primaryKey="302971">
  2726. <default_db__x3A__BI_audit_KRS:ID>302971</default_db__x3A__BI_audit_KRS:ID>
  2727. <default_db__x3A__BI_audit_KRS:krs>0000398498</default_db__x3A__BI_audit_KRS:krs>
  2728. <default_db__x3A__BI_audit_KRS:nazwa>OBSZAR METROPOLITALNY GDAŃSK-GDYNIA-SOPOT</default_db__x3A__BI_audit_KRS:nazwa>
  2729. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  2730. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  2731. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2732. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705849" p5:primaryKey="2705849">
  2733. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705849</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2734. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2735. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705848" p5:primaryKey="2705848"/>
  2736. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  2737. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2738. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705842" p5:primaryKey="2705842">
  2739. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705842</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2740. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.389893" p5:primaryKey="389893">
  2741. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>389893</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  2742. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705847" p5:primaryKey="2705847">
  2743. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705847</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2744. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17427" p5:primaryKey="17427">
  2745. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17427</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  2746. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>FUNDACJA ROZWOJU UNIWERSYTETU GDAŃSKIEGO</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  2747. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  2748. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2749. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705846" p5:primaryKey="2705846">
  2750. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705846</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2751. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.32085" p5:primaryKey="32085">
  2752. <default_db__x3A__BI_audit_KRS:ID>32085</default_db__x3A__BI_audit_KRS:ID>
  2753. <default_db__x3A__BI_audit_KRS:krs>0000045713</default_db__x3A__BI_audit_KRS:krs>
  2754. <default_db__x3A__BI_audit_KRS:nazwa>FUNDACJA ROZWOJU UNIWERSYTETU GDAŃSKIEGO</default_db__x3A__BI_audit_KRS:nazwa>
  2755. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  2756. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  2757. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2758. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705845" p5:primaryKey="2705845">
  2759. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705845</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2760. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2761. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705844" p5:primaryKey="2705844">
  2762. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705844</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2763. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.302971" p5:primaryKey="302971">
  2764. <default_db__x3A__BI_audit_KRS:ID>302971</default_db__x3A__BI_audit_KRS:ID>
  2765. <default_db__x3A__BI_audit_KRS:krs>0000398498</default_db__x3A__BI_audit_KRS:krs>
  2766. <default_db__x3A__BI_audit_KRS:nazwa>OBSZAR METROPOLITALNY GDAŃSK-GDYNIA-SOPOT</default_db__x3A__BI_audit_KRS:nazwa>
  2767. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  2768. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  2769. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2770. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705843" p5:primaryKey="2705843">
  2771. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705843</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2772. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2773. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705842" p5:primaryKey="2705842"/>
  2774. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  2775. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2776. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705834" p5:primaryKey="2705834">
  2777. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705834</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2778. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.389892" p5:primaryKey="389892">
  2779. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>389892</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  2780. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705841" p5:primaryKey="2705841">
  2781. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705841</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2782. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17362" p5:primaryKey="17362">
  2783. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17362</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  2784. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>&quot;ZWIĄZEK MIAST I GMIN MORSKICH&quot;</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  2785. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  2786. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2787. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705840" p5:primaryKey="2705840">
  2788. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705840</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2789. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.31812" p5:primaryKey="31812">
  2790. <default_db__x3A__BI_audit_KRS:ID>31812</default_db__x3A__BI_audit_KRS:ID>
  2791. <default_db__x3A__BI_audit_KRS:krs>0000045355</default_db__x3A__BI_audit_KRS:krs>
  2792. <default_db__x3A__BI_audit_KRS:nazwa>&quot;ZWIĄZEK MIAST I GMIN MORSKICH&quot;</default_db__x3A__BI_audit_KRS:nazwa>
  2793. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  2794. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  2795. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2796. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705839" p5:primaryKey="2705839">
  2797. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705839</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2798. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2799. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705838" p5:primaryKey="2705838">
  2800. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705838</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2801. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.232698" p5:primaryKey="232698">
  2802. <default_db__x3A__BI_audit_KRS:ID>232698</default_db__x3A__BI_audit_KRS:ID>
  2803. <default_db__x3A__BI_audit_KRS:krs>0000315191</default_db__x3A__BI_audit_KRS:krs>
  2804. <default_db__x3A__BI_audit_KRS:nazwa>ŻUŁAWSKA LOKALNA GRUPA DZIAŁANIA</default_db__x3A__BI_audit_KRS:nazwa>
  2805. <default_db__x3A__BI_audit_KRS:S_miejscowosc>NOWY DWÓR GDAŃSKI</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  2806. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  2807. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2808. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705837" p5:primaryKey="2705837">
  2809. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705837</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2810. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2811. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705836" p5:primaryKey="2705836">
  2812. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705836</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2813. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.302971" p5:primaryKey="302971">
  2814. <default_db__x3A__BI_audit_KRS:ID>302971</default_db__x3A__BI_audit_KRS:ID>
  2815. <default_db__x3A__BI_audit_KRS:krs>0000398498</default_db__x3A__BI_audit_KRS:krs>
  2816. <default_db__x3A__BI_audit_KRS:nazwa>OBSZAR METROPOLITALNY GDAŃSK-GDYNIA-SOPOT</default_db__x3A__BI_audit_KRS:nazwa>
  2817. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  2818. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  2819. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2820. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705835" p5:primaryKey="2705835">
  2821. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705835</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2822. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2823. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705834" p5:primaryKey="2705834"/>
  2824. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  2825. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2826. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705826" p5:primaryKey="2705826">
  2827. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705826</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2828. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.389891" p5:primaryKey="389891">
  2829. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>389891</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  2830. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705833" p5:primaryKey="2705833">
  2831. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705833</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2832. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17461" p5:primaryKey="17461">
  2833. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17461</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  2834. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>OHOTNICZA STRAŻ POŻARNA W NOWYM DWORZE GDAŃSKIM</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  2835. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  2836. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2837. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705832" p5:primaryKey="2705832">
  2838. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705832</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2839. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.148620" p5:primaryKey="148620">
  2840. <default_db__x3A__BI_audit_KRS:ID>148620</default_db__x3A__BI_audit_KRS:ID>
  2841. <default_db__x3A__BI_audit_KRS:krs>0000206738</default_db__x3A__BI_audit_KRS:krs>
  2842. <default_db__x3A__BI_audit_KRS:nazwa>OHOTNICZA STRAŻ POŻARNA W NOWYM DWORZE GDAŃSKIM</default_db__x3A__BI_audit_KRS:nazwa>
  2843. <default_db__x3A__BI_audit_KRS:S_miejscowosc>NOWY DWÓR GDAŃSKI</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  2844. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  2845. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2846. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705831" p5:primaryKey="2705831">
  2847. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705831</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2848. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2849. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705830" p5:primaryKey="2705830">
  2850. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705830</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2851. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.6253" p5:primaryKey="6253">
  2852. <default_db__x3A__BI_audit_KRS:ID>6253</default_db__x3A__BI_audit_KRS:ID>
  2853. <default_db__x3A__BI_audit_KRS:krs>0000010042</default_db__x3A__BI_audit_KRS:krs>
  2854. <default_db__x3A__BI_audit_KRS:nazwa>LUDOWY KLUB SPORTOWY &quot;ŻUŁAWY&quot; W NOWYM DWORZE GDAŃSKIM</default_db__x3A__BI_audit_KRS:nazwa>
  2855. <default_db__x3A__BI_audit_KRS:S_miejscowosc>NOWY DWÓR GDAŃSKI</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  2856. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  2857. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2858. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705829" p5:primaryKey="2705829">
  2859. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705829</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2860. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2861. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705828" p5:primaryKey="2705828">
  2862. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705828</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2863. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.302971" p5:primaryKey="302971">
  2864. <default_db__x3A__BI_audit_KRS:ID>302971</default_db__x3A__BI_audit_KRS:ID>
  2865. <default_db__x3A__BI_audit_KRS:krs>0000398498</default_db__x3A__BI_audit_KRS:krs>
  2866. <default_db__x3A__BI_audit_KRS:nazwa>OBSZAR METROPOLITALNY GDAŃSK-GDYNIA-SOPOT</default_db__x3A__BI_audit_KRS:nazwa>
  2867. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  2868. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  2869. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2870. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705827" p5:primaryKey="2705827">
  2871. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705827</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2872. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2873. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705826" p5:primaryKey="2705826"/>
  2874. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  2875. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2876. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705821" p5:primaryKey="2705821">
  2877. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705821</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2878. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.389890" p5:primaryKey="389890">
  2879. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>389890</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  2880. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705825" p5:primaryKey="2705825">
  2881. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705825</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2882. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17306" p5:primaryKey="17306">
  2883. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17306</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  2884. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>STOWARZYSZENIE MARATONU &quot;SOLIDARNOŚĆ&quot;</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  2885. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  2886. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2887. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705824" p5:primaryKey="2705824">
  2888. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705824</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2889. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2890. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705823" p5:primaryKey="2705823">
  2891. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705823</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2892. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.57918" p5:primaryKey="57918">
  2893. <default_db__x3A__BI_audit_KRS:ID>57918</default_db__x3A__BI_audit_KRS:ID>
  2894. <default_db__x3A__BI_audit_KRS:krs>0000082079</default_db__x3A__BI_audit_KRS:krs>
  2895. <default_db__x3A__BI_audit_KRS:nazwa>FUNDACJA CENTRUM SOLIDARNOŚCI</default_db__x3A__BI_audit_KRS:nazwa>
  2896. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  2897. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  2898. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2899. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705822" p5:primaryKey="2705822">
  2900. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2705822</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2901. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2902. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2705821" p5:primaryKey="2705821"/>
  2903. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  2904. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2905. <p5:links>
  2906. <p5:next p5:typeName="default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object" p5:backRefNS="default_db/BI_audit_ENERGA_PRACOWNICY/BI_audit_ENERGA_PRACOWNICY" p5:backRefPK="466" p5:startIndex="10">https://biuro.biall-net.pl/dev-pl/se-projects/bocian/SE//wfs-data.php/default_db/?SERVICE=WFS&amp;VERSION=1.0.0&amp;TYPENAME=default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object&amp;REQUEST=GetFeature&amp;backRefNS=default_db/BI_audit_ENERGA_PRACOWNICY/BI_audit_ENERGA_PRACOWNICY&amp;backRefPK=466&amp;backRefField=default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object&amp;maxFeatures=10&amp;startIndex=10</p5:next>
  2907. </p5:links>
  2908. </default_db__x3A__BI_audit_ENERGA_PRACOWNICY:BI_audit_ENERGA_PRACOWNICY>
  2909. </gml:featureMember>
  2910. <gml:featureMember>
  2911. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:BI_audit_ENERGA_PRACOWNICY fid="BI_audit_ENERGA_PRACOWNICY.465" p5:primaryKey="465">
  2912. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:ID>465</default_db__x3A__BI_audit_ENERGA_PRACOWNICY:ID>
  2913. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:imiona>ŁUKASZ KAROL</default_db__x3A__BI_audit_ENERGA_PRACOWNICY:imiona>
  2914. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:nazwisko>BIEDROŃSKI</default_db__x3A__BI_audit_ENERGA_PRACOWNICY:nazwisko>
  2915. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704455" p5:primaryKey="2704455">
  2916. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704455</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2917. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.389710" p5:primaryKey="389710">
  2918. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>389710</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  2919. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704462" p5:primaryKey="2704462">
  2920. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704462</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2921. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17471" p5:primaryKey="17471">
  2922. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17471</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  2923. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>EDF POLSKA SPÓŁKA AKCYJNA</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  2924. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  2925. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2926. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704461" p5:primaryKey="2704461">
  2927. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704461</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2928. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2929. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704460" p5:primaryKey="2704460">
  2930. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704460</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2931. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.84600" p5:primaryKey="84600">
  2932. <default_db__x3A__BI_audit_MSIG:ID>84600</default_db__x3A__BI_audit_MSIG:ID>
  2933. <default_db__x3A__BI_audit_MSIG:nazwa>ERTEL SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  2934. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  2935. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2936. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704459" p5:primaryKey="2704459">
  2937. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704459</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2938. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.91683" p5:primaryKey="91683">
  2939. <default_db__x3A__BI_audit_KRS:ID>91683</default_db__x3A__BI_audit_KRS:ID>
  2940. <default_db__x3A__BI_audit_KRS:krs>0000129892</default_db__x3A__BI_audit_KRS:krs>
  2941. <default_db__x3A__BI_audit_KRS:nazwa>ERTEL SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  2942. <default_db__x3A__BI_audit_KRS:S_miejscowosc>RYBNIK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  2943. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  2944. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2945. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704458" p5:primaryKey="2704458">
  2946. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704458</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2947. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2948. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704457" p5:primaryKey="2704457">
  2949. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704457</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2950. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.415307" p5:primaryKey="415307">
  2951. <default_db__x3A__BI_audit_KRS:ID>415307</default_db__x3A__BI_audit_KRS:ID>
  2952. <default_db__x3A__BI_audit_KRS:krs>0000524435</default_db__x3A__BI_audit_KRS:krs>
  2953. <default_db__x3A__BI_audit_KRS:nazwa>FUNDACJA NASZA WIZJA</default_db__x3A__BI_audit_KRS:nazwa>
  2954. <default_db__x3A__BI_audit_KRS:S_miejscowosc>WARSZAWA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  2955. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  2956. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2957. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704456" p5:primaryKey="2704456">
  2958. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704456</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2959. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2960. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704455" p5:primaryKey="2704455"/>
  2961. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  2962. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2963. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670093" p5:primaryKey="2670093">
  2964. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670093</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2965. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.385080" p5:primaryKey="385080">
  2966. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>385080</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  2967. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670100" p5:primaryKey="2670100">
  2968. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670100</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2969. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17471" p5:primaryKey="17471">
  2970. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17471</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  2971. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>EDF POLSKA SPÓŁKA AKCYJNA</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  2972. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  2973. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2974. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670099" p5:primaryKey="2670099">
  2975. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670099</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2976. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2977. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670098" p5:primaryKey="2670098">
  2978. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670098</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2979. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.84600" p5:primaryKey="84600">
  2980. <default_db__x3A__BI_audit_MSIG:ID>84600</default_db__x3A__BI_audit_MSIG:ID>
  2981. <default_db__x3A__BI_audit_MSIG:nazwa>ERTEL SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  2982. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  2983. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2984. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670097" p5:primaryKey="2670097">
  2985. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670097</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2986. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.91683" p5:primaryKey="91683">
  2987. <default_db__x3A__BI_audit_KRS:ID>91683</default_db__x3A__BI_audit_KRS:ID>
  2988. <default_db__x3A__BI_audit_KRS:krs>0000129892</default_db__x3A__BI_audit_KRS:krs>
  2989. <default_db__x3A__BI_audit_KRS:nazwa>ERTEL SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  2990. <default_db__x3A__BI_audit_KRS:S_miejscowosc>RYBNIK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  2991. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  2992. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2993. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670096" p5:primaryKey="2670096">
  2994. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670096</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2995. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  2996. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670095" p5:primaryKey="2670095">
  2997. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670095</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  2998. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.415307" p5:primaryKey="415307">
  2999. <default_db__x3A__BI_audit_KRS:ID>415307</default_db__x3A__BI_audit_KRS:ID>
  3000. <default_db__x3A__BI_audit_KRS:krs>0000524435</default_db__x3A__BI_audit_KRS:krs>
  3001. <default_db__x3A__BI_audit_KRS:nazwa>FUNDACJA NASZA WIZJA</default_db__x3A__BI_audit_KRS:nazwa>
  3002. <default_db__x3A__BI_audit_KRS:S_miejscowosc>WARSZAWA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  3003. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  3004. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3005. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670094" p5:primaryKey="2670094">
  3006. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670094</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3007. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3008. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670093" p5:primaryKey="2670093"/>
  3009. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  3010. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3011. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670088" p5:primaryKey="2670088">
  3012. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670088</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3013. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.385079" p5:primaryKey="385079">
  3014. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>385079</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  3015. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670092" p5:primaryKey="2670092">
  3016. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670092</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3017. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.64" p5:primaryKey="64">
  3018. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>64</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  3019. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BIPROSTAL S.A. FIRMA INŻYNIERYJNO-KONSULTINGOWA</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  3020. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  3021. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3022. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670091" p5:primaryKey="2670091">
  3023. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670091</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3024. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3025. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670090" p5:primaryKey="2670090">
  3026. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670090</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3027. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.232282" p5:primaryKey="232282">
  3028. <default_db__x3A__BI_audit_KRS:ID>232282</default_db__x3A__BI_audit_KRS:ID>
  3029. <default_db__x3A__BI_audit_KRS:krs>0000314669</default_db__x3A__BI_audit_KRS:krs>
  3030. <default_db__x3A__BI_audit_KRS:nazwa>CONNECTED SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  3031. <default_db__x3A__BI_audit_KRS:S_miejscowosc>KRAKÓW</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  3032. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  3033. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3034. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670089" p5:primaryKey="2670089">
  3035. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670089</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3036. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3037. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670088" p5:primaryKey="2670088"/>
  3038. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  3039. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3040. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670082" p5:primaryKey="2670082">
  3041. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670082</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3042. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.385078" p5:primaryKey="385078">
  3043. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>385078</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  3044. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670087" p5:primaryKey="2670087">
  3045. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670087</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3046. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.64" p5:primaryKey="64">
  3047. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>64</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  3048. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BIPROSTAL S.A. FIRMA INŻYNIERYJNO-KONSULTINGOWA</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  3049. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  3050. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3051. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670086" p5:primaryKey="2670086">
  3052. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670086</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3053. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.79454" p5:primaryKey="79454">
  3054. <default_db__x3A__BI_audit_KRS:ID>79454</default_db__x3A__BI_audit_KRS:ID>
  3055. <default_db__x3A__BI_audit_KRS:krs>0000112736</default_db__x3A__BI_audit_KRS:krs>
  3056. <default_db__x3A__BI_audit_KRS:nazwa>BIPROSTAL SPÓŁKA AKCYJNA FIRMA INŻYNIERYJNO-KONSULTINGOWA</default_db__x3A__BI_audit_KRS:nazwa>
  3057. <default_db__x3A__BI_audit_KRS:S_miejscowosc>KRAKÓW</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  3058. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  3059. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3060. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670085" p5:primaryKey="2670085">
  3061. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670085</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3062. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3063. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670084" p5:primaryKey="2670084">
  3064. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670084</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3065. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.232282" p5:primaryKey="232282">
  3066. <default_db__x3A__BI_audit_KRS:ID>232282</default_db__x3A__BI_audit_KRS:ID>
  3067. <default_db__x3A__BI_audit_KRS:krs>0000314669</default_db__x3A__BI_audit_KRS:krs>
  3068. <default_db__x3A__BI_audit_KRS:nazwa>CONNECTED SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  3069. <default_db__x3A__BI_audit_KRS:S_miejscowosc>KRAKÓW</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  3070. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  3071. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3072. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670083" p5:primaryKey="2670083">
  3073. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670083</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3074. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3075. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670082" p5:primaryKey="2670082"/>
  3076. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  3077. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3078. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670075" p5:primaryKey="2670075">
  3079. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670075</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3080. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.385077" p5:primaryKey="385077">
  3081. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>385077</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  3082. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670081" p5:primaryKey="2670081">
  3083. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670081</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3084. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.64" p5:primaryKey="64">
  3085. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>64</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  3086. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BIPROSTAL S.A. FIRMA INŻYNIERYJNO-KONSULTINGOWA</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  3087. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  3088. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3089. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670080" p5:primaryKey="2670080">
  3090. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670080</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3091. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3092. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670079" p5:primaryKey="2670079">
  3093. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670079</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3094. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.272532" p5:primaryKey="272532">
  3095. <default_db__x3A__BI_audit_KRS:ID>272532</default_db__x3A__BI_audit_KRS:ID>
  3096. <default_db__x3A__BI_audit_KRS:krs>0000363112</default_db__x3A__BI_audit_KRS:krs>
  3097. <default_db__x3A__BI_audit_KRS:nazwa>MAVIA SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  3098. <default_db__x3A__BI_audit_KRS:S_miejscowosc>KRAKÓW</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  3099. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  3100. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3101. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670078" p5:primaryKey="2670078">
  3102. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670078</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3103. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3104. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670077" p5:primaryKey="2670077">
  3105. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670077</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3106. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.232282" p5:primaryKey="232282">
  3107. <default_db__x3A__BI_audit_KRS:ID>232282</default_db__x3A__BI_audit_KRS:ID>
  3108. <default_db__x3A__BI_audit_KRS:krs>0000314669</default_db__x3A__BI_audit_KRS:krs>
  3109. <default_db__x3A__BI_audit_KRS:nazwa>CONNECTED SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  3110. <default_db__x3A__BI_audit_KRS:S_miejscowosc>KRAKÓW</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  3111. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  3112. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3113. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670076" p5:primaryKey="2670076">
  3114. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670076</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3115. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3116. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670075" p5:primaryKey="2670075"/>
  3117. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  3118. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3119. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670067" p5:primaryKey="2670067">
  3120. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670067</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3121. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.385076" p5:primaryKey="385076">
  3122. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>385076</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  3123. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670074" p5:primaryKey="2670074">
  3124. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670074</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3125. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.387" p5:primaryKey="387">
  3126. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>387</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  3127. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>SII SP. Z O.O.</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  3128. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  3129. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3130. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670073" p5:primaryKey="2670073">
  3131. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670073</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3132. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.34923" p5:primaryKey="34923">
  3133. <default_db__x3A__BI_audit_MSIG:ID>34923</default_db__x3A__BI_audit_MSIG:ID>
  3134. <default_db__x3A__BI_audit_MSIG:nazwa>„SII SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ”</default_db__x3A__BI_audit_MSIG:nazwa>
  3135. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  3136. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3137. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670072" p5:primaryKey="2670072">
  3138. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670072</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3139. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3140. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670071" p5:primaryKey="2670071">
  3141. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670071</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3142. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.10156" p5:primaryKey="10156">
  3143. <default_db__x3A__BI_audit_MSIG:ID>10156</default_db__x3A__BI_audit_MSIG:ID>
  3144. <default_db__x3A__BI_audit_MSIG:nazwa>PACTRA INTERNATIONAL (POLAND) SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  3145. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  3146. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3147. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670070" p5:primaryKey="2670070">
  3148. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670070</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3149. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3150. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670069" p5:primaryKey="2670069">
  3151. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670069</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3152. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.231302" p5:primaryKey="231302">
  3153. <default_db__x3A__BI_audit_MSIG:ID>231302</default_db__x3A__BI_audit_MSIG:ID>
  3154. <default_db__x3A__BI_audit_MSIG:nazwa>KIKE EVENTS SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  3155. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  3156. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3157. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670068" p5:primaryKey="2670068">
  3158. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670068</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3159. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3160. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670067" p5:primaryKey="2670067"/>
  3161. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  3162. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3163. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670061" p5:primaryKey="2670061">
  3164. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670061</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3165. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.385075" p5:primaryKey="385075">
  3166. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>385075</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  3167. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670066" p5:primaryKey="2670066">
  3168. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670066</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3169. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.64" p5:primaryKey="64">
  3170. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>64</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  3171. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BIPROSTAL S.A. FIRMA INŻYNIERYJNO-KONSULTINGOWA</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  3172. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  3173. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3174. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670065" p5:primaryKey="2670065">
  3175. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670065</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3176. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3177. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670064" p5:primaryKey="2670064">
  3178. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670064</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3179. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3180. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670063" p5:primaryKey="2670063">
  3181. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670063</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3182. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.131483" p5:primaryKey="131483">
  3183. <default_db__x3A__BI_audit_MSIG:ID>131483</default_db__x3A__BI_audit_MSIG:ID>
  3184. <default_db__x3A__BI_audit_MSIG:nazwa>CONNECTED SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  3185. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  3186. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3187. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670062" p5:primaryKey="2670062">
  3188. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670062</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3189. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3190. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670061" p5:primaryKey="2670061"/>
  3191. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  3192. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3193. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670054" p5:primaryKey="2670054">
  3194. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670054</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3195. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.385074" p5:primaryKey="385074">
  3196. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>385074</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  3197. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670060" p5:primaryKey="2670060">
  3198. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670060</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3199. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.64" p5:primaryKey="64">
  3200. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>64</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  3201. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BIPROSTAL S.A. FIRMA INŻYNIERYJNO-KONSULTINGOWA</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  3202. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  3203. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3204. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670059" p5:primaryKey="2670059">
  3205. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670059</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3206. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3207. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670058" p5:primaryKey="2670058">
  3208. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670058</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3209. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.260177" p5:primaryKey="260177">
  3210. <default_db__x3A__BI_audit_MSIG:ID>260177</default_db__x3A__BI_audit_MSIG:ID>
  3211. <default_db__x3A__BI_audit_MSIG:nazwa>BIURO PROJEKTÓW BIPROSTAL SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  3212. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  3213. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3214. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670057" p5:primaryKey="2670057">
  3215. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670057</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3216. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3217. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670056" p5:primaryKey="2670056">
  3218. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670056</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3219. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.131483" p5:primaryKey="131483">
  3220. <default_db__x3A__BI_audit_MSIG:ID>131483</default_db__x3A__BI_audit_MSIG:ID>
  3221. <default_db__x3A__BI_audit_MSIG:nazwa>CONNECTED SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  3222. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  3223. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3224. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670055" p5:primaryKey="2670055">
  3225. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670055</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3226. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3227. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670054" p5:primaryKey="2670054"/>
  3228. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  3229. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3230. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670047" p5:primaryKey="2670047">
  3231. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670047</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3232. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.385073" p5:primaryKey="385073">
  3233. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>385073</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  3234. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670053" p5:primaryKey="2670053">
  3235. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670053</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3236. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.64" p5:primaryKey="64">
  3237. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>64</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  3238. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BIPROSTAL S.A. FIRMA INŻYNIERYJNO-KONSULTINGOWA</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  3239. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  3240. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3241. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670052" p5:primaryKey="2670052">
  3242. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670052</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3243. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3244. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670051" p5:primaryKey="2670051">
  3245. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670051</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3246. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.272532" p5:primaryKey="272532">
  3247. <default_db__x3A__BI_audit_KRS:ID>272532</default_db__x3A__BI_audit_KRS:ID>
  3248. <default_db__x3A__BI_audit_KRS:krs>0000363112</default_db__x3A__BI_audit_KRS:krs>
  3249. <default_db__x3A__BI_audit_KRS:nazwa>MAVIA SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  3250. <default_db__x3A__BI_audit_KRS:S_miejscowosc>KRAKÓW</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  3251. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  3252. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3253. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670050" p5:primaryKey="2670050">
  3254. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670050</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3255. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3256. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670049" p5:primaryKey="2670049">
  3257. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670049</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3258. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.131483" p5:primaryKey="131483">
  3259. <default_db__x3A__BI_audit_MSIG:ID>131483</default_db__x3A__BI_audit_MSIG:ID>
  3260. <default_db__x3A__BI_audit_MSIG:nazwa>CONNECTED SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  3261. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  3262. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3263. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670048" p5:primaryKey="2670048">
  3264. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670048</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3265. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3266. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670047" p5:primaryKey="2670047"/>
  3267. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  3268. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3269. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670041" p5:primaryKey="2670041">
  3270. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670041</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3271. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.385072" p5:primaryKey="385072">
  3272. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>385072</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  3273. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670046" p5:primaryKey="2670046">
  3274. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670046</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3275. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.64" p5:primaryKey="64">
  3276. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>64</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  3277. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BIPROSTAL S.A. FIRMA INŻYNIERYJNO-KONSULTINGOWA</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  3278. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  3279. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3280. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670045" p5:primaryKey="2670045">
  3281. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670045</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3282. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3283. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670044" p5:primaryKey="2670044">
  3284. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670044</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3285. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.232282" p5:primaryKey="232282">
  3286. <default_db__x3A__BI_audit_KRS:ID>232282</default_db__x3A__BI_audit_KRS:ID>
  3287. <default_db__x3A__BI_audit_KRS:krs>0000314669</default_db__x3A__BI_audit_KRS:krs>
  3288. <default_db__x3A__BI_audit_KRS:nazwa>CONNECTED SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  3289. <default_db__x3A__BI_audit_KRS:S_miejscowosc>KRAKÓW</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  3290. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  3291. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3292. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670043" p5:primaryKey="2670043">
  3293. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670043</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3294. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.131483" p5:primaryKey="131483">
  3295. <default_db__x3A__BI_audit_MSIG:ID>131483</default_db__x3A__BI_audit_MSIG:ID>
  3296. <default_db__x3A__BI_audit_MSIG:nazwa>CONNECTED SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  3297. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  3298. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3299. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670042" p5:primaryKey="2670042">
  3300. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670042</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3301. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3302. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670041" p5:primaryKey="2670041"/>
  3303. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  3304. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3305. <p5:links>
  3306. <p5:next p5:typeName="default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object" p5:backRefNS="default_db/BI_audit_ENERGA_PRACOWNICY/BI_audit_ENERGA_PRACOWNICY" p5:backRefPK="465" p5:startIndex="10">https://biuro.biall-net.pl/dev-pl/se-projects/bocian/SE//wfs-data.php/default_db/?SERVICE=WFS&amp;VERSION=1.0.0&amp;TYPENAME=default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object&amp;REQUEST=GetFeature&amp;backRefNS=default_db/BI_audit_ENERGA_PRACOWNICY/BI_audit_ENERGA_PRACOWNICY&amp;backRefPK=465&amp;backRefField=default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object&amp;maxFeatures=10&amp;startIndex=10</p5:next>
  3307. </p5:links>
  3308. </default_db__x3A__BI_audit_ENERGA_PRACOWNICY:BI_audit_ENERGA_PRACOWNICY>
  3309. </gml:featureMember>
  3310. <gml:featureMember>
  3311. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:BI_audit_ENERGA_PRACOWNICY fid="BI_audit_ENERGA_PRACOWNICY.464" p5:primaryKey="464">
  3312. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:ID>464</default_db__x3A__BI_audit_ENERGA_PRACOWNICY:ID>
  3313. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:imiona>PIOTR MARCIN</default_db__x3A__BI_audit_ENERGA_PRACOWNICY:imiona>
  3314. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:nazwisko>MARCINIAK</default_db__x3A__BI_audit_ENERGA_PRACOWNICY:nazwisko>
  3315. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704447" p5:primaryKey="2704447">
  3316. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704447</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3317. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.389709" p5:primaryKey="389709">
  3318. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>389709</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  3319. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704454" p5:primaryKey="2704454">
  3320. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704454</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3321. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17254" p5:primaryKey="17254">
  3322. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17254</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  3323. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>&quot;POCZTA POLSKA SPÓŁKA AKCYJNA&quot;</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  3324. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  3325. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3326. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704453" p5:primaryKey="2704453">
  3327. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704453</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3328. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.248843" p5:primaryKey="248843">
  3329. <default_db__x3A__BI_audit_KRS:ID>248843</default_db__x3A__BI_audit_KRS:ID>
  3330. <default_db__x3A__BI_audit_KRS:krs>0000334972</default_db__x3A__BI_audit_KRS:krs>
  3331. <default_db__x3A__BI_audit_KRS:nazwa>&quot;POCZTA POLSKA SPÓŁKA AKCYJNA&quot;</default_db__x3A__BI_audit_KRS:nazwa>
  3332. <default_db__x3A__BI_audit_KRS:S_miejscowosc>WARSZAWA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  3333. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  3334. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3335. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704452" p5:primaryKey="2704452">
  3336. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704452</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3337. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3338. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704451" p5:primaryKey="2704451">
  3339. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704451</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3340. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.159114" p5:primaryKey="159114">
  3341. <default_db__x3A__BI_audit_KRS:ID>159114</default_db__x3A__BI_audit_KRS:ID>
  3342. <default_db__x3A__BI_audit_KRS:krs>0000220589</default_db__x3A__BI_audit_KRS:krs>
  3343. <default_db__x3A__BI_audit_KRS:nazwa>STOWARZYSZENIE BUDOWNICZYCH TELEKOMUNIKACJI</default_db__x3A__BI_audit_KRS:nazwa>
  3344. <default_db__x3A__BI_audit_KRS:S_miejscowosc>WARSZAWA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  3345. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  3346. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3347. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704450" p5:primaryKey="2704450">
  3348. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704450</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3349. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3350. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704449" p5:primaryKey="2704449">
  3351. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704449</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3352. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.492948" p5:primaryKey="492948">
  3353. <default_db__x3A__BI_audit_KRS:ID>492948</default_db__x3A__BI_audit_KRS:ID>
  3354. <default_db__x3A__BI_audit_KRS:krs>0000607288</default_db__x3A__BI_audit_KRS:krs>
  3355. <default_db__x3A__BI_audit_KRS:nazwa>TPNETS.COM SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  3356. <default_db__x3A__BI_audit_KRS:S_miejscowosc>ŁÓDŹ</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  3357. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  3358. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3359. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704448" p5:primaryKey="2704448">
  3360. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704448</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3361. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3362. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704447" p5:primaryKey="2704447"/>
  3363. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  3364. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3365. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704439" p5:primaryKey="2704439">
  3366. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704439</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3367. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.389708" p5:primaryKey="389708">
  3368. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>389708</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  3369. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704446" p5:primaryKey="2704446">
  3370. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704446</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3371. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17254" p5:primaryKey="17254">
  3372. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17254</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  3373. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>&quot;POCZTA POLSKA SPÓŁKA AKCYJNA&quot;</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  3374. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  3375. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3376. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704445" p5:primaryKey="2704445">
  3377. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704445</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3378. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.248843" p5:primaryKey="248843">
  3379. <default_db__x3A__BI_audit_KRS:ID>248843</default_db__x3A__BI_audit_KRS:ID>
  3380. <default_db__x3A__BI_audit_KRS:krs>0000334972</default_db__x3A__BI_audit_KRS:krs>
  3381. <default_db__x3A__BI_audit_KRS:nazwa>&quot;POCZTA POLSKA SPÓŁKA AKCYJNA&quot;</default_db__x3A__BI_audit_KRS:nazwa>
  3382. <default_db__x3A__BI_audit_KRS:S_miejscowosc>WARSZAWA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  3383. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  3384. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3385. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704444" p5:primaryKey="2704444">
  3386. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704444</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3387. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3388. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704443" p5:primaryKey="2704443">
  3389. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704443</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3390. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.159114" p5:primaryKey="159114">
  3391. <default_db__x3A__BI_audit_KRS:ID>159114</default_db__x3A__BI_audit_KRS:ID>
  3392. <default_db__x3A__BI_audit_KRS:krs>0000220589</default_db__x3A__BI_audit_KRS:krs>
  3393. <default_db__x3A__BI_audit_KRS:nazwa>STOWARZYSZENIE BUDOWNICZYCH TELEKOMUNIKACJI</default_db__x3A__BI_audit_KRS:nazwa>
  3394. <default_db__x3A__BI_audit_KRS:S_miejscowosc>WARSZAWA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  3395. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  3396. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3397. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704442" p5:primaryKey="2704442">
  3398. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704442</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3399. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3400. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704441" p5:primaryKey="2704441">
  3401. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704441</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3402. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.489900" p5:primaryKey="489900">
  3403. <default_db__x3A__BI_audit_KRS:ID>489900</default_db__x3A__BI_audit_KRS:ID>
  3404. <default_db__x3A__BI_audit_KRS:krs>0000604032</default_db__x3A__BI_audit_KRS:krs>
  3405. <default_db__x3A__BI_audit_KRS:nazwa>ISPHURT SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  3406. <default_db__x3A__BI_audit_KRS:S_miejscowosc>WARSZAWA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  3407. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  3408. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3409. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704440" p5:primaryKey="2704440">
  3410. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704440</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3411. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3412. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704439" p5:primaryKey="2704439"/>
  3413. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  3414. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3415. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704431" p5:primaryKey="2704431">
  3416. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704431</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3417. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.389707" p5:primaryKey="389707">
  3418. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>389707</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  3419. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704438" p5:primaryKey="2704438">
  3420. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704438</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3421. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17471" p5:primaryKey="17471">
  3422. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17471</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  3423. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>EDF POLSKA SPÓŁKA AKCYJNA</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  3424. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  3425. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3426. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704437" p5:primaryKey="2704437">
  3427. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704437</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3428. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3429. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704436" p5:primaryKey="2704436">
  3430. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704436</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3431. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.84600" p5:primaryKey="84600">
  3432. <default_db__x3A__BI_audit_MSIG:ID>84600</default_db__x3A__BI_audit_MSIG:ID>
  3433. <default_db__x3A__BI_audit_MSIG:nazwa>ERTEL SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  3434. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  3435. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3436. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704435" p5:primaryKey="2704435">
  3437. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704435</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3438. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3439. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704434" p5:primaryKey="2704434">
  3440. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704434</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3441. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.435421" p5:primaryKey="435421">
  3442. <default_db__x3A__BI_audit_MSIG:ID>435421</default_db__x3A__BI_audit_MSIG:ID>
  3443. <default_db__x3A__BI_audit_MSIG:nazwa>ISPHURT SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  3444. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  3445. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3446. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704433" p5:primaryKey="2704433">
  3447. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704433</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3448. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.489900" p5:primaryKey="489900">
  3449. <default_db__x3A__BI_audit_KRS:ID>489900</default_db__x3A__BI_audit_KRS:ID>
  3450. <default_db__x3A__BI_audit_KRS:krs>0000604032</default_db__x3A__BI_audit_KRS:krs>
  3451. <default_db__x3A__BI_audit_KRS:nazwa>ISPHURT SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  3452. <default_db__x3A__BI_audit_KRS:S_miejscowosc>WARSZAWA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  3453. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  3454. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3455. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704432" p5:primaryKey="2704432">
  3456. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704432</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3457. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3458. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704431" p5:primaryKey="2704431"/>
  3459. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  3460. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3461. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704423" p5:primaryKey="2704423">
  3462. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704423</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3463. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.389706" p5:primaryKey="389706">
  3464. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>389706</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  3465. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704430" p5:primaryKey="2704430">
  3466. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704430</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3467. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17249" p5:primaryKey="17249">
  3468. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17249</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  3469. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>&quot;SIDEN - SYSTEMY INFORMATYCZNE, DORADZTWO, ENERGETYKA - SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ&quot;</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  3470. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  3471. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3472. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704429" p5:primaryKey="2704429">
  3473. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704429</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3474. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.5484" p5:primaryKey="5484">
  3475. <default_db__x3A__BI_audit_KRS:ID>5484</default_db__x3A__BI_audit_KRS:ID>
  3476. <default_db__x3A__BI_audit_KRS:krs>0000008937</default_db__x3A__BI_audit_KRS:krs>
  3477. <default_db__x3A__BI_audit_KRS:nazwa>&quot;SIDEN - SYSTEMY INFORMATYCZNE, DORADZTWO, ENERGETYKA - SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ&quot;</default_db__x3A__BI_audit_KRS:nazwa>
  3478. <default_db__x3A__BI_audit_KRS:S_miejscowosc>TORUŃ</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  3479. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  3480. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3481. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704428" p5:primaryKey="2704428">
  3482. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704428</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3483. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3484. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704427" p5:primaryKey="2704427">
  3485. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704427</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3486. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.118244" p5:primaryKey="118244">
  3487. <default_db__x3A__BI_audit_KRS:ID>118244</default_db__x3A__BI_audit_KRS:ID>
  3488. <default_db__x3A__BI_audit_KRS:krs>0000166561</default_db__x3A__BI_audit_KRS:krs>
  3489. <default_db__x3A__BI_audit_KRS:nazwa>POLSKIE TOWARZYSTWO CERTYFIKACJI ENERGII</default_db__x3A__BI_audit_KRS:nazwa>
  3490. <default_db__x3A__BI_audit_KRS:S_miejscowosc>POZNAŃ</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  3491. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  3492. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3493. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704426" p5:primaryKey="2704426">
  3494. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704426</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3495. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3496. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704425" p5:primaryKey="2704425">
  3497. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704425</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3498. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.407456" p5:primaryKey="407456">
  3499. <default_db__x3A__BI_audit_KRS:ID>407456</default_db__x3A__BI_audit_KRS:ID>
  3500. <default_db__x3A__BI_audit_KRS:krs>0000515998</default_db__x3A__BI_audit_KRS:krs>
  3501. <default_db__x3A__BI_audit_KRS:nazwa>&quot;FUNDACJA NA RZECZ PRZECIWDZIAŁNIA KRADZIEŻY I DEWASTACJI INFRASTRUKTURY&quot;</default_db__x3A__BI_audit_KRS:nazwa>
  3502. <default_db__x3A__BI_audit_KRS:S_miejscowosc>WARSZAWA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  3503. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  3504. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3505. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704424" p5:primaryKey="2704424">
  3506. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704424</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3507. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3508. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704423" p5:primaryKey="2704423"/>
  3509. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  3510. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3511. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704416" p5:primaryKey="2704416">
  3512. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704416</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3513. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.389705" p5:primaryKey="389705">
  3514. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>389705</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  3515. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704422" p5:primaryKey="2704422">
  3516. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704422</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3517. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17471" p5:primaryKey="17471">
  3518. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17471</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  3519. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>EDF POLSKA SPÓŁKA AKCYJNA</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  3520. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  3521. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3522. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704421" p5:primaryKey="2704421">
  3523. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704421</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3524. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3525. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704420" p5:primaryKey="2704420">
  3526. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704420</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3527. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.84600" p5:primaryKey="84600">
  3528. <default_db__x3A__BI_audit_MSIG:ID>84600</default_db__x3A__BI_audit_MSIG:ID>
  3529. <default_db__x3A__BI_audit_MSIG:nazwa>ERTEL SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  3530. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  3531. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3532. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704419" p5:primaryKey="2704419">
  3533. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704419</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3534. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3535. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704418" p5:primaryKey="2704418">
  3536. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704418</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3537. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.435421" p5:primaryKey="435421">
  3538. <default_db__x3A__BI_audit_MSIG:ID>435421</default_db__x3A__BI_audit_MSIG:ID>
  3539. <default_db__x3A__BI_audit_MSIG:nazwa>ISPHURT SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  3540. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  3541. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3542. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704417" p5:primaryKey="2704417">
  3543. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704417</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3544. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3545. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704416" p5:primaryKey="2704416"/>
  3546. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  3547. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3548. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670026" p5:primaryKey="2670026">
  3549. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670026</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3550. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.385070" p5:primaryKey="385070">
  3551. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>385070</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  3552. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670033" p5:primaryKey="2670033">
  3553. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670033</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3554. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17254" p5:primaryKey="17254">
  3555. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17254</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  3556. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>&quot;POCZTA POLSKA SPÓŁKA AKCYJNA&quot;</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  3557. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  3558. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3559. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670032" p5:primaryKey="2670032">
  3560. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670032</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3561. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.248843" p5:primaryKey="248843">
  3562. <default_db__x3A__BI_audit_KRS:ID>248843</default_db__x3A__BI_audit_KRS:ID>
  3563. <default_db__x3A__BI_audit_KRS:krs>0000334972</default_db__x3A__BI_audit_KRS:krs>
  3564. <default_db__x3A__BI_audit_KRS:nazwa>&quot;POCZTA POLSKA SPÓŁKA AKCYJNA&quot;</default_db__x3A__BI_audit_KRS:nazwa>
  3565. <default_db__x3A__BI_audit_KRS:S_miejscowosc>WARSZAWA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  3566. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  3567. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3568. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670031" p5:primaryKey="2670031">
  3569. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670031</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3570. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3571. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670030" p5:primaryKey="2670030">
  3572. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670030</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3573. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.159114" p5:primaryKey="159114">
  3574. <default_db__x3A__BI_audit_KRS:ID>159114</default_db__x3A__BI_audit_KRS:ID>
  3575. <default_db__x3A__BI_audit_KRS:krs>0000220589</default_db__x3A__BI_audit_KRS:krs>
  3576. <default_db__x3A__BI_audit_KRS:nazwa>STOWARZYSZENIE BUDOWNICZYCH TELEKOMUNIKACJI</default_db__x3A__BI_audit_KRS:nazwa>
  3577. <default_db__x3A__BI_audit_KRS:S_miejscowosc>WARSZAWA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  3578. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  3579. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3580. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670029" p5:primaryKey="2670029">
  3581. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670029</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3582. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3583. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670028" p5:primaryKey="2670028">
  3584. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670028</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3585. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.492948" p5:primaryKey="492948">
  3586. <default_db__x3A__BI_audit_KRS:ID>492948</default_db__x3A__BI_audit_KRS:ID>
  3587. <default_db__x3A__BI_audit_KRS:krs>0000607288</default_db__x3A__BI_audit_KRS:krs>
  3588. <default_db__x3A__BI_audit_KRS:nazwa>TPNETS.COM SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  3589. <default_db__x3A__BI_audit_KRS:S_miejscowosc>ŁÓDŹ</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  3590. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  3591. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3592. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670027" p5:primaryKey="2670027">
  3593. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670027</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3594. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3595. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670026" p5:primaryKey="2670026"/>
  3596. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  3597. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3598. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670018" p5:primaryKey="2670018">
  3599. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670018</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3600. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.385069" p5:primaryKey="385069">
  3601. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>385069</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  3602. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670025" p5:primaryKey="2670025">
  3603. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670025</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3604. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17254" p5:primaryKey="17254">
  3605. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17254</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  3606. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>&quot;POCZTA POLSKA SPÓŁKA AKCYJNA&quot;</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  3607. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  3608. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3609. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670024" p5:primaryKey="2670024">
  3610. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670024</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3611. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.248843" p5:primaryKey="248843">
  3612. <default_db__x3A__BI_audit_KRS:ID>248843</default_db__x3A__BI_audit_KRS:ID>
  3613. <default_db__x3A__BI_audit_KRS:krs>0000334972</default_db__x3A__BI_audit_KRS:krs>
  3614. <default_db__x3A__BI_audit_KRS:nazwa>&quot;POCZTA POLSKA SPÓŁKA AKCYJNA&quot;</default_db__x3A__BI_audit_KRS:nazwa>
  3615. <default_db__x3A__BI_audit_KRS:S_miejscowosc>WARSZAWA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  3616. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  3617. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3618. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670023" p5:primaryKey="2670023">
  3619. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670023</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3620. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3621. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670022" p5:primaryKey="2670022">
  3622. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670022</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3623. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.159114" p5:primaryKey="159114">
  3624. <default_db__x3A__BI_audit_KRS:ID>159114</default_db__x3A__BI_audit_KRS:ID>
  3625. <default_db__x3A__BI_audit_KRS:krs>0000220589</default_db__x3A__BI_audit_KRS:krs>
  3626. <default_db__x3A__BI_audit_KRS:nazwa>STOWARZYSZENIE BUDOWNICZYCH TELEKOMUNIKACJI</default_db__x3A__BI_audit_KRS:nazwa>
  3627. <default_db__x3A__BI_audit_KRS:S_miejscowosc>WARSZAWA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  3628. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  3629. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3630. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670021" p5:primaryKey="2670021">
  3631. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670021</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3632. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3633. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670020" p5:primaryKey="2670020">
  3634. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670020</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3635. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.489900" p5:primaryKey="489900">
  3636. <default_db__x3A__BI_audit_KRS:ID>489900</default_db__x3A__BI_audit_KRS:ID>
  3637. <default_db__x3A__BI_audit_KRS:krs>0000604032</default_db__x3A__BI_audit_KRS:krs>
  3638. <default_db__x3A__BI_audit_KRS:nazwa>ISPHURT SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  3639. <default_db__x3A__BI_audit_KRS:S_miejscowosc>WARSZAWA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  3640. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  3641. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3642. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670019" p5:primaryKey="2670019">
  3643. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670019</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3644. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3645. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670018" p5:primaryKey="2670018"/>
  3646. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  3647. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3648. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670010" p5:primaryKey="2670010">
  3649. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670010</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3650. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.385068" p5:primaryKey="385068">
  3651. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>385068</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  3652. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670017" p5:primaryKey="2670017">
  3653. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670017</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3654. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17471" p5:primaryKey="17471">
  3655. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17471</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  3656. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>EDF POLSKA SPÓŁKA AKCYJNA</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  3657. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  3658. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3659. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670016" p5:primaryKey="2670016">
  3660. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670016</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3661. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3662. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670015" p5:primaryKey="2670015">
  3663. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670015</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3664. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.84600" p5:primaryKey="84600">
  3665. <default_db__x3A__BI_audit_MSIG:ID>84600</default_db__x3A__BI_audit_MSIG:ID>
  3666. <default_db__x3A__BI_audit_MSIG:nazwa>ERTEL SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  3667. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  3668. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3669. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670014" p5:primaryKey="2670014">
  3670. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670014</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3671. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3672. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670013" p5:primaryKey="2670013">
  3673. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670013</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3674. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.435421" p5:primaryKey="435421">
  3675. <default_db__x3A__BI_audit_MSIG:ID>435421</default_db__x3A__BI_audit_MSIG:ID>
  3676. <default_db__x3A__BI_audit_MSIG:nazwa>ISPHURT SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  3677. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  3678. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3679. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670012" p5:primaryKey="2670012">
  3680. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670012</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3681. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.489900" p5:primaryKey="489900">
  3682. <default_db__x3A__BI_audit_KRS:ID>489900</default_db__x3A__BI_audit_KRS:ID>
  3683. <default_db__x3A__BI_audit_KRS:krs>0000604032</default_db__x3A__BI_audit_KRS:krs>
  3684. <default_db__x3A__BI_audit_KRS:nazwa>ISPHURT SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  3685. <default_db__x3A__BI_audit_KRS:S_miejscowosc>WARSZAWA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  3686. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  3687. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3688. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670011" p5:primaryKey="2670011">
  3689. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670011</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3690. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3691. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670010" p5:primaryKey="2670010"/>
  3692. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  3693. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3694. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670002" p5:primaryKey="2670002">
  3695. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670002</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3696. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.385067" p5:primaryKey="385067">
  3697. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>385067</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  3698. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670009" p5:primaryKey="2670009">
  3699. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670009</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3700. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.243" p5:primaryKey="243">
  3701. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>243</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  3702. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>APATOR S.A.</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  3703. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  3704. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3705. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670008" p5:primaryKey="2670008">
  3706. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670008</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3707. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.39751" p5:primaryKey="39751">
  3708. <default_db__x3A__BI_audit_KRS:ID>39751</default_db__x3A__BI_audit_KRS:ID>
  3709. <default_db__x3A__BI_audit_KRS:krs>0000056456</default_db__x3A__BI_audit_KRS:krs>
  3710. <default_db__x3A__BI_audit_KRS:nazwa>APATOR SPÓŁKA AKCYJNA</default_db__x3A__BI_audit_KRS:nazwa>
  3711. <default_db__x3A__BI_audit_KRS:S_miejscowosc>TORUŃ</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  3712. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  3713. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3714. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670007" p5:primaryKey="2670007">
  3715. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670007</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3716. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3717. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670006" p5:primaryKey="2670006">
  3718. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670006</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3719. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.116267" p5:primaryKey="116267">
  3720. <default_db__x3A__BI_audit_KRS:ID>116267</default_db__x3A__BI_audit_KRS:ID>
  3721. <default_db__x3A__BI_audit_KRS:krs>0000163803</default_db__x3A__BI_audit_KRS:krs>
  3722. <default_db__x3A__BI_audit_KRS:nazwa>NETIA MOBILE SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  3723. <default_db__x3A__BI_audit_KRS:S_miejscowosc>WARSZAWA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  3724. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  3725. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3726. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670005" p5:primaryKey="2670005">
  3727. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670005</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3728. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3729. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670004" p5:primaryKey="2670004">
  3730. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670004</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3731. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.407456" p5:primaryKey="407456">
  3732. <default_db__x3A__BI_audit_KRS:ID>407456</default_db__x3A__BI_audit_KRS:ID>
  3733. <default_db__x3A__BI_audit_KRS:krs>0000515998</default_db__x3A__BI_audit_KRS:krs>
  3734. <default_db__x3A__BI_audit_KRS:nazwa>&quot;FUNDACJA NA RZECZ PRZECIWDZIAŁNIA KRADZIEŻY I DEWASTACJI INFRASTRUKTURY&quot;</default_db__x3A__BI_audit_KRS:nazwa>
  3735. <default_db__x3A__BI_audit_KRS:S_miejscowosc>WARSZAWA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  3736. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  3737. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3738. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670003" p5:primaryKey="2670003">
  3739. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670003</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3740. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3741. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670002" p5:primaryKey="2670002"/>
  3742. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  3743. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3744. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669994" p5:primaryKey="2669994">
  3745. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2669994</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3746. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.385066" p5:primaryKey="385066">
  3747. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>385066</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  3748. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670001" p5:primaryKey="2670001">
  3749. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670001</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3750. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.243" p5:primaryKey="243">
  3751. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>243</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  3752. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>APATOR S.A.</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  3753. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  3754. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3755. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2670000" p5:primaryKey="2670000">
  3756. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2670000</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3757. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.39751" p5:primaryKey="39751">
  3758. <default_db__x3A__BI_audit_KRS:ID>39751</default_db__x3A__BI_audit_KRS:ID>
  3759. <default_db__x3A__BI_audit_KRS:krs>0000056456</default_db__x3A__BI_audit_KRS:krs>
  3760. <default_db__x3A__BI_audit_KRS:nazwa>APATOR SPÓŁKA AKCYJNA</default_db__x3A__BI_audit_KRS:nazwa>
  3761. <default_db__x3A__BI_audit_KRS:S_miejscowosc>TORUŃ</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  3762. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  3763. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3764. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669999" p5:primaryKey="2669999">
  3765. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2669999</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3766. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3767. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669998" p5:primaryKey="2669998">
  3768. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2669998</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3769. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.116267" p5:primaryKey="116267">
  3770. <default_db__x3A__BI_audit_KRS:ID>116267</default_db__x3A__BI_audit_KRS:ID>
  3771. <default_db__x3A__BI_audit_KRS:krs>0000163803</default_db__x3A__BI_audit_KRS:krs>
  3772. <default_db__x3A__BI_audit_KRS:nazwa>NETIA MOBILE SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  3773. <default_db__x3A__BI_audit_KRS:S_miejscowosc>WARSZAWA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  3774. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  3775. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3776. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669997" p5:primaryKey="2669997">
  3777. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2669997</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3778. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3779. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669996" p5:primaryKey="2669996">
  3780. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2669996</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3781. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.407456" p5:primaryKey="407456">
  3782. <default_db__x3A__BI_audit_KRS:ID>407456</default_db__x3A__BI_audit_KRS:ID>
  3783. <default_db__x3A__BI_audit_KRS:krs>0000515998</default_db__x3A__BI_audit_KRS:krs>
  3784. <default_db__x3A__BI_audit_KRS:nazwa>&quot;FUNDACJA NA RZECZ PRZECIWDZIAŁNIA KRADZIEŻY I DEWASTACJI INFRASTRUKTURY&quot;</default_db__x3A__BI_audit_KRS:nazwa>
  3785. <default_db__x3A__BI_audit_KRS:S_miejscowosc>WARSZAWA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  3786. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  3787. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3788. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669995" p5:primaryKey="2669995">
  3789. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2669995</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3790. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3791. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669994" p5:primaryKey="2669994"/>
  3792. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  3793. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3794. <p5:links>
  3795. <p5:next p5:typeName="default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object" p5:backRefNS="default_db/BI_audit_ENERGA_PRACOWNICY/BI_audit_ENERGA_PRACOWNICY" p5:backRefPK="464" p5:startIndex="10">https://biuro.biall-net.pl/dev-pl/se-projects/bocian/SE//wfs-data.php/default_db/?SERVICE=WFS&amp;VERSION=1.0.0&amp;TYPENAME=default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object&amp;REQUEST=GetFeature&amp;backRefNS=default_db/BI_audit_ENERGA_PRACOWNICY/BI_audit_ENERGA_PRACOWNICY&amp;backRefPK=464&amp;backRefField=default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object&amp;maxFeatures=10&amp;startIndex=10</p5:next>
  3796. </p5:links>
  3797. </default_db__x3A__BI_audit_ENERGA_PRACOWNICY:BI_audit_ENERGA_PRACOWNICY>
  3798. </gml:featureMember>
  3799. <gml:featureMember>
  3800. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:BI_audit_ENERGA_PRACOWNICY fid="BI_audit_ENERGA_PRACOWNICY.463" p5:primaryKey="463">
  3801. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:ID>463</default_db__x3A__BI_audit_ENERGA_PRACOWNICY:ID>
  3802. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:imiona>ANDRZEJ</default_db__x3A__BI_audit_ENERGA_PRACOWNICY:imiona>
  3803. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:nazwisko>OWCZAREK</default_db__x3A__BI_audit_ENERGA_PRACOWNICY:nazwisko>
  3804. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704408" p5:primaryKey="2704408">
  3805. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704408</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3806. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.389704" p5:primaryKey="389704">
  3807. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>389704</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  3808. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704415" p5:primaryKey="2704415">
  3809. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704415</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3810. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17254" p5:primaryKey="17254">
  3811. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17254</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  3812. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>&quot;POCZTA POLSKA SPÓŁKA AKCYJNA&quot;</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  3813. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  3814. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3815. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704414" p5:primaryKey="2704414">
  3816. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704414</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3817. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.248843" p5:primaryKey="248843">
  3818. <default_db__x3A__BI_audit_KRS:ID>248843</default_db__x3A__BI_audit_KRS:ID>
  3819. <default_db__x3A__BI_audit_KRS:krs>0000334972</default_db__x3A__BI_audit_KRS:krs>
  3820. <default_db__x3A__BI_audit_KRS:nazwa>&quot;POCZTA POLSKA SPÓŁKA AKCYJNA&quot;</default_db__x3A__BI_audit_KRS:nazwa>
  3821. <default_db__x3A__BI_audit_KRS:S_miejscowosc>WARSZAWA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  3822. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  3823. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3824. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704413" p5:primaryKey="2704413">
  3825. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704413</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3826. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3827. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704412" p5:primaryKey="2704412">
  3828. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704412</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3829. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.159114" p5:primaryKey="159114">
  3830. <default_db__x3A__BI_audit_KRS:ID>159114</default_db__x3A__BI_audit_KRS:ID>
  3831. <default_db__x3A__BI_audit_KRS:krs>0000220589</default_db__x3A__BI_audit_KRS:krs>
  3832. <default_db__x3A__BI_audit_KRS:nazwa>STOWARZYSZENIE BUDOWNICZYCH TELEKOMUNIKACJI</default_db__x3A__BI_audit_KRS:nazwa>
  3833. <default_db__x3A__BI_audit_KRS:S_miejscowosc>WARSZAWA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  3834. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  3835. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3836. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704411" p5:primaryKey="2704411">
  3837. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704411</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3838. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3839. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704410" p5:primaryKey="2704410">
  3840. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704410</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3841. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.489900" p5:primaryKey="489900">
  3842. <default_db__x3A__BI_audit_KRS:ID>489900</default_db__x3A__BI_audit_KRS:ID>
  3843. <default_db__x3A__BI_audit_KRS:krs>0000604032</default_db__x3A__BI_audit_KRS:krs>
  3844. <default_db__x3A__BI_audit_KRS:nazwa>ISPHURT SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  3845. <default_db__x3A__BI_audit_KRS:S_miejscowosc>WARSZAWA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  3846. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  3847. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3848. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704409" p5:primaryKey="2704409">
  3849. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704409</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3850. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3851. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704408" p5:primaryKey="2704408"/>
  3852. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  3853. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3854. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704400" p5:primaryKey="2704400">
  3855. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704400</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3856. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.389703" p5:primaryKey="389703">
  3857. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>389703</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  3858. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704407" p5:primaryKey="2704407">
  3859. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704407</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3860. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17471" p5:primaryKey="17471">
  3861. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17471</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  3862. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>EDF POLSKA SPÓŁKA AKCYJNA</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  3863. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  3864. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3865. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704406" p5:primaryKey="2704406">
  3866. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704406</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3867. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3868. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704405" p5:primaryKey="2704405">
  3869. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704405</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3870. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.84600" p5:primaryKey="84600">
  3871. <default_db__x3A__BI_audit_MSIG:ID>84600</default_db__x3A__BI_audit_MSIG:ID>
  3872. <default_db__x3A__BI_audit_MSIG:nazwa>ERTEL SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  3873. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  3874. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3875. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704404" p5:primaryKey="2704404">
  3876. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704404</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3877. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3878. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704403" p5:primaryKey="2704403">
  3879. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704403</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3880. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.435421" p5:primaryKey="435421">
  3881. <default_db__x3A__BI_audit_MSIG:ID>435421</default_db__x3A__BI_audit_MSIG:ID>
  3882. <default_db__x3A__BI_audit_MSIG:nazwa>ISPHURT SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  3883. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  3884. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3885. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704402" p5:primaryKey="2704402">
  3886. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704402</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3887. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.489900" p5:primaryKey="489900">
  3888. <default_db__x3A__BI_audit_KRS:ID>489900</default_db__x3A__BI_audit_KRS:ID>
  3889. <default_db__x3A__BI_audit_KRS:krs>0000604032</default_db__x3A__BI_audit_KRS:krs>
  3890. <default_db__x3A__BI_audit_KRS:nazwa>ISPHURT SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  3891. <default_db__x3A__BI_audit_KRS:S_miejscowosc>WARSZAWA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  3892. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  3893. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3894. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704401" p5:primaryKey="2704401">
  3895. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704401</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3896. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3897. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704400" p5:primaryKey="2704400"/>
  3898. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  3899. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3900. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704393" p5:primaryKey="2704393">
  3901. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704393</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3902. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.389702" p5:primaryKey="389702">
  3903. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>389702</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  3904. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704399" p5:primaryKey="2704399">
  3905. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704399</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3906. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17471" p5:primaryKey="17471">
  3907. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17471</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  3908. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>EDF POLSKA SPÓŁKA AKCYJNA</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  3909. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  3910. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3911. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704398" p5:primaryKey="2704398">
  3912. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704398</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3913. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3914. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704397" p5:primaryKey="2704397">
  3915. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704397</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3916. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.84600" p5:primaryKey="84600">
  3917. <default_db__x3A__BI_audit_MSIG:ID>84600</default_db__x3A__BI_audit_MSIG:ID>
  3918. <default_db__x3A__BI_audit_MSIG:nazwa>ERTEL SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  3919. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  3920. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3921. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704396" p5:primaryKey="2704396">
  3922. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704396</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3923. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3924. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704395" p5:primaryKey="2704395">
  3925. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704395</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3926. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.435421" p5:primaryKey="435421">
  3927. <default_db__x3A__BI_audit_MSIG:ID>435421</default_db__x3A__BI_audit_MSIG:ID>
  3928. <default_db__x3A__BI_audit_MSIG:nazwa>ISPHURT SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  3929. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  3930. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3931. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704394" p5:primaryKey="2704394">
  3932. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704394</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3933. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3934. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704393" p5:primaryKey="2704393"/>
  3935. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  3936. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3937. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669917" p5:primaryKey="2669917">
  3938. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2669917</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3939. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.385056" p5:primaryKey="385056">
  3940. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>385056</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  3941. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669923" p5:primaryKey="2669923">
  3942. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2669923</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3943. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.64" p5:primaryKey="64">
  3944. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>64</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  3945. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BIPROSTAL S.A. FIRMA INŻYNIERYJNO-KONSULTINGOWA</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  3946. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  3947. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3948. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669922" p5:primaryKey="2669922">
  3949. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2669922</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3950. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3951. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669921" p5:primaryKey="2669921">
  3952. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2669921</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3953. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.232282" p5:primaryKey="232282">
  3954. <default_db__x3A__BI_audit_KRS:ID>232282</default_db__x3A__BI_audit_KRS:ID>
  3955. <default_db__x3A__BI_audit_KRS:krs>0000314669</default_db__x3A__BI_audit_KRS:krs>
  3956. <default_db__x3A__BI_audit_KRS:nazwa>CONNECTED SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  3957. <default_db__x3A__BI_audit_KRS:S_miejscowosc>KRAKÓW</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  3958. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  3959. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3960. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669920" p5:primaryKey="2669920">
  3961. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2669920</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3962. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3963. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669919" p5:primaryKey="2669919">
  3964. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2669919</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3965. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.292833" p5:primaryKey="292833">
  3966. <default_db__x3A__BI_audit_KRS:ID>292833</default_db__x3A__BI_audit_KRS:ID>
  3967. <default_db__x3A__BI_audit_KRS:krs>0000386790</default_db__x3A__BI_audit_KRS:krs>
  3968. <default_db__x3A__BI_audit_KRS:nazwa>KIKE EVENTS SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  3969. <default_db__x3A__BI_audit_KRS:S_miejscowosc>WARSZAWA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  3970. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  3971. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3972. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669918" p5:primaryKey="2669918">
  3973. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2669918</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3974. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3975. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669917" p5:primaryKey="2669917"/>
  3976. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  3977. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3978. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669910" p5:primaryKey="2669910">
  3979. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2669910</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3980. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.385055" p5:primaryKey="385055">
  3981. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>385055</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  3982. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669916" p5:primaryKey="2669916">
  3983. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2669916</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3984. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.64" p5:primaryKey="64">
  3985. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>64</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  3986. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BIPROSTAL S.A. FIRMA INŻYNIERYJNO-KONSULTINGOWA</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  3987. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  3988. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3989. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669915" p5:primaryKey="2669915">
  3990. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2669915</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3991. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  3992. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669914" p5:primaryKey="2669914">
  3993. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2669914</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  3994. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.232282" p5:primaryKey="232282">
  3995. <default_db__x3A__BI_audit_KRS:ID>232282</default_db__x3A__BI_audit_KRS:ID>
  3996. <default_db__x3A__BI_audit_KRS:krs>0000314669</default_db__x3A__BI_audit_KRS:krs>
  3997. <default_db__x3A__BI_audit_KRS:nazwa>CONNECTED SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  3998. <default_db__x3A__BI_audit_KRS:S_miejscowosc>KRAKÓW</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  3999. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  4000. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4001. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669913" p5:primaryKey="2669913">
  4002. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2669913</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4003. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4004. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669912" p5:primaryKey="2669912">
  4005. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2669912</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4006. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.233894" p5:primaryKey="233894">
  4007. <default_db__x3A__BI_audit_KRS:ID>233894</default_db__x3A__BI_audit_KRS:ID>
  4008. <default_db__x3A__BI_audit_KRS:krs>0000316678</default_db__x3A__BI_audit_KRS:krs>
  4009. <default_db__x3A__BI_audit_KRS:nazwa>KRAJOWA IZBA KOMUNIKACJI ETHERNETOWEJ</default_db__x3A__BI_audit_KRS:nazwa>
  4010. <default_db__x3A__BI_audit_KRS:S_miejscowosc>WARSZAWA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  4011. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  4012. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4013. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669911" p5:primaryKey="2669911">
  4014. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2669911</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4015. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4016. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669910" p5:primaryKey="2669910"/>
  4017. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  4018. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4019. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669902" p5:primaryKey="2669902">
  4020. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2669902</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4021. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.385054" p5:primaryKey="385054">
  4022. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>385054</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  4023. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669909" p5:primaryKey="2669909">
  4024. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2669909</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4025. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17254" p5:primaryKey="17254">
  4026. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17254</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  4027. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>&quot;POCZTA POLSKA SPÓŁKA AKCYJNA&quot;</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  4028. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  4029. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4030. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669908" p5:primaryKey="2669908">
  4031. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2669908</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4032. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.248843" p5:primaryKey="248843">
  4033. <default_db__x3A__BI_audit_KRS:ID>248843</default_db__x3A__BI_audit_KRS:ID>
  4034. <default_db__x3A__BI_audit_KRS:krs>0000334972</default_db__x3A__BI_audit_KRS:krs>
  4035. <default_db__x3A__BI_audit_KRS:nazwa>&quot;POCZTA POLSKA SPÓŁKA AKCYJNA&quot;</default_db__x3A__BI_audit_KRS:nazwa>
  4036. <default_db__x3A__BI_audit_KRS:S_miejscowosc>WARSZAWA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  4037. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  4038. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4039. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669907" p5:primaryKey="2669907">
  4040. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2669907</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4041. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4042. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669906" p5:primaryKey="2669906">
  4043. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2669906</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4044. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.159114" p5:primaryKey="159114">
  4045. <default_db__x3A__BI_audit_KRS:ID>159114</default_db__x3A__BI_audit_KRS:ID>
  4046. <default_db__x3A__BI_audit_KRS:krs>0000220589</default_db__x3A__BI_audit_KRS:krs>
  4047. <default_db__x3A__BI_audit_KRS:nazwa>STOWARZYSZENIE BUDOWNICZYCH TELEKOMUNIKACJI</default_db__x3A__BI_audit_KRS:nazwa>
  4048. <default_db__x3A__BI_audit_KRS:S_miejscowosc>WARSZAWA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  4049. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  4050. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4051. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669905" p5:primaryKey="2669905">
  4052. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2669905</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4053. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4054. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669904" p5:primaryKey="2669904">
  4055. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2669904</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4056. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.489900" p5:primaryKey="489900">
  4057. <default_db__x3A__BI_audit_KRS:ID>489900</default_db__x3A__BI_audit_KRS:ID>
  4058. <default_db__x3A__BI_audit_KRS:krs>0000604032</default_db__x3A__BI_audit_KRS:krs>
  4059. <default_db__x3A__BI_audit_KRS:nazwa>ISPHURT SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  4060. <default_db__x3A__BI_audit_KRS:S_miejscowosc>WARSZAWA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  4061. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  4062. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4063. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669903" p5:primaryKey="2669903">
  4064. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2669903</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4065. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4066. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669902" p5:primaryKey="2669902"/>
  4067. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  4068. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4069. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669894" p5:primaryKey="2669894">
  4070. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2669894</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4071. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.385053" p5:primaryKey="385053">
  4072. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>385053</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  4073. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669901" p5:primaryKey="2669901">
  4074. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2669901</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4075. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17471" p5:primaryKey="17471">
  4076. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17471</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  4077. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>EDF POLSKA SPÓŁKA AKCYJNA</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  4078. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  4079. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4080. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669900" p5:primaryKey="2669900">
  4081. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2669900</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4082. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4083. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669899" p5:primaryKey="2669899">
  4084. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2669899</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4085. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.84600" p5:primaryKey="84600">
  4086. <default_db__x3A__BI_audit_MSIG:ID>84600</default_db__x3A__BI_audit_MSIG:ID>
  4087. <default_db__x3A__BI_audit_MSIG:nazwa>ERTEL SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  4088. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  4089. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4090. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669898" p5:primaryKey="2669898">
  4091. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2669898</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4092. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4093. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669897" p5:primaryKey="2669897">
  4094. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2669897</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4095. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.435421" p5:primaryKey="435421">
  4096. <default_db__x3A__BI_audit_MSIG:ID>435421</default_db__x3A__BI_audit_MSIG:ID>
  4097. <default_db__x3A__BI_audit_MSIG:nazwa>ISPHURT SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  4098. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  4099. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4100. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669896" p5:primaryKey="2669896">
  4101. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2669896</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4102. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.489900" p5:primaryKey="489900">
  4103. <default_db__x3A__BI_audit_KRS:ID>489900</default_db__x3A__BI_audit_KRS:ID>
  4104. <default_db__x3A__BI_audit_KRS:krs>0000604032</default_db__x3A__BI_audit_KRS:krs>
  4105. <default_db__x3A__BI_audit_KRS:nazwa>ISPHURT SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  4106. <default_db__x3A__BI_audit_KRS:S_miejscowosc>WARSZAWA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  4107. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  4108. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4109. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669895" p5:primaryKey="2669895">
  4110. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2669895</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4111. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4112. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669894" p5:primaryKey="2669894"/>
  4113. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  4114. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4115. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669887" p5:primaryKey="2669887">
  4116. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2669887</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4117. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.385052" p5:primaryKey="385052">
  4118. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>385052</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  4119. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669893" p5:primaryKey="2669893">
  4120. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2669893</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4121. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17471" p5:primaryKey="17471">
  4122. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17471</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  4123. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>EDF POLSKA SPÓŁKA AKCYJNA</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  4124. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  4125. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4126. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669892" p5:primaryKey="2669892">
  4127. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2669892</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4128. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4129. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669891" p5:primaryKey="2669891">
  4130. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2669891</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4131. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.84600" p5:primaryKey="84600">
  4132. <default_db__x3A__BI_audit_MSIG:ID>84600</default_db__x3A__BI_audit_MSIG:ID>
  4133. <default_db__x3A__BI_audit_MSIG:nazwa>ERTEL SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  4134. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  4135. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4136. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669890" p5:primaryKey="2669890">
  4137. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2669890</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4138. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4139. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669889" p5:primaryKey="2669889">
  4140. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2669889</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4141. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.435421" p5:primaryKey="435421">
  4142. <default_db__x3A__BI_audit_MSIG:ID>435421</default_db__x3A__BI_audit_MSIG:ID>
  4143. <default_db__x3A__BI_audit_MSIG:nazwa>ISPHURT SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  4144. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  4145. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4146. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669888" p5:primaryKey="2669888">
  4147. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2669888</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4148. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4149. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669887" p5:primaryKey="2669887"/>
  4150. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  4151. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4152. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669879" p5:primaryKey="2669879">
  4153. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2669879</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4154. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.385051" p5:primaryKey="385051">
  4155. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>385051</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  4156. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669886" p5:primaryKey="2669886">
  4157. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2669886</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4158. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.387" p5:primaryKey="387">
  4159. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>387</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  4160. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>SII SP. Z O.O.</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  4161. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  4162. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4163. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669885" p5:primaryKey="2669885">
  4164. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2669885</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4165. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.34923" p5:primaryKey="34923">
  4166. <default_db__x3A__BI_audit_MSIG:ID>34923</default_db__x3A__BI_audit_MSIG:ID>
  4167. <default_db__x3A__BI_audit_MSIG:nazwa>„SII SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ”</default_db__x3A__BI_audit_MSIG:nazwa>
  4168. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  4169. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4170. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669884" p5:primaryKey="2669884">
  4171. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2669884</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4172. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4173. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669883" p5:primaryKey="2669883">
  4174. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2669883</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4175. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.10156" p5:primaryKey="10156">
  4176. <default_db__x3A__BI_audit_MSIG:ID>10156</default_db__x3A__BI_audit_MSIG:ID>
  4177. <default_db__x3A__BI_audit_MSIG:nazwa>PACTRA INTERNATIONAL (POLAND) SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  4178. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  4179. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4180. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669882" p5:primaryKey="2669882">
  4181. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2669882</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4182. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4183. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669881" p5:primaryKey="2669881">
  4184. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2669881</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4185. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.231302" p5:primaryKey="231302">
  4186. <default_db__x3A__BI_audit_MSIG:ID>231302</default_db__x3A__BI_audit_MSIG:ID>
  4187. <default_db__x3A__BI_audit_MSIG:nazwa>KIKE EVENTS SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  4188. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  4189. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4190. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669880" p5:primaryKey="2669880">
  4191. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2669880</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4192. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4193. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669879" p5:primaryKey="2669879"/>
  4194. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  4195. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4196. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2610335" p5:primaryKey="2610335">
  4197. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2610335</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4198. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.376055" p5:primaryKey="376055">
  4199. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>376055</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  4200. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2610339" p5:primaryKey="2610339">
  4201. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2610339</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4202. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.480038" p5:primaryKey="480038">
  4203. <default_db__x3A__BI_audit_MSIG:ID>480038</default_db__x3A__BI_audit_MSIG:ID>
  4204. <default_db__x3A__BI_audit_MSIG:nazwa>CZARNET K. SZYMURA, A. OWCZAREK SPÓŁKA JAWNA</default_db__x3A__BI_audit_MSIG:nazwa>
  4205. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  4206. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4207. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2610338" p5:primaryKey="2610338">
  4208. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2610338</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4209. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4210. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2610337" p5:primaryKey="2610337">
  4211. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2610337</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4212. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.260775" p5:primaryKey="260775">
  4213. <default_db__x3A__BI_audit_MSIG:ID>260775</default_db__x3A__BI_audit_MSIG:ID>
  4214. <default_db__x3A__BI_audit_MSIG:nazwa>MULTIPLAY SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ SPÓŁKA KOMANDYTOWA</default_db__x3A__BI_audit_MSIG:nazwa>
  4215. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  4216. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4217. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2610336" p5:primaryKey="2610336">
  4218. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2610336</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4219. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4220. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2610335" p5:primaryKey="2610335"/>
  4221. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  4222. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4223. <p5:links>
  4224. <p5:next p5:typeName="default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object" p5:backRefNS="default_db/BI_audit_ENERGA_PRACOWNICY/BI_audit_ENERGA_PRACOWNICY" p5:backRefPK="463" p5:startIndex="10">https://biuro.biall-net.pl/dev-pl/se-projects/bocian/SE//wfs-data.php/default_db/?SERVICE=WFS&amp;VERSION=1.0.0&amp;TYPENAME=default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object&amp;REQUEST=GetFeature&amp;backRefNS=default_db/BI_audit_ENERGA_PRACOWNICY/BI_audit_ENERGA_PRACOWNICY&amp;backRefPK=463&amp;backRefField=default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object&amp;maxFeatures=10&amp;startIndex=10</p5:next>
  4225. </p5:links>
  4226. </default_db__x3A__BI_audit_ENERGA_PRACOWNICY:BI_audit_ENERGA_PRACOWNICY>
  4227. </gml:featureMember>
  4228. <gml:featureMember>
  4229. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:BI_audit_ENERGA_PRACOWNICY fid="BI_audit_ENERGA_PRACOWNICY.462" p5:primaryKey="462">
  4230. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:ID>462</default_db__x3A__BI_audit_ENERGA_PRACOWNICY:ID>
  4231. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:imiona>ANNA MONIKA</default_db__x3A__BI_audit_ENERGA_PRACOWNICY:imiona>
  4232. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:nazwisko>STEC</default_db__x3A__BI_audit_ENERGA_PRACOWNICY:nazwisko>
  4233. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669872" p5:primaryKey="2669872">
  4234. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2669872</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4235. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.385050" p5:primaryKey="385050">
  4236. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>385050</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  4237. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669878" p5:primaryKey="2669878">
  4238. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2669878</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4239. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.64" p5:primaryKey="64">
  4240. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>64</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  4241. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BIPROSTAL S.A. FIRMA INŻYNIERYJNO-KONSULTINGOWA</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  4242. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  4243. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4244. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669877" p5:primaryKey="2669877">
  4245. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2669877</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4246. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4247. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669876" p5:primaryKey="2669876">
  4248. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2669876</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4249. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.232282" p5:primaryKey="232282">
  4250. <default_db__x3A__BI_audit_KRS:ID>232282</default_db__x3A__BI_audit_KRS:ID>
  4251. <default_db__x3A__BI_audit_KRS:krs>0000314669</default_db__x3A__BI_audit_KRS:krs>
  4252. <default_db__x3A__BI_audit_KRS:nazwa>CONNECTED SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  4253. <default_db__x3A__BI_audit_KRS:S_miejscowosc>KRAKÓW</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  4254. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  4255. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4256. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669875" p5:primaryKey="2669875">
  4257. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2669875</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4258. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4259. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669874" p5:primaryKey="2669874">
  4260. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2669874</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4261. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.233894" p5:primaryKey="233894">
  4262. <default_db__x3A__BI_audit_KRS:ID>233894</default_db__x3A__BI_audit_KRS:ID>
  4263. <default_db__x3A__BI_audit_KRS:krs>0000316678</default_db__x3A__BI_audit_KRS:krs>
  4264. <default_db__x3A__BI_audit_KRS:nazwa>KRAJOWA IZBA KOMUNIKACJI ETHERNETOWEJ</default_db__x3A__BI_audit_KRS:nazwa>
  4265. <default_db__x3A__BI_audit_KRS:S_miejscowosc>WARSZAWA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  4266. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  4267. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4268. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669873" p5:primaryKey="2669873">
  4269. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2669873</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4270. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4271. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2669872" p5:primaryKey="2669872"/>
  4272. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  4273. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4274. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2595071" p5:primaryKey="2595071">
  4275. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2595071</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4276. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.373002" p5:primaryKey="373002">
  4277. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>373002</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  4278. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2595075" p5:primaryKey="2595075">
  4279. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2595075</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4280. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.158444" p5:primaryKey="158444">
  4281. <default_db__x3A__BI_audit_MSIG:ID>158444</default_db__x3A__BI_audit_MSIG:ID>
  4282. <default_db__x3A__BI_audit_MSIG:nazwa>EUROPEJSKIE STOWARZYSZENIE PROMOCJI WIEDZY</default_db__x3A__BI_audit_MSIG:nazwa>
  4283. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  4284. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4285. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2595074" p5:primaryKey="2595074">
  4286. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2595074</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4287. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4288. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2595073" p5:primaryKey="2595073">
  4289. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2595073</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4290. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.492587" p5:primaryKey="492587">
  4291. <default_db__x3A__BI_audit_MSIG:ID>492587</default_db__x3A__BI_audit_MSIG:ID>
  4292. <default_db__x3A__BI_audit_MSIG:nazwa>KIKE SAFE SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  4293. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  4294. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4295. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2595072" p5:primaryKey="2595072">
  4296. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2595072</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4297. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4298. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2595071" p5:primaryKey="2595071"/>
  4299. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  4300. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4301. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2595066" p5:primaryKey="2595066">
  4302. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2595066</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4303. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.373001" p5:primaryKey="373001">
  4304. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>373001</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  4305. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2595070" p5:primaryKey="2595070">
  4306. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2595070</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4307. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4308. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2595069" p5:primaryKey="2595069">
  4309. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2595069</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4310. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4311. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2595068" p5:primaryKey="2595068">
  4312. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2595068</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4313. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.492587" p5:primaryKey="492587">
  4314. <default_db__x3A__BI_audit_MSIG:ID>492587</default_db__x3A__BI_audit_MSIG:ID>
  4315. <default_db__x3A__BI_audit_MSIG:nazwa>KIKE SAFE SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  4316. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  4317. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4318. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2595067" p5:primaryKey="2595067">
  4319. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2595067</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4320. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4321. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2595066" p5:primaryKey="2595066"/>
  4322. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  4323. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4324. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2595061" p5:primaryKey="2595061">
  4325. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2595061</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4326. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.373000" p5:primaryKey="373000">
  4327. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>373000</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  4328. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2595065" p5:primaryKey="2595065">
  4329. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2595065</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4330. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4331. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2595064" p5:primaryKey="2595064">
  4332. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2595064</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4333. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4334. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2595063" p5:primaryKey="2595063">
  4335. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2595063</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4336. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.492587" p5:primaryKey="492587">
  4337. <default_db__x3A__BI_audit_MSIG:ID>492587</default_db__x3A__BI_audit_MSIG:ID>
  4338. <default_db__x3A__BI_audit_MSIG:nazwa>KIKE SAFE SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  4339. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  4340. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4341. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2595062" p5:primaryKey="2595062">
  4342. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2595062</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4343. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4344. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2595061" p5:primaryKey="2595061"/>
  4345. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  4346. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4347. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2595056" p5:primaryKey="2595056">
  4348. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2595056</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4349. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.372999" p5:primaryKey="372999">
  4350. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>372999</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  4351. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2595060" p5:primaryKey="2595060">
  4352. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2595060</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4353. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.396691" p5:primaryKey="396691">
  4354. <default_db__x3A__BI_audit_MSIG:ID>396691</default_db__x3A__BI_audit_MSIG:ID>
  4355. <default_db__x3A__BI_audit_MSIG:nazwa>V4ICT SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  4356. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  4357. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4358. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2595059" p5:primaryKey="2595059">
  4359. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2595059</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4360. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4361. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2595058" p5:primaryKey="2595058">
  4362. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2595058</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4363. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.492587" p5:primaryKey="492587">
  4364. <default_db__x3A__BI_audit_MSIG:ID>492587</default_db__x3A__BI_audit_MSIG:ID>
  4365. <default_db__x3A__BI_audit_MSIG:nazwa>KIKE SAFE SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  4366. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  4367. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4368. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2595057" p5:primaryKey="2595057">
  4369. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2595057</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4370. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4371. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2595056" p5:primaryKey="2595056"/>
  4372. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  4373. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4374. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2595051" p5:primaryKey="2595051">
  4375. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2595051</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4376. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.372998" p5:primaryKey="372998">
  4377. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>372998</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  4378. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2595055" p5:primaryKey="2595055">
  4379. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2595055</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4380. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4381. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2595054" p5:primaryKey="2595054">
  4382. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2595054</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4383. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4384. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2595053" p5:primaryKey="2595053">
  4385. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2595053</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4386. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.492587" p5:primaryKey="492587">
  4387. <default_db__x3A__BI_audit_MSIG:ID>492587</default_db__x3A__BI_audit_MSIG:ID>
  4388. <default_db__x3A__BI_audit_MSIG:nazwa>KIKE SAFE SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  4389. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  4390. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4391. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2595052" p5:primaryKey="2595052">
  4392. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2595052</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4393. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4394. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2595051" p5:primaryKey="2595051"/>
  4395. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  4396. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4397. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2595046" p5:primaryKey="2595046">
  4398. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2595046</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4399. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.372997" p5:primaryKey="372997">
  4400. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>372997</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  4401. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2595050" p5:primaryKey="2595050">
  4402. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2595050</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4403. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.233894" p5:primaryKey="233894">
  4404. <default_db__x3A__BI_audit_KRS:ID>233894</default_db__x3A__BI_audit_KRS:ID>
  4405. <default_db__x3A__BI_audit_KRS:krs>0000316678</default_db__x3A__BI_audit_KRS:krs>
  4406. <default_db__x3A__BI_audit_KRS:nazwa>KRAJOWA IZBA KOMUNIKACJI ETHERNETOWEJ</default_db__x3A__BI_audit_KRS:nazwa>
  4407. <default_db__x3A__BI_audit_KRS:S_miejscowosc>WARSZAWA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  4408. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  4409. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4410. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2595049" p5:primaryKey="2595049">
  4411. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2595049</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4412. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4413. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2595048" p5:primaryKey="2595048">
  4414. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2595048</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4415. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.492587" p5:primaryKey="492587">
  4416. <default_db__x3A__BI_audit_MSIG:ID>492587</default_db__x3A__BI_audit_MSIG:ID>
  4417. <default_db__x3A__BI_audit_MSIG:nazwa>KIKE SAFE SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  4418. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  4419. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4420. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2595047" p5:primaryKey="2595047">
  4421. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2595047</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4422. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4423. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2595046" p5:primaryKey="2595046"/>
  4424. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  4425. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4426. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2595041" p5:primaryKey="2595041">
  4427. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2595041</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4428. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.372996" p5:primaryKey="372996">
  4429. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>372996</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  4430. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2595045" p5:primaryKey="2595045">
  4431. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2595045</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4432. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4433. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2595044" p5:primaryKey="2595044">
  4434. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2595044</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4435. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4436. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2595043" p5:primaryKey="2595043">
  4437. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2595043</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4438. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.492587" p5:primaryKey="492587">
  4439. <default_db__x3A__BI_audit_MSIG:ID>492587</default_db__x3A__BI_audit_MSIG:ID>
  4440. <default_db__x3A__BI_audit_MSIG:nazwa>KIKE SAFE SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  4441. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  4442. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4443. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2595042" p5:primaryKey="2595042">
  4444. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2595042</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4445. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4446. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2595041" p5:primaryKey="2595041"/>
  4447. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  4448. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4449. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2595036" p5:primaryKey="2595036">
  4450. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2595036</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4451. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.372995" p5:primaryKey="372995">
  4452. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>372995</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  4453. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2595040" p5:primaryKey="2595040">
  4454. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2595040</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4455. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4456. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2595039" p5:primaryKey="2595039">
  4457. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2595039</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4458. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4459. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2595038" p5:primaryKey="2595038">
  4460. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2595038</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4461. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.492587" p5:primaryKey="492587">
  4462. <default_db__x3A__BI_audit_MSIG:ID>492587</default_db__x3A__BI_audit_MSIG:ID>
  4463. <default_db__x3A__BI_audit_MSIG:nazwa>KIKE SAFE SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  4464. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  4465. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4466. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2595037" p5:primaryKey="2595037">
  4467. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2595037</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4468. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4469. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2595036" p5:primaryKey="2595036"/>
  4470. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  4471. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4472. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2595031" p5:primaryKey="2595031">
  4473. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2595031</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4474. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.372994" p5:primaryKey="372994">
  4475. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>372994</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  4476. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2595035" p5:primaryKey="2595035">
  4477. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2595035</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4478. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4479. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2595034" p5:primaryKey="2595034">
  4480. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2595034</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4481. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.548424" p5:primaryKey="548424">
  4482. <default_db__x3A__BI_audit_KRS:ID>548424</default_db__x3A__BI_audit_KRS:ID>
  4483. <default_db__x3A__BI_audit_KRS:krs>0000665486</default_db__x3A__BI_audit_KRS:krs>
  4484. <default_db__x3A__BI_audit_KRS:nazwa>KIKE SAFE SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  4485. <default_db__x3A__BI_audit_KRS:S_miejscowosc>WARSZAWA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  4486. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  4487. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4488. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2595033" p5:primaryKey="2595033">
  4489. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2595033</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4490. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.492587" p5:primaryKey="492587">
  4491. <default_db__x3A__BI_audit_MSIG:ID>492587</default_db__x3A__BI_audit_MSIG:ID>
  4492. <default_db__x3A__BI_audit_MSIG:nazwa>KIKE SAFE SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  4493. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  4494. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4495. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2595032" p5:primaryKey="2595032">
  4496. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2595032</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4497. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4498. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2595031" p5:primaryKey="2595031"/>
  4499. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  4500. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4501. <p5:links>
  4502. <p5:next p5:typeName="default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object" p5:backRefNS="default_db/BI_audit_ENERGA_PRACOWNICY/BI_audit_ENERGA_PRACOWNICY" p5:backRefPK="462" p5:startIndex="10">https://biuro.biall-net.pl/dev-pl/se-projects/bocian/SE//wfs-data.php/default_db/?SERVICE=WFS&amp;VERSION=1.0.0&amp;TYPENAME=default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object&amp;REQUEST=GetFeature&amp;backRefNS=default_db/BI_audit_ENERGA_PRACOWNICY/BI_audit_ENERGA_PRACOWNICY&amp;backRefPK=462&amp;backRefField=default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object&amp;maxFeatures=10&amp;startIndex=10</p5:next>
  4503. </p5:links>
  4504. </default_db__x3A__BI_audit_ENERGA_PRACOWNICY:BI_audit_ENERGA_PRACOWNICY>
  4505. </gml:featureMember>
  4506. <gml:featureMember>
  4507. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:BI_audit_ENERGA_PRACOWNICY fid="BI_audit_ENERGA_PRACOWNICY.461" p5:primaryKey="461">
  4508. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:ID>461</default_db__x3A__BI_audit_ENERGA_PRACOWNICY:ID>
  4509. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:imiona>ALICJA</default_db__x3A__BI_audit_ENERGA_PRACOWNICY:imiona>
  4510. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:nazwisko>WIECZORKOWSKA</default_db__x3A__BI_audit_ENERGA_PRACOWNICY:nazwisko>
  4511. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704388" p5:primaryKey="2704388">
  4512. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704388</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4513. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.389701" p5:primaryKey="389701">
  4514. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>389701</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  4515. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704392" p5:primaryKey="2704392">
  4516. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704392</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4517. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17228" p5:primaryKey="17228">
  4518. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17228</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  4519. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BINDER</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  4520. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  4521. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4522. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704391" p5:primaryKey="2704391">
  4523. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704391</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4524. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4525. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704390" p5:primaryKey="2704390">
  4526. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704390</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4527. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.389967" p5:primaryKey="389967">
  4528. <default_db__x3A__BI_audit_KRS:ID>389967</default_db__x3A__BI_audit_KRS:ID>
  4529. <default_db__x3A__BI_audit_KRS:krs>0000497074</default_db__x3A__BI_audit_KRS:krs>
  4530. <default_db__x3A__BI_audit_KRS:nazwa>&quot;ROZWÓJ I PRAWORZĄDNOŚĆ&quot;</default_db__x3A__BI_audit_KRS:nazwa>
  4531. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  4532. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  4533. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4534. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704389" p5:primaryKey="2704389">
  4535. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704389</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4536. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4537. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704388" p5:primaryKey="2704388"/>
  4538. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  4539. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4540. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704380" p5:primaryKey="2704380">
  4541. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704380</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4542. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.389700" p5:primaryKey="389700">
  4543. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>389700</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  4544. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704387" p5:primaryKey="2704387">
  4545. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704387</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4546. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17228" p5:primaryKey="17228">
  4547. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17228</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  4548. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BINDER</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  4549. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  4550. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4551. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704386" p5:primaryKey="2704386">
  4552. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704386</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4553. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4554. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704385" p5:primaryKey="2704385">
  4555. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704385</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4556. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.457386" p5:primaryKey="457386">
  4557. <default_db__x3A__BI_audit_MSIG:ID>457386</default_db__x3A__BI_audit_MSIG:ID>
  4558. <default_db__x3A__BI_audit_MSIG:nazwa>NETDAY SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  4559. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  4560. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4561. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704384" p5:primaryKey="2704384">
  4562. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704384</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4563. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.512535" p5:primaryKey="512535">
  4564. <default_db__x3A__BI_audit_KRS:ID>512535</default_db__x3A__BI_audit_KRS:ID>
  4565. <default_db__x3A__BI_audit_KRS:krs>0000627944</default_db__x3A__BI_audit_KRS:krs>
  4566. <default_db__x3A__BI_audit_KRS:nazwa>NETDAY SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  4567. <default_db__x3A__BI_audit_KRS:S_miejscowosc>OTOMIN</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  4568. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  4569. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4570. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704383" p5:primaryKey="2704383">
  4571. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704383</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4572. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4573. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704382" p5:primaryKey="2704382">
  4574. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704382</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4575. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.389967" p5:primaryKey="389967">
  4576. <default_db__x3A__BI_audit_KRS:ID>389967</default_db__x3A__BI_audit_KRS:ID>
  4577. <default_db__x3A__BI_audit_KRS:krs>0000497074</default_db__x3A__BI_audit_KRS:krs>
  4578. <default_db__x3A__BI_audit_KRS:nazwa>&quot;ROZWÓJ I PRAWORZĄDNOŚĆ&quot;</default_db__x3A__BI_audit_KRS:nazwa>
  4579. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  4580. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  4581. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4582. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704381" p5:primaryKey="2704381">
  4583. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704381</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4584. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4585. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704380" p5:primaryKey="2704380"/>
  4586. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  4587. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4588. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704372" p5:primaryKey="2704372">
  4589. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704372</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4590. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.389699" p5:primaryKey="389699">
  4591. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>389699</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  4592. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704379" p5:primaryKey="2704379">
  4593. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704379</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4594. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17228" p5:primaryKey="17228">
  4595. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17228</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  4596. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BINDER</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  4597. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  4598. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4599. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704378" p5:primaryKey="2704378">
  4600. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704378</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4601. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4602. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704377" p5:primaryKey="2704377">
  4603. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704377</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4604. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.383757" p5:primaryKey="383757">
  4605. <default_db__x3A__BI_audit_MSIG:ID>383757</default_db__x3A__BI_audit_MSIG:ID>
  4606. <default_db__x3A__BI_audit_MSIG:nazwa>THE BINDER CONSULTING SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  4607. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  4608. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4609. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704376" p5:primaryKey="2704376">
  4610. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704376</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4611. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.437385" p5:primaryKey="437385">
  4612. <default_db__x3A__BI_audit_KRS:ID>437385</default_db__x3A__BI_audit_KRS:ID>
  4613. <default_db__x3A__BI_audit_KRS:krs>0000548256</default_db__x3A__BI_audit_KRS:krs>
  4614. <default_db__x3A__BI_audit_KRS:nazwa>THE BINDER CONSULTING SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  4615. <default_db__x3A__BI_audit_KRS:S_miejscowosc>OTOMIN</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  4616. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  4617. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4618. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704375" p5:primaryKey="2704375">
  4619. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704375</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4620. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4621. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704374" p5:primaryKey="2704374">
  4622. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704374</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4623. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.389967" p5:primaryKey="389967">
  4624. <default_db__x3A__BI_audit_KRS:ID>389967</default_db__x3A__BI_audit_KRS:ID>
  4625. <default_db__x3A__BI_audit_KRS:krs>0000497074</default_db__x3A__BI_audit_KRS:krs>
  4626. <default_db__x3A__BI_audit_KRS:nazwa>&quot;ROZWÓJ I PRAWORZĄDNOŚĆ&quot;</default_db__x3A__BI_audit_KRS:nazwa>
  4627. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  4628. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  4629. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4630. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704373" p5:primaryKey="2704373">
  4631. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704373</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4632. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4633. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704372" p5:primaryKey="2704372"/>
  4634. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  4635. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4636. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704364" p5:primaryKey="2704364">
  4637. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704364</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4638. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.389698" p5:primaryKey="389698">
  4639. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>389698</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  4640. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704371" p5:primaryKey="2704371">
  4641. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704371</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4642. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17228" p5:primaryKey="17228">
  4643. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17228</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  4644. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BINDER</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  4645. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  4646. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4647. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704370" p5:primaryKey="2704370">
  4648. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704370</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4649. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4650. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704369" p5:primaryKey="2704369">
  4651. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704369</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4652. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.197902" p5:primaryKey="197902">
  4653. <default_db__x3A__BI_audit_MSIG:ID>197902</default_db__x3A__BI_audit_MSIG:ID>
  4654. <default_db__x3A__BI_audit_MSIG:nazwa>AMS SYSTEM SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  4655. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  4656. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4657. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704368" p5:primaryKey="2704368">
  4658. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704368</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4659. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.203646" p5:primaryKey="203646">
  4660. <default_db__x3A__BI_audit_KRS:ID>203646</default_db__x3A__BI_audit_KRS:ID>
  4661. <default_db__x3A__BI_audit_KRS:krs>0000278304</default_db__x3A__BI_audit_KRS:krs>
  4662. <default_db__x3A__BI_audit_KRS:nazwa>AMS SYSTEM SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  4663. <default_db__x3A__BI_audit_KRS:S_miejscowosc>WARSZAWA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  4664. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  4665. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4666. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704367" p5:primaryKey="2704367">
  4667. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704367</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4668. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4669. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704366" p5:primaryKey="2704366">
  4670. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704366</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4671. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.389967" p5:primaryKey="389967">
  4672. <default_db__x3A__BI_audit_KRS:ID>389967</default_db__x3A__BI_audit_KRS:ID>
  4673. <default_db__x3A__BI_audit_KRS:krs>0000497074</default_db__x3A__BI_audit_KRS:krs>
  4674. <default_db__x3A__BI_audit_KRS:nazwa>&quot;ROZWÓJ I PRAWORZĄDNOŚĆ&quot;</default_db__x3A__BI_audit_KRS:nazwa>
  4675. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  4676. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  4677. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4678. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704365" p5:primaryKey="2704365">
  4679. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704365</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4680. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4681. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704364" p5:primaryKey="2704364"/>
  4682. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  4683. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4684. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704358" p5:primaryKey="2704358">
  4685. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704358</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4686. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.389697" p5:primaryKey="389697">
  4687. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>389697</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  4688. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704363" p5:primaryKey="2704363">
  4689. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704363</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4690. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17230" p5:primaryKey="17230">
  4691. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17230</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  4692. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BIALL Sp. z o.o.</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  4693. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  4694. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4695. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704362" p5:primaryKey="2704362">
  4696. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704362</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4697. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.161323" p5:primaryKey="161323">
  4698. <default_db__x3A__BI_audit_KRS:ID>161323</default_db__x3A__BI_audit_KRS:ID>
  4699. <default_db__x3A__BI_audit_KRS:krs>0000223476</default_db__x3A__BI_audit_KRS:krs>
  4700. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  4701. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  4702. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  4703. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4704. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704361" p5:primaryKey="2704361">
  4705. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704361</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4706. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4707. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704360" p5:primaryKey="2704360">
  4708. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704360</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4709. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.389967" p5:primaryKey="389967">
  4710. <default_db__x3A__BI_audit_KRS:ID>389967</default_db__x3A__BI_audit_KRS:ID>
  4711. <default_db__x3A__BI_audit_KRS:krs>0000497074</default_db__x3A__BI_audit_KRS:krs>
  4712. <default_db__x3A__BI_audit_KRS:nazwa>&quot;ROZWÓJ I PRAWORZĄDNOŚĆ&quot;</default_db__x3A__BI_audit_KRS:nazwa>
  4713. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  4714. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  4715. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4716. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704359" p5:primaryKey="2704359">
  4717. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704359</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4718. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4719. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704358" p5:primaryKey="2704358"/>
  4720. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  4721. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4722. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704351" p5:primaryKey="2704351">
  4723. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704351</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4724. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.389696" p5:primaryKey="389696">
  4725. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>389696</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  4726. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704357" p5:primaryKey="2704357">
  4727. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704357</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4728. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17230" p5:primaryKey="17230">
  4729. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17230</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  4730. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BIALL Sp. z o.o.</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  4731. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  4732. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4733. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704356" p5:primaryKey="2704356">
  4734. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704356</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4735. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4736. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704355" p5:primaryKey="2704355">
  4737. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704355</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4738. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.161323" p5:primaryKey="161323">
  4739. <default_db__x3A__BI_audit_KRS:ID>161323</default_db__x3A__BI_audit_KRS:ID>
  4740. <default_db__x3A__BI_audit_KRS:krs>0000223476</default_db__x3A__BI_audit_KRS:krs>
  4741. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  4742. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  4743. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  4744. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4745. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704354" p5:primaryKey="2704354">
  4746. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704354</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4747. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4748. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704353" p5:primaryKey="2704353">
  4749. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704353</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4750. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.389967" p5:primaryKey="389967">
  4751. <default_db__x3A__BI_audit_KRS:ID>389967</default_db__x3A__BI_audit_KRS:ID>
  4752. <default_db__x3A__BI_audit_KRS:krs>0000497074</default_db__x3A__BI_audit_KRS:krs>
  4753. <default_db__x3A__BI_audit_KRS:nazwa>&quot;ROZWÓJ I PRAWORZĄDNOŚĆ&quot;</default_db__x3A__BI_audit_KRS:nazwa>
  4754. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  4755. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  4756. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4757. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704352" p5:primaryKey="2704352">
  4758. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704352</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4759. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4760. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704351" p5:primaryKey="2704351"/>
  4761. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  4762. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4763. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704343" p5:primaryKey="2704343">
  4764. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704343</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4765. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.389695" p5:primaryKey="389695">
  4766. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>389695</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  4767. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704350" p5:primaryKey="2704350">
  4768. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704350</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4769. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17230" p5:primaryKey="17230">
  4770. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17230</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  4771. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BIALL Sp. z o.o.</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  4772. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  4773. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4774. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704349" p5:primaryKey="2704349">
  4775. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704349</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4776. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.161323" p5:primaryKey="161323">
  4777. <default_db__x3A__BI_audit_KRS:ID>161323</default_db__x3A__BI_audit_KRS:ID>
  4778. <default_db__x3A__BI_audit_KRS:krs>0000223476</default_db__x3A__BI_audit_KRS:krs>
  4779. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  4780. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  4781. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  4782. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4783. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704348" p5:primaryKey="2704348">
  4784. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704348</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4785. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4786. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704347" p5:primaryKey="2704347">
  4787. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704347</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4788. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.151308" p5:primaryKey="151308">
  4789. <default_db__x3A__BI_audit_KRS:ID>151308</default_db__x3A__BI_audit_KRS:ID>
  4790. <default_db__x3A__BI_audit_KRS:krs>0000210311</default_db__x3A__BI_audit_KRS:krs>
  4791. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL-NET&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  4792. <default_db__x3A__BI_audit_KRS:S_miejscowosc>OTOMIN</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  4793. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  4794. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4795. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704346" p5:primaryKey="2704346">
  4796. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704346</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4797. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4798. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704345" p5:primaryKey="2704345">
  4799. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704345</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4800. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.389967" p5:primaryKey="389967">
  4801. <default_db__x3A__BI_audit_KRS:ID>389967</default_db__x3A__BI_audit_KRS:ID>
  4802. <default_db__x3A__BI_audit_KRS:krs>0000497074</default_db__x3A__BI_audit_KRS:krs>
  4803. <default_db__x3A__BI_audit_KRS:nazwa>&quot;ROZWÓJ I PRAWORZĄDNOŚĆ&quot;</default_db__x3A__BI_audit_KRS:nazwa>
  4804. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  4805. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  4806. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4807. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704344" p5:primaryKey="2704344">
  4808. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704344</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4809. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4810. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704343" p5:primaryKey="2704343"/>
  4811. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  4812. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4813. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704335" p5:primaryKey="2704335">
  4814. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704335</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4815. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.389694" p5:primaryKey="389694">
  4816. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>389694</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  4817. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704342" p5:primaryKey="2704342">
  4818. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704342</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4819. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17230" p5:primaryKey="17230">
  4820. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17230</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  4821. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BIALL Sp. z o.o.</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  4822. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  4823. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4824. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704341" p5:primaryKey="2704341">
  4825. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704341</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4826. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.161323" p5:primaryKey="161323">
  4827. <default_db__x3A__BI_audit_KRS:ID>161323</default_db__x3A__BI_audit_KRS:ID>
  4828. <default_db__x3A__BI_audit_KRS:krs>0000223476</default_db__x3A__BI_audit_KRS:krs>
  4829. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  4830. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  4831. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  4832. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4833. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704340" p5:primaryKey="2704340">
  4834. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704340</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4835. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4836. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704339" p5:primaryKey="2704339">
  4837. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704339</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4838. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.151308" p5:primaryKey="151308">
  4839. <default_db__x3A__BI_audit_KRS:ID>151308</default_db__x3A__BI_audit_KRS:ID>
  4840. <default_db__x3A__BI_audit_KRS:krs>0000210311</default_db__x3A__BI_audit_KRS:krs>
  4841. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL-NET&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  4842. <default_db__x3A__BI_audit_KRS:S_miejscowosc>OTOMIN</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  4843. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  4844. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4845. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704338" p5:primaryKey="2704338">
  4846. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704338</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4847. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4848. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704337" p5:primaryKey="2704337">
  4849. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704337</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4850. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.389967" p5:primaryKey="389967">
  4851. <default_db__x3A__BI_audit_KRS:ID>389967</default_db__x3A__BI_audit_KRS:ID>
  4852. <default_db__x3A__BI_audit_KRS:krs>0000497074</default_db__x3A__BI_audit_KRS:krs>
  4853. <default_db__x3A__BI_audit_KRS:nazwa>&quot;ROZWÓJ I PRAWORZĄDNOŚĆ&quot;</default_db__x3A__BI_audit_KRS:nazwa>
  4854. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  4855. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  4856. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4857. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704336" p5:primaryKey="2704336">
  4858. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704336</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4859. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4860. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704335" p5:primaryKey="2704335"/>
  4861. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  4862. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4863. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704327" p5:primaryKey="2704327">
  4864. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704327</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4865. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.389693" p5:primaryKey="389693">
  4866. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>389693</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  4867. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704334" p5:primaryKey="2704334">
  4868. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704334</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4869. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17230" p5:primaryKey="17230">
  4870. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17230</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  4871. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BIALL Sp. z o.o.</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  4872. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  4873. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4874. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704333" p5:primaryKey="2704333">
  4875. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704333</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4876. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.161323" p5:primaryKey="161323">
  4877. <default_db__x3A__BI_audit_KRS:ID>161323</default_db__x3A__BI_audit_KRS:ID>
  4878. <default_db__x3A__BI_audit_KRS:krs>0000223476</default_db__x3A__BI_audit_KRS:krs>
  4879. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  4880. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  4881. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  4882. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4883. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704332" p5:primaryKey="2704332">
  4884. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704332</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4885. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4886. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704331" p5:primaryKey="2704331">
  4887. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704331</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4888. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.151308" p5:primaryKey="151308">
  4889. <default_db__x3A__BI_audit_KRS:ID>151308</default_db__x3A__BI_audit_KRS:ID>
  4890. <default_db__x3A__BI_audit_KRS:krs>0000210311</default_db__x3A__BI_audit_KRS:krs>
  4891. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL-NET&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  4892. <default_db__x3A__BI_audit_KRS:S_miejscowosc>OTOMIN</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  4893. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  4894. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4895. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704330" p5:primaryKey="2704330">
  4896. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704330</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4897. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4898. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704329" p5:primaryKey="2704329">
  4899. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704329</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4900. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.389967" p5:primaryKey="389967">
  4901. <default_db__x3A__BI_audit_KRS:ID>389967</default_db__x3A__BI_audit_KRS:ID>
  4902. <default_db__x3A__BI_audit_KRS:krs>0000497074</default_db__x3A__BI_audit_KRS:krs>
  4903. <default_db__x3A__BI_audit_KRS:nazwa>&quot;ROZWÓJ I PRAWORZĄDNOŚĆ&quot;</default_db__x3A__BI_audit_KRS:nazwa>
  4904. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  4905. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  4906. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4907. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704328" p5:primaryKey="2704328">
  4908. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704328</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4909. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4910. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704327" p5:primaryKey="2704327"/>
  4911. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  4912. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4913. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704319" p5:primaryKey="2704319">
  4914. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704319</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4915. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.389692" p5:primaryKey="389692">
  4916. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>389692</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  4917. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704326" p5:primaryKey="2704326">
  4918. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704326</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4919. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17228" p5:primaryKey="17228">
  4920. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17228</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  4921. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BINDER</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  4922. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  4923. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4924. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704325" p5:primaryKey="2704325">
  4925. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704325</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4926. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4927. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704324" p5:primaryKey="2704324">
  4928. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704324</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4929. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.36735" p5:primaryKey="36735">
  4930. <default_db__x3A__BI_audit_MSIG:ID>36735</default_db__x3A__BI_audit_MSIG:ID>
  4931. <default_db__x3A__BI_audit_MSIG:nazwa>„BIALL-NET”SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  4932. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  4933. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4934. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704323" p5:primaryKey="2704323">
  4935. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704323</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4936. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.151308" p5:primaryKey="151308">
  4937. <default_db__x3A__BI_audit_KRS:ID>151308</default_db__x3A__BI_audit_KRS:ID>
  4938. <default_db__x3A__BI_audit_KRS:krs>0000210311</default_db__x3A__BI_audit_KRS:krs>
  4939. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL-NET&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  4940. <default_db__x3A__BI_audit_KRS:S_miejscowosc>OTOMIN</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  4941. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  4942. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4943. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704322" p5:primaryKey="2704322">
  4944. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704322</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4945. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4946. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704321" p5:primaryKey="2704321">
  4947. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704321</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4948. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.389967" p5:primaryKey="389967">
  4949. <default_db__x3A__BI_audit_KRS:ID>389967</default_db__x3A__BI_audit_KRS:ID>
  4950. <default_db__x3A__BI_audit_KRS:krs>0000497074</default_db__x3A__BI_audit_KRS:krs>
  4951. <default_db__x3A__BI_audit_KRS:nazwa>&quot;ROZWÓJ I PRAWORZĄDNOŚĆ&quot;</default_db__x3A__BI_audit_KRS:nazwa>
  4952. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  4953. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  4954. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4955. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704320" p5:primaryKey="2704320">
  4956. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2704320</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4957. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4958. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2704319" p5:primaryKey="2704319"/>
  4959. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  4960. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4961. <p5:links>
  4962. <p5:next p5:typeName="default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object" p5:backRefNS="default_db/BI_audit_ENERGA_PRACOWNICY/BI_audit_ENERGA_PRACOWNICY" p5:backRefPK="461" p5:startIndex="10">https://biuro.biall-net.pl/dev-pl/se-projects/bocian/SE//wfs-data.php/default_db/?SERVICE=WFS&amp;VERSION=1.0.0&amp;TYPENAME=default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object&amp;REQUEST=GetFeature&amp;backRefNS=default_db/BI_audit_ENERGA_PRACOWNICY/BI_audit_ENERGA_PRACOWNICY&amp;backRefPK=461&amp;backRefField=default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object&amp;maxFeatures=10&amp;startIndex=10</p5:next>
  4963. </p5:links>
  4964. </default_db__x3A__BI_audit_ENERGA_PRACOWNICY:BI_audit_ENERGA_PRACOWNICY>
  4965. </gml:featureMember>
  4966. <gml:featureMember>
  4967. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:BI_audit_ENERGA_PRACOWNICY fid="BI_audit_ENERGA_PRACOWNICY.460" p5:primaryKey="460">
  4968. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:ID>460</default_db__x3A__BI_audit_ENERGA_PRACOWNICY:ID>
  4969. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:imiona>BIALL-NET Sp. z o.o.</default_db__x3A__BI_audit_ENERGA_PRACOWNICY:imiona>
  4970. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703303" p5:primaryKey="2703303">
  4971. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703303</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4972. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.389555" p5:primaryKey="389555">
  4973. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>389555</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  4974. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703309" p5:primaryKey="2703309">
  4975. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703309</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4976. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17228" p5:primaryKey="17228">
  4977. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17228</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  4978. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BINDER</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  4979. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  4980. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4981. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703308" p5:primaryKey="2703308">
  4982. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703308</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4983. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4984. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703307" p5:primaryKey="2703307">
  4985. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703307</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4986. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.457386" p5:primaryKey="457386">
  4987. <default_db__x3A__BI_audit_MSIG:ID>457386</default_db__x3A__BI_audit_MSIG:ID>
  4988. <default_db__x3A__BI_audit_MSIG:nazwa>NETDAY SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  4989. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  4990. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4991. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703306" p5:primaryKey="2703306">
  4992. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703306</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4993. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4994. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703305" p5:primaryKey="2703305">
  4995. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703305</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4996. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  4997. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703304" p5:primaryKey="2703304">
  4998. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703304</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  4999. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.151308" p5:primaryKey="151308">
  5000. <default_db__x3A__BI_audit_KRS:ID>151308</default_db__x3A__BI_audit_KRS:ID>
  5001. <default_db__x3A__BI_audit_KRS:krs>0000210311</default_db__x3A__BI_audit_KRS:krs>
  5002. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL-NET&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  5003. <default_db__x3A__BI_audit_KRS:S_miejscowosc>OTOMIN</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  5004. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  5005. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5006. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703303" p5:primaryKey="2703303"/>
  5007. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  5008. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5009. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703295" p5:primaryKey="2703295">
  5010. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703295</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5011. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.389554" p5:primaryKey="389554">
  5012. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>389554</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  5013. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703302" p5:primaryKey="2703302">
  5014. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703302</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5015. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17228" p5:primaryKey="17228">
  5016. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17228</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  5017. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BINDER</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  5018. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  5019. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5020. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703301" p5:primaryKey="2703301">
  5021. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703301</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5022. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5023. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703300" p5:primaryKey="2703300">
  5024. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703300</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5025. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.512535" p5:primaryKey="512535">
  5026. <default_db__x3A__BI_audit_KRS:ID>512535</default_db__x3A__BI_audit_KRS:ID>
  5027. <default_db__x3A__BI_audit_KRS:krs>0000627944</default_db__x3A__BI_audit_KRS:krs>
  5028. <default_db__x3A__BI_audit_KRS:nazwa>NETDAY SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  5029. <default_db__x3A__BI_audit_KRS:S_miejscowosc>OTOMIN</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  5030. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  5031. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5032. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703299" p5:primaryKey="2703299">
  5033. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703299</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5034. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.457386" p5:primaryKey="457386">
  5035. <default_db__x3A__BI_audit_MSIG:ID>457386</default_db__x3A__BI_audit_MSIG:ID>
  5036. <default_db__x3A__BI_audit_MSIG:nazwa>NETDAY SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  5037. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  5038. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5039. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703298" p5:primaryKey="2703298">
  5040. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703298</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5041. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5042. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703297" p5:primaryKey="2703297">
  5043. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703297</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5044. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5045. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703296" p5:primaryKey="2703296">
  5046. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703296</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5047. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.151308" p5:primaryKey="151308">
  5048. <default_db__x3A__BI_audit_KRS:ID>151308</default_db__x3A__BI_audit_KRS:ID>
  5049. <default_db__x3A__BI_audit_KRS:krs>0000210311</default_db__x3A__BI_audit_KRS:krs>
  5050. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL-NET&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  5051. <default_db__x3A__BI_audit_KRS:S_miejscowosc>OTOMIN</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  5052. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  5053. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5054. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703295" p5:primaryKey="2703295"/>
  5055. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  5056. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5057. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703288" p5:primaryKey="2703288">
  5058. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703288</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5059. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.389553" p5:primaryKey="389553">
  5060. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>389553</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  5061. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703294" p5:primaryKey="2703294">
  5062. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703294</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5063. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17228" p5:primaryKey="17228">
  5064. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17228</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  5065. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BINDER</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  5066. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  5067. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5068. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703293" p5:primaryKey="2703293">
  5069. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703293</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5070. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5071. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703292" p5:primaryKey="2703292">
  5072. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703292</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5073. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.383757" p5:primaryKey="383757">
  5074. <default_db__x3A__BI_audit_MSIG:ID>383757</default_db__x3A__BI_audit_MSIG:ID>
  5075. <default_db__x3A__BI_audit_MSIG:nazwa>THE BINDER CONSULTING SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  5076. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  5077. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5078. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703291" p5:primaryKey="2703291">
  5079. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703291</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5080. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5081. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703290" p5:primaryKey="2703290">
  5082. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703290</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5083. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5084. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703289" p5:primaryKey="2703289">
  5085. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703289</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5086. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.151308" p5:primaryKey="151308">
  5087. <default_db__x3A__BI_audit_KRS:ID>151308</default_db__x3A__BI_audit_KRS:ID>
  5088. <default_db__x3A__BI_audit_KRS:krs>0000210311</default_db__x3A__BI_audit_KRS:krs>
  5089. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL-NET&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  5090. <default_db__x3A__BI_audit_KRS:S_miejscowosc>OTOMIN</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  5091. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  5092. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5093. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703288" p5:primaryKey="2703288"/>
  5094. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  5095. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5096. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703280" p5:primaryKey="2703280">
  5097. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703280</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5098. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.389552" p5:primaryKey="389552">
  5099. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>389552</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  5100. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703287" p5:primaryKey="2703287">
  5101. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703287</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5102. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17228" p5:primaryKey="17228">
  5103. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17228</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  5104. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BINDER</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  5105. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  5106. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5107. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703286" p5:primaryKey="2703286">
  5108. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703286</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5109. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5110. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703285" p5:primaryKey="2703285">
  5111. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703285</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5112. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.437385" p5:primaryKey="437385">
  5113. <default_db__x3A__BI_audit_KRS:ID>437385</default_db__x3A__BI_audit_KRS:ID>
  5114. <default_db__x3A__BI_audit_KRS:krs>0000548256</default_db__x3A__BI_audit_KRS:krs>
  5115. <default_db__x3A__BI_audit_KRS:nazwa>THE BINDER CONSULTING SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  5116. <default_db__x3A__BI_audit_KRS:S_miejscowosc>OTOMIN</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  5117. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  5118. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5119. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703284" p5:primaryKey="2703284">
  5120. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703284</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5121. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.383757" p5:primaryKey="383757">
  5122. <default_db__x3A__BI_audit_MSIG:ID>383757</default_db__x3A__BI_audit_MSIG:ID>
  5123. <default_db__x3A__BI_audit_MSIG:nazwa>THE BINDER CONSULTING SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  5124. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  5125. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5126. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703283" p5:primaryKey="2703283">
  5127. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703283</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5128. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5129. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703282" p5:primaryKey="2703282">
  5130. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703282</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5131. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5132. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703281" p5:primaryKey="2703281">
  5133. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703281</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5134. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.151308" p5:primaryKey="151308">
  5135. <default_db__x3A__BI_audit_KRS:ID>151308</default_db__x3A__BI_audit_KRS:ID>
  5136. <default_db__x3A__BI_audit_KRS:krs>0000210311</default_db__x3A__BI_audit_KRS:krs>
  5137. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL-NET&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  5138. <default_db__x3A__BI_audit_KRS:S_miejscowosc>OTOMIN</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  5139. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  5140. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5141. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703280" p5:primaryKey="2703280"/>
  5142. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  5143. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5144. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703273" p5:primaryKey="2703273">
  5145. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703273</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5146. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.389551" p5:primaryKey="389551">
  5147. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>389551</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  5148. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703279" p5:primaryKey="2703279">
  5149. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703279</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5150. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17228" p5:primaryKey="17228">
  5151. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17228</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  5152. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BINDER</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  5153. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  5154. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5155. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703278" p5:primaryKey="2703278">
  5156. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703278</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5157. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5158. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703277" p5:primaryKey="2703277">
  5159. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703277</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5160. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.384094" p5:primaryKey="384094">
  5161. <default_db__x3A__BI_audit_MSIG:ID>384094</default_db__x3A__BI_audit_MSIG:ID>
  5162. <default_db__x3A__BI_audit_MSIG:nazwa>ZOOMPACK SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  5163. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  5164. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5165. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703276" p5:primaryKey="2703276">
  5166. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703276</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5167. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5168. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703275" p5:primaryKey="2703275">
  5169. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703275</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5170. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5171. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703274" p5:primaryKey="2703274">
  5172. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703274</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5173. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.151308" p5:primaryKey="151308">
  5174. <default_db__x3A__BI_audit_KRS:ID>151308</default_db__x3A__BI_audit_KRS:ID>
  5175. <default_db__x3A__BI_audit_KRS:krs>0000210311</default_db__x3A__BI_audit_KRS:krs>
  5176. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL-NET&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  5177. <default_db__x3A__BI_audit_KRS:S_miejscowosc>OTOMIN</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  5178. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  5179. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5180. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703273" p5:primaryKey="2703273"/>
  5181. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  5182. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5183. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703267" p5:primaryKey="2703267">
  5184. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703267</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5185. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.389550" p5:primaryKey="389550">
  5186. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>389550</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  5187. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703272" p5:primaryKey="2703272">
  5188. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703272</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5189. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17230" p5:primaryKey="17230">
  5190. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17230</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  5191. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BIALL Sp. z o.o.</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  5192. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  5193. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5194. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703271" p5:primaryKey="2703271">
  5195. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703271</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5196. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.36736" p5:primaryKey="36736">
  5197. <default_db__x3A__BI_audit_MSIG:ID>36736</default_db__x3A__BI_audit_MSIG:ID>
  5198. <default_db__x3A__BI_audit_MSIG:nazwa>„BIALL” SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  5199. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  5200. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5201. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703270" p5:primaryKey="2703270">
  5202. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703270</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5203. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5204. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703269" p5:primaryKey="2703269">
  5205. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703269</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5206. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5207. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703268" p5:primaryKey="2703268">
  5208. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703268</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5209. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.151308" p5:primaryKey="151308">
  5210. <default_db__x3A__BI_audit_KRS:ID>151308</default_db__x3A__BI_audit_KRS:ID>
  5211. <default_db__x3A__BI_audit_KRS:krs>0000210311</default_db__x3A__BI_audit_KRS:krs>
  5212. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL-NET&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  5213. <default_db__x3A__BI_audit_KRS:S_miejscowosc>OTOMIN</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  5214. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  5215. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5216. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703267" p5:primaryKey="2703267"/>
  5217. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  5218. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5219. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703259" p5:primaryKey="2703259">
  5220. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703259</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5221. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.389549" p5:primaryKey="389549">
  5222. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>389549</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  5223. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703266" p5:primaryKey="2703266">
  5224. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703266</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5225. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17230" p5:primaryKey="17230">
  5226. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17230</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  5227. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BIALL Sp. z o.o.</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  5228. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  5229. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5230. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703265" p5:primaryKey="2703265">
  5231. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703265</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5232. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5233. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703264" p5:primaryKey="2703264">
  5234. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703264</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5235. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5236. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703263" p5:primaryKey="2703263">
  5237. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703263</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5238. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.36736" p5:primaryKey="36736">
  5239. <default_db__x3A__BI_audit_MSIG:ID>36736</default_db__x3A__BI_audit_MSIG:ID>
  5240. <default_db__x3A__BI_audit_MSIG:nazwa>„BIALL” SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  5241. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  5242. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5243. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703262" p5:primaryKey="2703262">
  5244. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703262</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5245. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5246. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703261" p5:primaryKey="2703261">
  5247. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703261</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5248. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5249. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703260" p5:primaryKey="2703260">
  5250. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703260</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5251. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.151308" p5:primaryKey="151308">
  5252. <default_db__x3A__BI_audit_KRS:ID>151308</default_db__x3A__BI_audit_KRS:ID>
  5253. <default_db__x3A__BI_audit_KRS:krs>0000210311</default_db__x3A__BI_audit_KRS:krs>
  5254. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL-NET&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  5255. <default_db__x3A__BI_audit_KRS:S_miejscowosc>OTOMIN</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  5256. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  5257. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5258. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703259" p5:primaryKey="2703259"/>
  5259. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  5260. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5261. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703251" p5:primaryKey="2703251">
  5262. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703251</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5263. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.389548" p5:primaryKey="389548">
  5264. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>389548</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  5265. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703258" p5:primaryKey="2703258">
  5266. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703258</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5267. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17230" p5:primaryKey="17230">
  5268. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17230</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  5269. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BIALL Sp. z o.o.</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  5270. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  5271. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5272. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703257" p5:primaryKey="2703257">
  5273. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703257</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5274. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5275. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703256" p5:primaryKey="2703256">
  5276. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703256</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5277. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.161323" p5:primaryKey="161323">
  5278. <default_db__x3A__BI_audit_KRS:ID>161323</default_db__x3A__BI_audit_KRS:ID>
  5279. <default_db__x3A__BI_audit_KRS:krs>0000223476</default_db__x3A__BI_audit_KRS:krs>
  5280. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  5281. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  5282. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  5283. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5284. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703255" p5:primaryKey="2703255">
  5285. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703255</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5286. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.36736" p5:primaryKey="36736">
  5287. <default_db__x3A__BI_audit_MSIG:ID>36736</default_db__x3A__BI_audit_MSIG:ID>
  5288. <default_db__x3A__BI_audit_MSIG:nazwa>„BIALL” SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  5289. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  5290. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5291. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703254" p5:primaryKey="2703254">
  5292. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703254</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5293. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5294. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703253" p5:primaryKey="2703253">
  5295. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703253</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5296. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5297. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703252" p5:primaryKey="2703252">
  5298. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703252</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5299. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.151308" p5:primaryKey="151308">
  5300. <default_db__x3A__BI_audit_KRS:ID>151308</default_db__x3A__BI_audit_KRS:ID>
  5301. <default_db__x3A__BI_audit_KRS:krs>0000210311</default_db__x3A__BI_audit_KRS:krs>
  5302. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL-NET&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  5303. <default_db__x3A__BI_audit_KRS:S_miejscowosc>OTOMIN</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  5304. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  5305. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5306. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703251" p5:primaryKey="2703251"/>
  5307. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  5308. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5309. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703243" p5:primaryKey="2703243">
  5310. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703243</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5311. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.389547" p5:primaryKey="389547">
  5312. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>389547</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  5313. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703250" p5:primaryKey="2703250">
  5314. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703250</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5315. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17228" p5:primaryKey="17228">
  5316. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17228</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  5317. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BINDER</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  5318. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  5319. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5320. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703249" p5:primaryKey="2703249">
  5321. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703249</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5322. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5323. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703248" p5:primaryKey="2703248">
  5324. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703248</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5325. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.161323" p5:primaryKey="161323">
  5326. <default_db__x3A__BI_audit_KRS:ID>161323</default_db__x3A__BI_audit_KRS:ID>
  5327. <default_db__x3A__BI_audit_KRS:krs>0000223476</default_db__x3A__BI_audit_KRS:krs>
  5328. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  5329. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  5330. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  5331. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5332. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703247" p5:primaryKey="2703247">
  5333. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703247</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5334. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.36736" p5:primaryKey="36736">
  5335. <default_db__x3A__BI_audit_MSIG:ID>36736</default_db__x3A__BI_audit_MSIG:ID>
  5336. <default_db__x3A__BI_audit_MSIG:nazwa>„BIALL” SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  5337. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  5338. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5339. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703246" p5:primaryKey="2703246">
  5340. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703246</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5341. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5342. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703245" p5:primaryKey="2703245">
  5343. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703245</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5344. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5345. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703244" p5:primaryKey="2703244">
  5346. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703244</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5347. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.151308" p5:primaryKey="151308">
  5348. <default_db__x3A__BI_audit_KRS:ID>151308</default_db__x3A__BI_audit_KRS:ID>
  5349. <default_db__x3A__BI_audit_KRS:krs>0000210311</default_db__x3A__BI_audit_KRS:krs>
  5350. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL-NET&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  5351. <default_db__x3A__BI_audit_KRS:S_miejscowosc>OTOMIN</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  5352. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  5353. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5354. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703243" p5:primaryKey="2703243"/>
  5355. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  5356. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5357. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703237" p5:primaryKey="2703237">
  5358. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703237</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5359. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.389546" p5:primaryKey="389546">
  5360. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>389546</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  5361. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703242" p5:primaryKey="2703242">
  5362. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703242</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5363. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17228" p5:primaryKey="17228">
  5364. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17228</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  5365. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BINDER</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  5366. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  5367. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5368. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703241" p5:primaryKey="2703241">
  5369. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703241</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5370. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5371. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703240" p5:primaryKey="2703240">
  5372. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703240</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5373. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.512535" p5:primaryKey="512535">
  5374. <default_db__x3A__BI_audit_KRS:ID>512535</default_db__x3A__BI_audit_KRS:ID>
  5375. <default_db__x3A__BI_audit_KRS:krs>0000627944</default_db__x3A__BI_audit_KRS:krs>
  5376. <default_db__x3A__BI_audit_KRS:nazwa>NETDAY SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  5377. <default_db__x3A__BI_audit_KRS:S_miejscowosc>OTOMIN</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  5378. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  5379. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5380. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703239" p5:primaryKey="2703239">
  5381. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703239</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5382. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5383. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703238" p5:primaryKey="2703238">
  5384. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2703238</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5385. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.151308" p5:primaryKey="151308">
  5386. <default_db__x3A__BI_audit_KRS:ID>151308</default_db__x3A__BI_audit_KRS:ID>
  5387. <default_db__x3A__BI_audit_KRS:krs>0000210311</default_db__x3A__BI_audit_KRS:krs>
  5388. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL-NET&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  5389. <default_db__x3A__BI_audit_KRS:S_miejscowosc>OTOMIN</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  5390. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  5391. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5392. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2703237" p5:primaryKey="2703237"/>
  5393. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  5394. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5395. <p5:links>
  5396. <p5:next p5:typeName="default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object" p5:backRefNS="default_db/BI_audit_ENERGA_PRACOWNICY/BI_audit_ENERGA_PRACOWNICY" p5:backRefPK="460" p5:startIndex="10">https://biuro.biall-net.pl/dev-pl/se-projects/bocian/SE//wfs-data.php/default_db/?SERVICE=WFS&amp;VERSION=1.0.0&amp;TYPENAME=default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object&amp;REQUEST=GetFeature&amp;backRefNS=default_db/BI_audit_ENERGA_PRACOWNICY/BI_audit_ENERGA_PRACOWNICY&amp;backRefPK=460&amp;backRefField=default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object&amp;maxFeatures=10&amp;startIndex=10</p5:next>
  5397. </p5:links>
  5398. </default_db__x3A__BI_audit_ENERGA_PRACOWNICY:BI_audit_ENERGA_PRACOWNICY>
  5399. </gml:featureMember>
  5400. <gml:featureMember>
  5401. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:BI_audit_ENERGA_PRACOWNICY fid="BI_audit_ENERGA_PRACOWNICY.459" p5:primaryKey="459">
  5402. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:ID>459</default_db__x3A__BI_audit_ENERGA_PRACOWNICY:ID>
  5403. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:imiona>Testowy Podmiot</default_db__x3A__BI_audit_ENERGA_PRACOWNICY:imiona>
  5404. </default_db__x3A__BI_audit_ENERGA_PRACOWNICY:BI_audit_ENERGA_PRACOWNICY>
  5405. </gml:featureMember>
  5406. <gml:featureMember>
  5407. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:BI_audit_ENERGA_PRACOWNICY fid="BI_audit_ENERGA_PRACOWNICY.458" p5:primaryKey="458">
  5408. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:ID>458</default_db__x3A__BI_audit_ENERGA_PRACOWNICY:ID>
  5409. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:imiona>Testowy</default_db__x3A__BI_audit_ENERGA_PRACOWNICY:imiona>
  5410. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:nazwisko>Test</default_db__x3A__BI_audit_ENERGA_PRACOWNICY:nazwisko>
  5411. </default_db__x3A__BI_audit_ENERGA_PRACOWNICY:BI_audit_ENERGA_PRACOWNICY>
  5412. </gml:featureMember>
  5413. <gml:featureMember>
  5414. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:BI_audit_ENERGA_PRACOWNICY fid="BI_audit_ENERGA_PRACOWNICY.457" p5:primaryKey="457">
  5415. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:ID>457</default_db__x3A__BI_audit_ENERGA_PRACOWNICY:ID>
  5416. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:imiona>BIALL Sp. z o.o.</default_db__x3A__BI_audit_ENERGA_PRACOWNICY:imiona>
  5417. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701335" p5:primaryKey="2701335">
  5418. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701335</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5419. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.389291" p5:primaryKey="389291">
  5420. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>389291</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  5421. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701338" p5:primaryKey="2701338">
  5422. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701338</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5423. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17230" p5:primaryKey="17230">
  5424. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17230</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  5425. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BIALL Sp. z o.o.</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  5426. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  5427. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5428. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701337" p5:primaryKey="2701337">
  5429. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701337</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5430. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5431. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701336" p5:primaryKey="2701336">
  5432. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701336</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5433. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.161323" p5:primaryKey="161323">
  5434. <default_db__x3A__BI_audit_KRS:ID>161323</default_db__x3A__BI_audit_KRS:ID>
  5435. <default_db__x3A__BI_audit_KRS:krs>0000223476</default_db__x3A__BI_audit_KRS:krs>
  5436. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  5437. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  5438. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  5439. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5440. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701335" p5:primaryKey="2701335"/>
  5441. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  5442. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5443. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701329" p5:primaryKey="2701329">
  5444. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701329</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5445. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.389290" p5:primaryKey="389290">
  5446. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>389290</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  5447. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701334" p5:primaryKey="2701334">
  5448. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701334</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5449. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17230" p5:primaryKey="17230">
  5450. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17230</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  5451. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BIALL Sp. z o.o.</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  5452. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  5453. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5454. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701333" p5:primaryKey="2701333">
  5455. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701333</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5456. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.36736" p5:primaryKey="36736">
  5457. <default_db__x3A__BI_audit_MSIG:ID>36736</default_db__x3A__BI_audit_MSIG:ID>
  5458. <default_db__x3A__BI_audit_MSIG:nazwa>„BIALL” SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  5459. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  5460. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5461. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701332" p5:primaryKey="2701332">
  5462. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701332</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5463. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5464. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701331" p5:primaryKey="2701331">
  5465. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701331</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5466. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5467. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701330" p5:primaryKey="2701330">
  5468. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701330</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5469. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.161323" p5:primaryKey="161323">
  5470. <default_db__x3A__BI_audit_KRS:ID>161323</default_db__x3A__BI_audit_KRS:ID>
  5471. <default_db__x3A__BI_audit_KRS:krs>0000223476</default_db__x3A__BI_audit_KRS:krs>
  5472. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  5473. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  5474. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  5475. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5476. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701329" p5:primaryKey="2701329"/>
  5477. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  5478. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5479. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701321" p5:primaryKey="2701321">
  5480. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701321</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5481. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.389289" p5:primaryKey="389289">
  5482. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>389289</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  5483. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701328" p5:primaryKey="2701328">
  5484. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701328</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5485. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17230" p5:primaryKey="17230">
  5486. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17230</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  5487. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BIALL Sp. z o.o.</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  5488. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  5489. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5490. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701327" p5:primaryKey="2701327">
  5491. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701327</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5492. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.36736" p5:primaryKey="36736">
  5493. <default_db__x3A__BI_audit_MSIG:ID>36736</default_db__x3A__BI_audit_MSIG:ID>
  5494. <default_db__x3A__BI_audit_MSIG:nazwa>„BIALL” SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  5495. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  5496. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5497. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701326" p5:primaryKey="2701326">
  5498. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701326</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5499. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5500. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701325" p5:primaryKey="2701325">
  5501. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701325</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5502. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5503. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701324" p5:primaryKey="2701324">
  5504. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701324</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5505. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.151308" p5:primaryKey="151308">
  5506. <default_db__x3A__BI_audit_KRS:ID>151308</default_db__x3A__BI_audit_KRS:ID>
  5507. <default_db__x3A__BI_audit_KRS:krs>0000210311</default_db__x3A__BI_audit_KRS:krs>
  5508. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL-NET&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  5509. <default_db__x3A__BI_audit_KRS:S_miejscowosc>OTOMIN</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  5510. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  5511. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5512. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701323" p5:primaryKey="2701323">
  5513. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701323</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5514. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5515. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701322" p5:primaryKey="2701322">
  5516. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701322</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5517. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.161323" p5:primaryKey="161323">
  5518. <default_db__x3A__BI_audit_KRS:ID>161323</default_db__x3A__BI_audit_KRS:ID>
  5519. <default_db__x3A__BI_audit_KRS:krs>0000223476</default_db__x3A__BI_audit_KRS:krs>
  5520. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  5521. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  5522. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  5523. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5524. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701321" p5:primaryKey="2701321"/>
  5525. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  5526. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5527. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701313" p5:primaryKey="2701313">
  5528. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701313</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5529. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.389288" p5:primaryKey="389288">
  5530. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>389288</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  5531. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701320" p5:primaryKey="2701320">
  5532. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701320</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5533. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17228" p5:primaryKey="17228">
  5534. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17228</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  5535. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BINDER</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  5536. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  5537. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5538. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701319" p5:primaryKey="2701319">
  5539. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701319</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5540. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5541. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701318" p5:primaryKey="2701318">
  5542. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701318</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5543. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.512535" p5:primaryKey="512535">
  5544. <default_db__x3A__BI_audit_KRS:ID>512535</default_db__x3A__BI_audit_KRS:ID>
  5545. <default_db__x3A__BI_audit_KRS:krs>0000627944</default_db__x3A__BI_audit_KRS:krs>
  5546. <default_db__x3A__BI_audit_KRS:nazwa>NETDAY SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  5547. <default_db__x3A__BI_audit_KRS:S_miejscowosc>OTOMIN</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  5548. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  5549. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5550. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701317" p5:primaryKey="2701317">
  5551. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701317</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5552. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5553. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701316" p5:primaryKey="2701316">
  5554. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701316</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5555. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.151308" p5:primaryKey="151308">
  5556. <default_db__x3A__BI_audit_KRS:ID>151308</default_db__x3A__BI_audit_KRS:ID>
  5557. <default_db__x3A__BI_audit_KRS:krs>0000210311</default_db__x3A__BI_audit_KRS:krs>
  5558. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL-NET&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  5559. <default_db__x3A__BI_audit_KRS:S_miejscowosc>OTOMIN</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  5560. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  5561. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5562. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701315" p5:primaryKey="2701315">
  5563. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701315</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5564. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5565. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701314" p5:primaryKey="2701314">
  5566. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701314</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5567. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.161323" p5:primaryKey="161323">
  5568. <default_db__x3A__BI_audit_KRS:ID>161323</default_db__x3A__BI_audit_KRS:ID>
  5569. <default_db__x3A__BI_audit_KRS:krs>0000223476</default_db__x3A__BI_audit_KRS:krs>
  5570. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  5571. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  5572. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  5573. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5574. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701313" p5:primaryKey="2701313"/>
  5575. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  5576. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5577. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701305" p5:primaryKey="2701305">
  5578. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701305</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5579. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.389287" p5:primaryKey="389287">
  5580. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>389287</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  5581. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701312" p5:primaryKey="2701312">
  5582. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701312</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5583. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17228" p5:primaryKey="17228">
  5584. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17228</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  5585. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BINDER</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  5586. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  5587. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5588. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701311" p5:primaryKey="2701311">
  5589. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701311</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5590. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5591. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701310" p5:primaryKey="2701310">
  5592. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701310</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5593. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.437385" p5:primaryKey="437385">
  5594. <default_db__x3A__BI_audit_KRS:ID>437385</default_db__x3A__BI_audit_KRS:ID>
  5595. <default_db__x3A__BI_audit_KRS:krs>0000548256</default_db__x3A__BI_audit_KRS:krs>
  5596. <default_db__x3A__BI_audit_KRS:nazwa>THE BINDER CONSULTING SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  5597. <default_db__x3A__BI_audit_KRS:S_miejscowosc>OTOMIN</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  5598. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  5599. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5600. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701309" p5:primaryKey="2701309">
  5601. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701309</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5602. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5603. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701308" p5:primaryKey="2701308">
  5604. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701308</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5605. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.151308" p5:primaryKey="151308">
  5606. <default_db__x3A__BI_audit_KRS:ID>151308</default_db__x3A__BI_audit_KRS:ID>
  5607. <default_db__x3A__BI_audit_KRS:krs>0000210311</default_db__x3A__BI_audit_KRS:krs>
  5608. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL-NET&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  5609. <default_db__x3A__BI_audit_KRS:S_miejscowosc>OTOMIN</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  5610. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  5611. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5612. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701307" p5:primaryKey="2701307">
  5613. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701307</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5614. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5615. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701306" p5:primaryKey="2701306">
  5616. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701306</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5617. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.161323" p5:primaryKey="161323">
  5618. <default_db__x3A__BI_audit_KRS:ID>161323</default_db__x3A__BI_audit_KRS:ID>
  5619. <default_db__x3A__BI_audit_KRS:krs>0000223476</default_db__x3A__BI_audit_KRS:krs>
  5620. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  5621. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  5622. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  5623. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5624. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701305" p5:primaryKey="2701305"/>
  5625. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  5626. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5627. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701299" p5:primaryKey="2701299">
  5628. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701299</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5629. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.389286" p5:primaryKey="389286">
  5630. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>389286</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  5631. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701304" p5:primaryKey="2701304">
  5632. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701304</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5633. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17228" p5:primaryKey="17228">
  5634. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17228</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  5635. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BINDER</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  5636. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  5637. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5638. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701303" p5:primaryKey="2701303">
  5639. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701303</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5640. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5641. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701302" p5:primaryKey="2701302">
  5642. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701302</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5643. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.151308" p5:primaryKey="151308">
  5644. <default_db__x3A__BI_audit_KRS:ID>151308</default_db__x3A__BI_audit_KRS:ID>
  5645. <default_db__x3A__BI_audit_KRS:krs>0000210311</default_db__x3A__BI_audit_KRS:krs>
  5646. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL-NET&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  5647. <default_db__x3A__BI_audit_KRS:S_miejscowosc>OTOMIN</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  5648. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  5649. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5650. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701301" p5:primaryKey="2701301">
  5651. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701301</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5652. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5653. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701300" p5:primaryKey="2701300">
  5654. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701300</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5655. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.161323" p5:primaryKey="161323">
  5656. <default_db__x3A__BI_audit_KRS:ID>161323</default_db__x3A__BI_audit_KRS:ID>
  5657. <default_db__x3A__BI_audit_KRS:krs>0000223476</default_db__x3A__BI_audit_KRS:krs>
  5658. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  5659. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  5660. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  5661. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5662. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701299" p5:primaryKey="2701299"/>
  5663. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  5664. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5665. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701291" p5:primaryKey="2701291">
  5666. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701291</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5667. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.389285" p5:primaryKey="389285">
  5668. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>389285</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  5669. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701298" p5:primaryKey="2701298">
  5670. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701298</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5671. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17228" p5:primaryKey="17228">
  5672. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17228</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  5673. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BINDER</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  5674. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  5675. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5676. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701297" p5:primaryKey="2701297">
  5677. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701297</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5678. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5679. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701296" p5:primaryKey="2701296">
  5680. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701296</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5681. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.389967" p5:primaryKey="389967">
  5682. <default_db__x3A__BI_audit_KRS:ID>389967</default_db__x3A__BI_audit_KRS:ID>
  5683. <default_db__x3A__BI_audit_KRS:krs>0000497074</default_db__x3A__BI_audit_KRS:krs>
  5684. <default_db__x3A__BI_audit_KRS:nazwa>&quot;ROZWÓJ I PRAWORZĄDNOŚĆ&quot;</default_db__x3A__BI_audit_KRS:nazwa>
  5685. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  5686. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  5687. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5688. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701295" p5:primaryKey="2701295">
  5689. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701295</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5690. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5691. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701294" p5:primaryKey="2701294">
  5692. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701294</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5693. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.151308" p5:primaryKey="151308">
  5694. <default_db__x3A__BI_audit_KRS:ID>151308</default_db__x3A__BI_audit_KRS:ID>
  5695. <default_db__x3A__BI_audit_KRS:krs>0000210311</default_db__x3A__BI_audit_KRS:krs>
  5696. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL-NET&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  5697. <default_db__x3A__BI_audit_KRS:S_miejscowosc>OTOMIN</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  5698. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  5699. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5700. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701293" p5:primaryKey="2701293">
  5701. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701293</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5702. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5703. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701292" p5:primaryKey="2701292">
  5704. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701292</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5705. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.161323" p5:primaryKey="161323">
  5706. <default_db__x3A__BI_audit_KRS:ID>161323</default_db__x3A__BI_audit_KRS:ID>
  5707. <default_db__x3A__BI_audit_KRS:krs>0000223476</default_db__x3A__BI_audit_KRS:krs>
  5708. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  5709. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  5710. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  5711. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5712. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701291" p5:primaryKey="2701291"/>
  5713. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  5714. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5715. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701283" p5:primaryKey="2701283">
  5716. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701283</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5717. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.389284" p5:primaryKey="389284">
  5718. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>389284</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  5719. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701290" p5:primaryKey="2701290">
  5720. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701290</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5721. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17230" p5:primaryKey="17230">
  5722. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17230</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  5723. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BIALL Sp. z o.o.</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  5724. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  5725. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5726. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701289" p5:primaryKey="2701289">
  5727. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701289</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5728. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.36736" p5:primaryKey="36736">
  5729. <default_db__x3A__BI_audit_MSIG:ID>36736</default_db__x3A__BI_audit_MSIG:ID>
  5730. <default_db__x3A__BI_audit_MSIG:nazwa>„BIALL” SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  5731. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  5732. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5733. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701288" p5:primaryKey="2701288">
  5734. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701288</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5735. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5736. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701287" p5:primaryKey="2701287">
  5737. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701287</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5738. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5739. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701286" p5:primaryKey="2701286">
  5740. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701286</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5741. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.151308" p5:primaryKey="151308">
  5742. <default_db__x3A__BI_audit_KRS:ID>151308</default_db__x3A__BI_audit_KRS:ID>
  5743. <default_db__x3A__BI_audit_KRS:krs>0000210311</default_db__x3A__BI_audit_KRS:krs>
  5744. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL-NET&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  5745. <default_db__x3A__BI_audit_KRS:S_miejscowosc>OTOMIN</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  5746. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  5747. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5748. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701285" p5:primaryKey="2701285">
  5749. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701285</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5750. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5751. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701284" p5:primaryKey="2701284">
  5752. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701284</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5753. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.161323" p5:primaryKey="161323">
  5754. <default_db__x3A__BI_audit_KRS:ID>161323</default_db__x3A__BI_audit_KRS:ID>
  5755. <default_db__x3A__BI_audit_KRS:krs>0000223476</default_db__x3A__BI_audit_KRS:krs>
  5756. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  5757. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  5758. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  5759. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5760. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701283" p5:primaryKey="2701283"/>
  5761. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  5762. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5763. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701275" p5:primaryKey="2701275">
  5764. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701275</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5765. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.389283" p5:primaryKey="389283">
  5766. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>389283</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  5767. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701282" p5:primaryKey="2701282">
  5768. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701282</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5769. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17230" p5:primaryKey="17230">
  5770. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17230</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  5771. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BIALL Sp. z o.o.</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  5772. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  5773. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5774. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701281" p5:primaryKey="2701281">
  5775. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701281</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5776. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.36736" p5:primaryKey="36736">
  5777. <default_db__x3A__BI_audit_MSIG:ID>36736</default_db__x3A__BI_audit_MSIG:ID>
  5778. <default_db__x3A__BI_audit_MSIG:nazwa>„BIALL” SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  5779. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  5780. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5781. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701280" p5:primaryKey="2701280">
  5782. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701280</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5783. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5784. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701279" p5:primaryKey="2701279">
  5785. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701279</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5786. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5787. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701278" p5:primaryKey="2701278">
  5788. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701278</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5789. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.151308" p5:primaryKey="151308">
  5790. <default_db__x3A__BI_audit_KRS:ID>151308</default_db__x3A__BI_audit_KRS:ID>
  5791. <default_db__x3A__BI_audit_KRS:krs>0000210311</default_db__x3A__BI_audit_KRS:krs>
  5792. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL-NET&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  5793. <default_db__x3A__BI_audit_KRS:S_miejscowosc>OTOMIN</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  5794. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  5795. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5796. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701277" p5:primaryKey="2701277">
  5797. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701277</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5798. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5799. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701276" p5:primaryKey="2701276">
  5800. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701276</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5801. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.161323" p5:primaryKey="161323">
  5802. <default_db__x3A__BI_audit_KRS:ID>161323</default_db__x3A__BI_audit_KRS:ID>
  5803. <default_db__x3A__BI_audit_KRS:krs>0000223476</default_db__x3A__BI_audit_KRS:krs>
  5804. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  5805. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  5806. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  5807. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5808. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701275" p5:primaryKey="2701275"/>
  5809. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  5810. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5811. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701267" p5:primaryKey="2701267">
  5812. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701267</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5813. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.389282" p5:primaryKey="389282">
  5814. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>389282</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  5815. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701274" p5:primaryKey="2701274">
  5816. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701274</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5817. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI fid="BI_audit_ENERGA_RUM_KONTRAHENCI.17228" p5:primaryKey="17228">
  5818. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>17228</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:ID>
  5819. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>BINDER</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:Pelna_nazwa_kontrahenta>
  5820. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI:BI_audit_ENERGA_RUM_KONTRAHENCI>
  5821. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5822. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701273" p5:primaryKey="2701273">
  5823. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701273</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5824. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5825. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701272" p5:primaryKey="2701272">
  5826. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701272</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5827. <default_db__x3A__BI_audit_MSIG:BI_audit_MSIG fid="BI_audit_MSIG.457386" p5:primaryKey="457386">
  5828. <default_db__x3A__BI_audit_MSIG:ID>457386</default_db__x3A__BI_audit_MSIG:ID>
  5829. <default_db__x3A__BI_audit_MSIG:nazwa>NETDAY SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_MSIG:nazwa>
  5830. </default_db__x3A__BI_audit_MSIG:BI_audit_MSIG>
  5831. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5832. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701271" p5:primaryKey="2701271">
  5833. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701271</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5834. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5835. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701270" p5:primaryKey="2701270">
  5836. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701270</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5837. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.151308" p5:primaryKey="151308">
  5838. <default_db__x3A__BI_audit_KRS:ID>151308</default_db__x3A__BI_audit_KRS:ID>
  5839. <default_db__x3A__BI_audit_KRS:krs>0000210311</default_db__x3A__BI_audit_KRS:krs>
  5840. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL-NET&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  5841. <default_db__x3A__BI_audit_KRS:S_miejscowosc>OTOMIN</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  5842. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  5843. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5844. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701269" p5:primaryKey="2701269">
  5845. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701269</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5846. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5847. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701268" p5:primaryKey="2701268">
  5848. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2701268</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5849. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.161323" p5:primaryKey="161323">
  5850. <default_db__x3A__BI_audit_KRS:ID>161323</default_db__x3A__BI_audit_KRS:ID>
  5851. <default_db__x3A__BI_audit_KRS:krs>0000223476</default_db__x3A__BI_audit_KRS:krs>
  5852. <default_db__x3A__BI_audit_KRS:nazwa>&quot;BIALL&quot; SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  5853. <default_db__x3A__BI_audit_KRS:S_miejscowosc>GDAŃSK</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  5854. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  5855. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5856. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2701267" p5:primaryKey="2701267"/>
  5857. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  5858. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5859. <p5:links>
  5860. <p5:next p5:typeName="default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object" p5:backRefNS="default_db/BI_audit_ENERGA_PRACOWNICY/BI_audit_ENERGA_PRACOWNICY" p5:backRefPK="457" p5:startIndex="10">https://biuro.biall-net.pl/dev-pl/se-projects/bocian/SE//wfs-data.php/default_db/?SERVICE=WFS&amp;VERSION=1.0.0&amp;TYPENAME=default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object&amp;REQUEST=GetFeature&amp;backRefNS=default_db/BI_audit_ENERGA_PRACOWNICY/BI_audit_ENERGA_PRACOWNICY&amp;backRefPK=457&amp;backRefField=default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object&amp;maxFeatures=10&amp;startIndex=10</p5:next>
  5861. </p5:links>
  5862. </default_db__x3A__BI_audit_ENERGA_PRACOWNICY:BI_audit_ENERGA_PRACOWNICY>
  5863. </gml:featureMember>
  5864. <gml:featureMember>
  5865. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:BI_audit_ENERGA_PRACOWNICY fid="BI_audit_ENERGA_PRACOWNICY.456" p5:primaryKey="456">
  5866. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:ID>456</default_db__x3A__BI_audit_ENERGA_PRACOWNICY:ID>
  5867. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:imiona>testKRS</default_db__x3A__BI_audit_ENERGA_PRACOWNICY:imiona>
  5868. <default_db__x3A__BI_audit_ENERGA_PRACOWNICY:nazwisko>testKRS</default_db__x3A__BI_audit_ENERGA_PRACOWNICY:nazwisko>
  5869. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2585316" p5:primaryKey="2585316">
  5870. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2585316</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5871. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.371070" p5:primaryKey="371070">
  5872. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>371070</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  5873. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2585319" p5:primaryKey="2585319">
  5874. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2585319</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5875. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.597067" p5:primaryKey="597067">
  5876. <default_db__x3A__BI_audit_KRS:ID>597067</default_db__x3A__BI_audit_KRS:ID>
  5877. <default_db__x3A__BI_audit_KRS:krs>0000716246</default_db__x3A__BI_audit_KRS:krs>
  5878. <default_db__x3A__BI_audit_KRS:nazwa>GALINVEST SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  5879. <default_db__x3A__BI_audit_KRS:S_miejscowosc>KRAKÓW</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  5880. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  5881. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5882. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2585318" p5:primaryKey="2585318">
  5883. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2585318</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5884. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5885. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2585317" p5:primaryKey="2585317">
  5886. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2585317</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5887. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.601885" p5:primaryKey="601885">
  5888. <default_db__x3A__BI_audit_KRS:ID>601885</default_db__x3A__BI_audit_KRS:ID>
  5889. <default_db__x3A__BI_audit_KRS:krs>0000721647</default_db__x3A__BI_audit_KRS:krs>
  5890. <default_db__x3A__BI_audit_KRS:nazwa>TEMISTO 11 SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  5891. <default_db__x3A__BI_audit_KRS:S_miejscowosc>KRAKÓW</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  5892. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  5893. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5894. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2585316" p5:primaryKey="2585316"/>
  5895. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  5896. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5897. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2585312" p5:primaryKey="2585312">
  5898. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2585312</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5899. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.371069" p5:primaryKey="371069">
  5900. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>371069</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  5901. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2585315" p5:primaryKey="2585315">
  5902. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2585315</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5903. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.595650" p5:primaryKey="595650">
  5904. <default_db__x3A__BI_audit_KRS:ID>595650</default_db__x3A__BI_audit_KRS:ID>
  5905. <default_db__x3A__BI_audit_KRS:krs>0000714743</default_db__x3A__BI_audit_KRS:krs>
  5906. <default_db__x3A__BI_audit_KRS:nazwa>GALINVEST ZAKOPANE SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  5907. <default_db__x3A__BI_audit_KRS:S_miejscowosc>KRAKÓW</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  5908. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  5909. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5910. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2585314" p5:primaryKey="2585314">
  5911. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2585314</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5912. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5913. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2585313" p5:primaryKey="2585313">
  5914. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2585313</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5915. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.601885" p5:primaryKey="601885">
  5916. <default_db__x3A__BI_audit_KRS:ID>601885</default_db__x3A__BI_audit_KRS:ID>
  5917. <default_db__x3A__BI_audit_KRS:krs>0000721647</default_db__x3A__BI_audit_KRS:krs>
  5918. <default_db__x3A__BI_audit_KRS:nazwa>TEMISTO 11 SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  5919. <default_db__x3A__BI_audit_KRS:S_miejscowosc>KRAKÓW</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  5920. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  5921. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5922. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2585312" p5:primaryKey="2585312"/>
  5923. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  5924. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5925. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2585308" p5:primaryKey="2585308">
  5926. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2585308</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5927. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.371068" p5:primaryKey="371068">
  5928. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>371068</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  5929. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2585311" p5:primaryKey="2585311">
  5930. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2585311</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5931. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.591442" p5:primaryKey="591442">
  5932. <default_db__x3A__BI_audit_KRS:ID>591442</default_db__x3A__BI_audit_KRS:ID>
  5933. <default_db__x3A__BI_audit_KRS:krs>0000710374</default_db__x3A__BI_audit_KRS:krs>
  5934. <default_db__x3A__BI_audit_KRS:nazwa>GALINVEST ZACZAROWANE KOŁO SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  5935. <default_db__x3A__BI_audit_KRS:S_miejscowosc>KRAKÓW</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  5936. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  5937. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5938. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2585310" p5:primaryKey="2585310">
  5939. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2585310</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5940. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5941. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2585309" p5:primaryKey="2585309">
  5942. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2585309</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5943. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.601885" p5:primaryKey="601885">
  5944. <default_db__x3A__BI_audit_KRS:ID>601885</default_db__x3A__BI_audit_KRS:ID>
  5945. <default_db__x3A__BI_audit_KRS:krs>0000721647</default_db__x3A__BI_audit_KRS:krs>
  5946. <default_db__x3A__BI_audit_KRS:nazwa>TEMISTO 11 SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  5947. <default_db__x3A__BI_audit_KRS:S_miejscowosc>KRAKÓW</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  5948. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  5949. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5950. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2585308" p5:primaryKey="2585308"/>
  5951. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  5952. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5953. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2585304" p5:primaryKey="2585304">
  5954. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2585304</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5955. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.371067" p5:primaryKey="371067">
  5956. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>371067</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  5957. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2585307" p5:primaryKey="2585307">
  5958. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2585307</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5959. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.579193" p5:primaryKey="579193">
  5960. <default_db__x3A__BI_audit_KRS:ID>579193</default_db__x3A__BI_audit_KRS:ID>
  5961. <default_db__x3A__BI_audit_KRS:krs>0000697544</default_db__x3A__BI_audit_KRS:krs>
  5962. <default_db__x3A__BI_audit_KRS:nazwa>CREDIT ADVANTAGE SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ SPÓŁKA KOMANDYTOWA</default_db__x3A__BI_audit_KRS:nazwa>
  5963. <default_db__x3A__BI_audit_KRS:S_miejscowosc>WARSZAWA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  5964. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  5965. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5966. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2585306" p5:primaryKey="2585306">
  5967. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2585306</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5968. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5969. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2585305" p5:primaryKey="2585305">
  5970. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2585305</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5971. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.601885" p5:primaryKey="601885">
  5972. <default_db__x3A__BI_audit_KRS:ID>601885</default_db__x3A__BI_audit_KRS:ID>
  5973. <default_db__x3A__BI_audit_KRS:krs>0000721647</default_db__x3A__BI_audit_KRS:krs>
  5974. <default_db__x3A__BI_audit_KRS:nazwa>TEMISTO 11 SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  5975. <default_db__x3A__BI_audit_KRS:S_miejscowosc>KRAKÓW</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  5976. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  5977. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5978. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2585304" p5:primaryKey="2585304"/>
  5979. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  5980. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5981. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2585300" p5:primaryKey="2585300">
  5982. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2585300</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5983. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.371066" p5:primaryKey="371066">
  5984. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>371066</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  5985. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2585303" p5:primaryKey="2585303">
  5986. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2585303</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5987. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.577345" p5:primaryKey="577345">
  5988. <default_db__x3A__BI_audit_KRS:ID>577345</default_db__x3A__BI_audit_KRS:ID>
  5989. <default_db__x3A__BI_audit_KRS:krs>0000695612</default_db__x3A__BI_audit_KRS:krs>
  5990. <default_db__x3A__BI_audit_KRS:nazwa>SUMMIT ALFA SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  5991. <default_db__x3A__BI_audit_KRS:S_miejscowosc>KRAKÓW</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  5992. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  5993. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5994. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2585302" p5:primaryKey="2585302">
  5995. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2585302</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5996. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  5997. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2585301" p5:primaryKey="2585301">
  5998. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2585301</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  5999. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.601885" p5:primaryKey="601885">
  6000. <default_db__x3A__BI_audit_KRS:ID>601885</default_db__x3A__BI_audit_KRS:ID>
  6001. <default_db__x3A__BI_audit_KRS:krs>0000721647</default_db__x3A__BI_audit_KRS:krs>
  6002. <default_db__x3A__BI_audit_KRS:nazwa>TEMISTO 11 SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  6003. <default_db__x3A__BI_audit_KRS:S_miejscowosc>KRAKÓW</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  6004. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  6005. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  6006. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2585300" p5:primaryKey="2585300"/>
  6007. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  6008. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  6009. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2585296" p5:primaryKey="2585296">
  6010. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2585296</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  6011. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.371065" p5:primaryKey="371065">
  6012. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>371065</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  6013. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2585299" p5:primaryKey="2585299">
  6014. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2585299</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  6015. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.575824" p5:primaryKey="575824">
  6016. <default_db__x3A__BI_audit_KRS:ID>575824</default_db__x3A__BI_audit_KRS:ID>
  6017. <default_db__x3A__BI_audit_KRS:krs>0000694013</default_db__x3A__BI_audit_KRS:krs>
  6018. <default_db__x3A__BI_audit_KRS:nazwa>CREDIT ADVANTAGE SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  6019. <default_db__x3A__BI_audit_KRS:S_miejscowosc>WARSZAWA</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  6020. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  6021. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  6022. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2585298" p5:primaryKey="2585298">
  6023. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2585298</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  6024. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  6025. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2585297" p5:primaryKey="2585297">
  6026. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2585297</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  6027. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.601885" p5:primaryKey="601885">
  6028. <default_db__x3A__BI_audit_KRS:ID>601885</default_db__x3A__BI_audit_KRS:ID>
  6029. <default_db__x3A__BI_audit_KRS:krs>0000721647</default_db__x3A__BI_audit_KRS:krs>
  6030. <default_db__x3A__BI_audit_KRS:nazwa>TEMISTO 11 SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  6031. <default_db__x3A__BI_audit_KRS:S_miejscowosc>KRAKÓW</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  6032. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  6033. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  6034. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2585296" p5:primaryKey="2585296"/>
  6035. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  6036. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  6037. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2585292" p5:primaryKey="2585292">
  6038. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2585292</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  6039. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.371064" p5:primaryKey="371064">
  6040. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>371064</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  6041. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2585295" p5:primaryKey="2585295">
  6042. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2585295</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  6043. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.563534" p5:primaryKey="563534">
  6044. <default_db__x3A__BI_audit_KRS:ID>563534</default_db__x3A__BI_audit_KRS:ID>
  6045. <default_db__x3A__BI_audit_KRS:krs>0000681700</default_db__x3A__BI_audit_KRS:krs>
  6046. <default_db__x3A__BI_audit_KRS:nazwa>SUMMIT STARTER FUND SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  6047. <default_db__x3A__BI_audit_KRS:S_miejscowosc>KRAKÓW</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  6048. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  6049. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  6050. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2585294" p5:primaryKey="2585294">
  6051. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2585294</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  6052. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  6053. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2585293" p5:primaryKey="2585293">
  6054. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2585293</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  6055. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.601885" p5:primaryKey="601885">
  6056. <default_db__x3A__BI_audit_KRS:ID>601885</default_db__x3A__BI_audit_KRS:ID>
  6057. <default_db__x3A__BI_audit_KRS:krs>0000721647</default_db__x3A__BI_audit_KRS:krs>
  6058. <default_db__x3A__BI_audit_KRS:nazwa>TEMISTO 11 SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  6059. <default_db__x3A__BI_audit_KRS:S_miejscowosc>KRAKÓW</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  6060. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  6061. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  6062. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2585292" p5:primaryKey="2585292"/>
  6063. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  6064. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  6065. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2585288" p5:primaryKey="2585288">
  6066. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2585288</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  6067. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.371063" p5:primaryKey="371063">
  6068. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>371063</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  6069. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2585291" p5:primaryKey="2585291">
  6070. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2585291</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  6071. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.562125" p5:primaryKey="562125">
  6072. <default_db__x3A__BI_audit_KRS:ID>562125</default_db__x3A__BI_audit_KRS:ID>
  6073. <default_db__x3A__BI_audit_KRS:krs>0000679886</default_db__x3A__BI_audit_KRS:krs>
  6074. <default_db__x3A__BI_audit_KRS:nazwa>TEMISTO 10 SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  6075. <default_db__x3A__BI_audit_KRS:S_miejscowosc>KRAKÓW</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  6076. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  6077. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  6078. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2585290" p5:primaryKey="2585290">
  6079. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2585290</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  6080. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  6081. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2585289" p5:primaryKey="2585289">
  6082. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2585289</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  6083. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.601885" p5:primaryKey="601885">
  6084. <default_db__x3A__BI_audit_KRS:ID>601885</default_db__x3A__BI_audit_KRS:ID>
  6085. <default_db__x3A__BI_audit_KRS:krs>0000721647</default_db__x3A__BI_audit_KRS:krs>
  6086. <default_db__x3A__BI_audit_KRS:nazwa>TEMISTO 11 SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  6087. <default_db__x3A__BI_audit_KRS:S_miejscowosc>KRAKÓW</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  6088. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  6089. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  6090. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2585288" p5:primaryKey="2585288"/>
  6091. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  6092. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  6093. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2585284" p5:primaryKey="2585284">
  6094. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2585284</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  6095. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.371062" p5:primaryKey="371062">
  6096. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>371062</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  6097. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2585287" p5:primaryKey="2585287">
  6098. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2585287</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  6099. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.560401" p5:primaryKey="560401">
  6100. <default_db__x3A__BI_audit_KRS:ID>560401</default_db__x3A__BI_audit_KRS:ID>
  6101. <default_db__x3A__BI_audit_KRS:krs>0000678023</default_db__x3A__BI_audit_KRS:krs>
  6102. <default_db__x3A__BI_audit_KRS:nazwa>TEMISTO 9 SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  6103. <default_db__x3A__BI_audit_KRS:S_miejscowosc>KRAKÓW</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  6104. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  6105. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  6106. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2585286" p5:primaryKey="2585286">
  6107. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2585286</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  6108. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  6109. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2585285" p5:primaryKey="2585285">
  6110. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2585285</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  6111. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.601885" p5:primaryKey="601885">
  6112. <default_db__x3A__BI_audit_KRS:ID>601885</default_db__x3A__BI_audit_KRS:ID>
  6113. <default_db__x3A__BI_audit_KRS:krs>0000721647</default_db__x3A__BI_audit_KRS:krs>
  6114. <default_db__x3A__BI_audit_KRS:nazwa>TEMISTO 11 SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  6115. <default_db__x3A__BI_audit_KRS:S_miejscowosc>KRAKÓW</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  6116. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  6117. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  6118. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2585284" p5:primaryKey="2585284"/>
  6119. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  6120. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  6121. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2585280" p5:primaryKey="2585280">
  6122. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2585280</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  6123. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row.371061" p5:primaryKey="371061">
  6124. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>371061</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:ID>
  6125. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2585283" p5:primaryKey="2585283">
  6126. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2585283</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  6127. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.554669" p5:primaryKey="554669">
  6128. <default_db__x3A__BI_audit_KRS:ID>554669</default_db__x3A__BI_audit_KRS:ID>
  6129. <default_db__x3A__BI_audit_KRS:krs>0000672016</default_db__x3A__BI_audit_KRS:krs>
  6130. <default_db__x3A__BI_audit_KRS:nazwa>TEMISTO 8 SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  6131. <default_db__x3A__BI_audit_KRS:S_miejscowosc>KRAKÓW</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  6132. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  6133. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  6134. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2585282" p5:primaryKey="2585282">
  6135. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2585282</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  6136. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  6137. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object fid="BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2585281" p5:primaryKey="2585281">
  6138. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>2585281</default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:ID>
  6139. <default_db__x3A__BI_audit_KRS:BI_audit_KRS fid="BI_audit_KRS.601885" p5:primaryKey="601885">
  6140. <default_db__x3A__BI_audit_KRS:ID>601885</default_db__x3A__BI_audit_KRS:ID>
  6141. <default_db__x3A__BI_audit_KRS:krs>0000721647</default_db__x3A__BI_audit_KRS:krs>
  6142. <default_db__x3A__BI_audit_KRS:nazwa>TEMISTO 11 SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ</default_db__x3A__BI_audit_KRS:nazwa>
  6143. <default_db__x3A__BI_audit_KRS:S_miejscowosc>KRAKÓW</default_db__x3A__BI_audit_KRS:S_miejscowosc>
  6144. </default_db__x3A__BI_audit_KRS:BI_audit_KRS>
  6145. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  6146. <default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object xlink:href="https://biuro.biall-net.pl/wfs/default_db/BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object#BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object.2585280" p5:primaryKey="2585280"/>
  6147. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row>
  6148. </default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object>
  6149. <p5:links>
  6150. <p5:next p5:typeName="default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object" p5:backRefNS="default_db/BI_audit_ENERGA_PRACOWNICY/BI_audit_ENERGA_PRACOWNICY" p5:backRefPK="456" p5:startIndex="10">https://biuro.biall-net.pl/dev-pl/se-projects/bocian/SE//wfs-data.php/default_db/?SERVICE=WFS&amp;VERSION=1.0.0&amp;TYPENAME=default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object&amp;REQUEST=GetFeature&amp;backRefNS=default_db/BI_audit_ENERGA_PRACOWNICY/BI_audit_ENERGA_PRACOWNICY&amp;backRefPK=456&amp;backRefField=default_db__x3A__BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object:BI_audit_ENERGA_RUM_KONTRAHENCI_POWIAZANIA_row_object&amp;maxFeatures=10&amp;startIndex=10</p5:next>
  6151. </p5:links>
  6152. </default_db__x3A__BI_audit_ENERGA_PRACOWNICY:BI_audit_ENERGA_PRACOWNICY>
  6153. </gml:featureMember>
  6154. </wfs:FeatureCollection>