├── .github └── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature-suggestion.yml ├── Addons ├── Community Translations │ ├── README.md │ └── pt_BR.json ├── Part Images │ └── README.md ├── README.md ├── ks_nord │ ├── README.md │ └── zz_blraddon_ks_nord.zip ├── motorsports_playground │ ├── README.md │ └── zz_blraddon_motorsports_playground.zip └── valo_city │ ├── README.md │ └── zz_blraddon_valocity.zip ├── Old Releases ├── beamLegalRacing1.0.zip ├── beamLegalRacing1.1.zip ├── beamLegalRacing1.10.zip ├── beamLegalRacing1.2.zip ├── beamLegalRacing1.3.zip ├── beamLegalRacing1.4.zip ├── beamLegalRacing1.5.1.zip ├── beamLegalRacing1.5.zip ├── beamLegalRacing1.6.zip ├── beamLegalRacing1.7.zip ├── beamLegalRacing1.8.zip ├── beamLegalRacing1.9.1.zip └── beamLegalRacing1.9.zip ├── README.md ├── Source ├── art │ └── decals │ │ └── beamlr │ │ ├── puddle1.png │ │ ├── puddle2.png │ │ ├── puddle3.png │ │ ├── puddle4.png │ │ └── puddle5.png ├── beamLR │ ├── barnFindData │ ├── beamstate │ │ ├── car0.save.json │ │ ├── integrity │ │ │ └── car0 │ │ └── mech │ │ │ └── car0 │ ├── cache │ │ ├── cachedMods │ │ ├── fullPartNameLibrary │ │ ├── fullSlotNameLibrary │ │ └── jbeamFileMap │ ├── carMeetConfigs │ ├── carMeetDayData │ ├── challenges │ │ ├── east_coast_usa │ │ │ ├── ABspeedtrap1 │ │ │ ├── ABspeedtrap2 │ │ │ ├── Adrift1 │ │ │ ├── Adrift2 │ │ │ ├── Adrift3 │ │ │ ├── Adrift4 │ │ │ ├── Adrift5 │ │ │ ├── Adrift6 │ │ │ ├── Adrift7 │ │ │ ├── Adrift8 │ │ │ ├── Aspeedtrap1 │ │ │ ├── Aspeedtrap2 │ │ │ ├── Aspeedtrap3 │ │ │ ├── Aspeedtrap4 │ │ │ ├── Aspeedtrap5 │ │ │ ├── Aspeedtrap6 │ │ │ ├── Aspeedtrap7 │ │ │ ├── Atimeattack1 │ │ │ ├── Atimeattack2 │ │ │ ├── Atimeattack3 │ │ │ ├── Atimeattack4 │ │ │ ├── Atimeattack5 │ │ │ ├── Atimeattack6 │ │ │ ├── Atimeattack7 │ │ │ ├── Bdrift1 │ │ │ ├── Bdrift2 │ │ │ ├── Bdrift3 │ │ │ ├── Bdrift4 │ │ │ ├── Bdrift5 │ │ │ ├── Bdrift6 │ │ │ ├── Bdrift7 │ │ │ ├── Bdrift8 │ │ │ ├── Bjump1 │ │ │ ├── Bjump2 │ │ │ ├── Bspeedtrap1 │ │ │ ├── Bspeedtrap2 │ │ │ ├── Bspeedtrap3 │ │ │ ├── Bspeedtrap4 │ │ │ ├── Bspeedtrap5 │ │ │ ├── Bspeedtrap6 │ │ │ ├── Btimeattack1 │ │ │ ├── Btimeattack2 │ │ │ ├── Btimeattack3 │ │ │ ├── Btimeattack4 │ │ │ ├── Btimeattack5 │ │ │ ├── Btimeattack6 │ │ │ └── Btimeattack7 │ │ ├── italy │ │ │ ├── Adrift1 │ │ │ ├── Adrift2 │ │ │ ├── Adrift3 │ │ │ ├── Adrift4 │ │ │ ├── Adrift5 │ │ │ ├── Adrift6 │ │ │ ├── Adrift7 │ │ │ ├── Adrift8 │ │ │ ├── Adrift9 │ │ │ ├── Atimeattack1 │ │ │ ├── Atimeattack10 │ │ │ ├── Atimeattack11 │ │ │ ├── Atimeattack2 │ │ │ ├── Atimeattack3 │ │ │ ├── Atimeattack4 │ │ │ ├── Atimeattack5 │ │ │ ├── Atimeattack6 │ │ │ ├── Atimeattack7 │ │ │ ├── Atimeattack8 │ │ │ ├── Atimeattack9 │ │ │ ├── Bspeed1 │ │ │ ├── Bspeed10 │ │ │ ├── Bspeed2 │ │ │ ├── Bspeed3 │ │ │ ├── Bspeed4 │ │ │ ├── Bspeed5 │ │ │ ├── Bspeed6 │ │ │ ├── Bspeed7 │ │ │ ├── Bspeed8 │ │ │ ├── Bspeed9 │ │ │ ├── Btimeattack1 │ │ │ ├── Btimeattack2 │ │ │ ├── Btimeattack3 │ │ │ ├── Btimeattack4 │ │ │ └── Btimeattack5 │ │ ├── utah │ │ │ ├── drift1 │ │ │ ├── drift10 │ │ │ ├── drift11 │ │ │ ├── drift2 │ │ │ ├── drift3 │ │ │ ├── drift4 │ │ │ ├── drift5 │ │ │ ├── drift6 │ │ │ ├── drift7 │ │ │ ├── drift8 │ │ │ ├── drift9 │ │ │ ├── jump1 │ │ │ ├── jump2 │ │ │ ├── jump3 │ │ │ ├── jump4 │ │ │ ├── jump5 │ │ │ ├── jump6 │ │ │ ├── jump7 │ │ │ ├── rockcrawl1 │ │ │ ├── rockcrawl2 │ │ │ ├── speedtrap1 │ │ │ ├── speedtrap2 │ │ │ ├── speedtrap3 │ │ │ ├── speedtrap4 │ │ │ ├── speedtrap5 │ │ │ ├── speedtrap6 │ │ │ ├── speedtrap7 │ │ │ ├── speedtrap8 │ │ │ ├── timeattack1 │ │ │ ├── timeattack10 │ │ │ ├── timeattack11 │ │ │ ├── timeattack2 │ │ │ ├── timeattack3 │ │ │ ├── timeattack4 │ │ │ ├── timeattack5 │ │ │ ├── timeattack6 │ │ │ ├── timeattack7 │ │ │ ├── timeattack8 │ │ │ └── timeattack9 │ │ └── west_coast_usa │ │ │ ├── Adrift1 │ │ │ ├── Adrift10 │ │ │ ├── Adrift11 │ │ │ ├── Adrift12 │ │ │ ├── Adrift2 │ │ │ ├── Adrift3 │ │ │ ├── Adrift4 │ │ │ ├── Adrift5 │ │ │ ├── Adrift6 │ │ │ ├── Adrift7 │ │ │ ├── Adrift8 │ │ │ ├── Adrift9 │ │ │ ├── Ajump1 │ │ │ ├── Ajump2 │ │ │ ├── Ajump3 │ │ │ ├── Aspeedtrap1 │ │ │ ├── Aspeedtrap10 │ │ │ ├── Aspeedtrap11 │ │ │ ├── Aspeedtrap12 │ │ │ ├── Aspeedtrap2 │ │ │ ├── Aspeedtrap3 │ │ │ ├── Aspeedtrap4 │ │ │ ├── Aspeedtrap5 │ │ │ ├── Aspeedtrap6 │ │ │ ├── Aspeedtrap7 │ │ │ ├── Aspeedtrap8 │ │ │ ├── Aspeedtrap9 │ │ │ ├── Atimeattack1 │ │ │ ├── Atimeattack10 │ │ │ ├── Atimeattack2 │ │ │ ├── Atimeattack3 │ │ │ ├── Atimeattack4 │ │ │ ├── Atimeattack5 │ │ │ ├── Atimeattack6 │ │ │ ├── Atimeattack7 │ │ │ ├── Atimeattack8 │ │ │ └── Atimeattack9 │ ├── currentTrackEvent │ ├── dmgPrices │ ├── garage │ │ ├── car0 │ │ └── config │ │ │ └── car0 │ ├── init │ │ ├── barnFindData │ │ ├── beamstate │ │ │ ├── car0.save.json │ │ │ ├── car1.save.json │ │ │ ├── car2.save.json │ │ │ ├── car3.save.json │ │ │ ├── car4.save.json │ │ │ ├── car5.save.json │ │ │ ├── car6.save.json │ │ │ ├── integrity │ │ │ │ ├── car0 │ │ │ │ ├── car1 │ │ │ │ ├── car2 │ │ │ │ ├── car3 │ │ │ │ ├── car4 │ │ │ │ ├── car5 │ │ │ │ └── car6 │ │ │ └── mech │ │ │ │ ├── car0 │ │ │ │ ├── car1 │ │ │ │ ├── car2 │ │ │ │ ├── car3 │ │ │ │ ├── car4 │ │ │ │ ├── car5 │ │ │ │ └── car6 │ │ ├── carMeetDayData │ │ ├── emptyRaceProgress │ │ ├── emptyShopDayData │ │ ├── garage │ │ │ ├── car0 │ │ │ ├── car1 │ │ │ ├── car2 │ │ │ ├── car3 │ │ │ ├── car4 │ │ │ ├── car5 │ │ │ ├── car6 │ │ │ └── config │ │ │ │ ├── car0 │ │ │ │ ├── car1 │ │ │ │ ├── car2 │ │ │ │ ├── car3 │ │ │ │ ├── car4 │ │ │ │ ├── car5 │ │ │ │ └── car6 │ │ ├── itemInventory │ │ ├── mainData_easy │ │ ├── mainData_hard │ │ ├── mainData_medium │ │ ├── ownedProperties │ │ ├── partInventory │ │ ├── trackEventResults │ │ └── usedPartDayData │ ├── itemInventory │ ├── locales │ │ └── en-US.json │ ├── mainData │ ├── mapdata │ │ ├── east_coast_usa │ │ │ ├── gps │ │ │ ├── markers │ │ │ ├── spawn │ │ │ ├── towing │ │ │ ├── traffic │ │ │ ├── triggerData │ │ │ │ ├── barnfindA │ │ │ │ ├── barnfindB │ │ │ │ ├── challenges1 │ │ │ │ ├── challenges2 │ │ │ │ ├── dirtRace │ │ │ │ ├── gasStation1 │ │ │ │ ├── gasStation2 │ │ │ │ ├── gasStationMeet │ │ │ │ ├── newShop1 │ │ │ │ ├── nightDragRace │ │ │ │ ├── partShop1 │ │ │ │ ├── partShop2 │ │ │ │ ├── propertyIndustrial │ │ │ │ ├── propertySeaside │ │ │ │ ├── propertyTown │ │ │ │ ├── ruralRace │ │ │ │ ├── scrapyard1 │ │ │ │ ├── seasideDragRace │ │ │ │ ├── townDragRace │ │ │ │ └── usedShop1 │ │ │ └── triggers │ │ ├── italy │ │ │ ├── gps │ │ │ ├── markers │ │ │ ├── spawn │ │ │ ├── towing │ │ │ ├── traffic │ │ │ ├── triggerData │ │ │ │ ├── barnfindA │ │ │ │ ├── barnfindB │ │ │ │ ├── barnfindC │ │ │ │ ├── beachMeet │ │ │ │ ├── challengeTouge │ │ │ │ ├── challengeUrban │ │ │ │ ├── gasStationA │ │ │ │ ├── gasStationB │ │ │ │ ├── gasStationC │ │ │ │ ├── gasStationD │ │ │ │ ├── gasStationE │ │ │ │ ├── gasStationF │ │ │ │ ├── gasStationG │ │ │ │ ├── gasStationH │ │ │ │ ├── gasStationI │ │ │ │ ├── gasStationJ │ │ │ │ ├── hospitalMeet │ │ │ │ ├── newShopA │ │ │ │ ├── partShopA │ │ │ │ ├── partShopB │ │ │ │ ├── partShopC │ │ │ │ ├── propertyBeach │ │ │ │ ├── propertyPort │ │ │ │ ├── propertySeaside │ │ │ │ ├── propertyVineyard │ │ │ │ ├── raceAirport │ │ │ │ ├── raceCrossroads │ │ │ │ ├── raceHighwayA │ │ │ │ ├── raceHighwayB │ │ │ │ ├── raceVineyard │ │ │ │ ├── scrapyardA │ │ │ │ ├── usedShopA │ │ │ │ └── usedShopB │ │ │ └── triggers │ │ ├── utah │ │ │ ├── gps │ │ │ ├── markers │ │ │ ├── spawn │ │ │ ├── towing │ │ │ ├── traffic │ │ │ ├── triggerData │ │ │ │ ├── barnfindA │ │ │ │ ├── barnfindB │ │ │ │ ├── challenges1 │ │ │ │ ├── dragRace │ │ │ │ ├── gasStation1 │ │ │ │ ├── gasStation2 │ │ │ │ ├── highwayRace │ │ │ │ ├── infoCenterMeet │ │ │ │ ├── newShop1 │ │ │ │ ├── nightDragRace │ │ │ │ ├── offroadRace │ │ │ │ ├── partShop1 │ │ │ │ ├── scrapyard1 │ │ │ │ ├── topGasProperty │ │ │ │ ├── touristParkingMeet │ │ │ │ └── usedShop1 │ │ │ └── triggers │ │ └── west_coast_usa │ │ │ ├── gps │ │ │ ├── markers │ │ │ ├── spawn │ │ │ ├── towing │ │ │ ├── traffic │ │ │ ├── triggerData │ │ │ ├── barnfindA │ │ │ ├── barnfindB │ │ │ ├── barnfindC │ │ │ ├── challengeA │ │ │ ├── gasStationA │ │ │ ├── gasStationB │ │ │ ├── gasStationC │ │ │ ├── gasStationD │ │ │ ├── gasStationE │ │ │ ├── meetIsland │ │ │ ├── meetRaceParking │ │ │ ├── mixedShop │ │ │ ├── newShop │ │ │ ├── partShopA │ │ │ ├── partShopB │ │ │ ├── partShopC │ │ │ ├── propertyApartment │ │ │ ├── propertyDockyard │ │ │ ├── propertyPrivateLot │ │ │ ├── propertyRaceGarage │ │ │ ├── propertyRentalA │ │ │ ├── propertyRentalB │ │ │ ├── propertySteelmill │ │ │ ├── propertySuburb │ │ │ ├── raceDragA │ │ │ ├── raceDragB │ │ │ ├── raceDragC │ │ │ ├── raceIsland │ │ │ ├── raceService │ │ │ ├── scrapyard │ │ │ ├── usedShopA │ │ │ └── usedShopB │ │ │ └── triggers │ ├── missionFailedPenalty │ ├── missions │ │ ├── east_coast_usa │ │ │ ├── convenienceADelivery │ │ │ ├── convenienceBDelivery │ │ │ ├── dockDelivery │ │ │ ├── eastCoastGiver0 │ │ │ ├── eastCoastGiver1 │ │ │ ├── farmhouseDelivery │ │ │ ├── firstresponderDelivery │ │ │ ├── firwoodInnDelivery │ │ │ ├── gooseneckDeliveryDock │ │ │ ├── gooseneckDeliveryFarStore │ │ │ ├── gooseneckDeliveryFarmhouse │ │ │ ├── gooseneckDeliveryFirstResponder │ │ │ ├── gooseneckDeliveryFirwoodInn │ │ │ ├── gooseneckDeliveryRedManor │ │ │ ├── gooseneckDeliverySawmill │ │ │ ├── gooseneckDeliveryTownStore │ │ │ ├── list_gooseneck0 │ │ │ ├── list_gooseneck1 │ │ │ ├── list_small0 │ │ │ ├── list_small1 │ │ │ ├── list_trailer0 │ │ │ ├── list_trailer1 │ │ │ ├── manorDelivery │ │ │ ├── pondDelivery │ │ │ ├── sawmillDelivery │ │ │ ├── trailerDeliveryDock │ │ │ ├── trailerDeliveryFarStore │ │ │ ├── trailerDeliveryFarmhouse │ │ │ ├── trailerDeliveryFirstResponder │ │ │ ├── trailerDeliveryFirwoodInn │ │ │ ├── trailerDeliveryRedManor │ │ │ ├── trailerDeliverySawmill │ │ │ ├── trailerDeliveryTownStore │ │ │ └── watchtowerDelivery │ │ ├── italy │ │ │ ├── gooseneckDeliveryAirportHangar │ │ │ ├── gooseneckDeliveryAirportTownBeachParking │ │ │ ├── gooseneckDeliveryAirportTownDock │ │ │ ├── gooseneckDeliveryBayTownDock │ │ │ ├── gooseneckDeliveryBayTownGas │ │ │ ├── gooseneckDeliveryCastleTownShop │ │ │ ├── gooseneckDeliveryCityApartments │ │ │ ├── gooseneckDeliveryCityBoatyard │ │ │ ├── gooseneckDeliveryCliffsideManor │ │ │ ├── gooseneckDeliveryCrossroadsTown │ │ │ ├── gooseneckDeliveryFirefighters │ │ │ ├── gooseneckDeliveryHospital │ │ │ ├── gooseneckDeliveryIsolatedBeach │ │ │ ├── gooseneckDeliveryMountainDirtObserve │ │ │ ├── gooseneckDeliveryMountainDirtParking │ │ │ ├── gooseneckDeliveryPort │ │ │ ├── gooseneckDeliveryPortFactory │ │ │ ├── gooseneckDeliveryRoadsideBeach │ │ │ ├── gooseneckDeliverySeasideFarmhouse │ │ │ ├── gooseneckDeliverySeasideParking │ │ │ ├── gooseneckDeliverySmallBayTownParking │ │ │ ├── gooseneckDeliveryVineyardConstruction │ │ │ ├── italyGiverA │ │ │ ├── italyGiverB │ │ │ ├── italyGiverC │ │ │ ├── list_gooseneckA │ │ │ ├── list_gooseneckB │ │ │ ├── list_gooseneckC │ │ │ ├── list_smallA │ │ │ ├── list_smallB │ │ │ ├── list_smallC │ │ │ ├── list_trailerA │ │ │ ├── list_trailerB │ │ │ ├── list_trailerC │ │ │ ├── smallDeliveryAirportArrivalGate │ │ │ ├── smallDeliveryAirportHangar │ │ │ ├── smallDeliveryAirportTownBeachParking │ │ │ ├── smallDeliveryBayTownCenter │ │ │ ├── smallDeliveryBayTownDock │ │ │ ├── smallDeliveryCastleTownParking │ │ │ ├── smallDeliveryCastleTownStation │ │ │ ├── smallDeliveryCelltower │ │ │ ├── smallDeliveryCityApartments │ │ │ ├── smallDeliveryCityPark │ │ │ ├── smallDeliveryCliffsideManor │ │ │ ├── smallDeliveryCrossroadsTownHouseA │ │ │ ├── smallDeliveryCrossroadsTownHouseB │ │ │ ├── smallDeliveryCrossroadsTownHouseC │ │ │ ├── smallDeliveryFirefighters │ │ │ ├── smallDeliveryFortress │ │ │ ├── smallDeliveryHospital │ │ │ ├── smallDeliveryIsolatedBeach │ │ │ ├── smallDeliveryMountainVillageCastle │ │ │ ├── smallDeliveryMountainVillageChurch │ │ │ ├── smallDeliveryPortFactory │ │ │ ├── smallDeliveryPortOffice │ │ │ ├── smallDeliveryRoadsideBeach │ │ │ ├── smallDeliverySeasideFarmhouse │ │ │ ├── smallDeliverySeasideHouse │ │ │ ├── smallDeliverySeasideVillage │ │ │ ├── smallDeliverySmallBayTownParking │ │ │ ├── smallDeliveryVineyardConstruction │ │ │ ├── smallDeliveryVineyardHouse │ │ │ ├── trailerDeliveryAirportHangar │ │ │ ├── trailerDeliveryAirportTownBeachParking │ │ │ ├── trailerDeliveryAirportTownDock │ │ │ ├── trailerDeliveryBayTownDock │ │ │ ├── trailerDeliveryBayTownGas │ │ │ ├── trailerDeliveryCastleTownChargers │ │ │ ├── trailerDeliveryCastleTownShop │ │ │ ├── trailerDeliveryCityApartments │ │ │ ├── trailerDeliveryCityBoatyard │ │ │ ├── trailerDeliveryCityHouse │ │ │ ├── trailerDeliveryCliffsideManor │ │ │ ├── trailerDeliveryCrossroadsTownHouseA │ │ │ ├── trailerDeliveryCrossroadsTownHouseB │ │ │ ├── trailerDeliveryCrossroadsTownHouseC │ │ │ ├── trailerDeliveryFirefighters │ │ │ ├── trailerDeliveryHospital │ │ │ ├── trailerDeliveryIsolatedBeach │ │ │ ├── trailerDeliveryMountainDirtObserve │ │ │ ├── trailerDeliveryMountainDirtParking │ │ │ ├── trailerDeliveryMountainVillageStairs │ │ │ ├── trailerDeliveryPort │ │ │ ├── trailerDeliveryPortFactory │ │ │ ├── trailerDeliveryRoadsideBeach │ │ │ ├── trailerDeliverySeasideFarmhouse │ │ │ ├── trailerDeliverySeasideParking │ │ │ ├── trailerDeliverySeasideVillage │ │ │ ├── trailerDeliverySmallBayTownGas │ │ │ ├── trailerDeliverySmallVineyardHouse │ │ │ ├── trailerDeliveryVineyardConstruction │ │ │ └── trailerDeliveryVineyardHouse │ │ ├── items │ │ │ ├── gooseneck │ │ │ │ ├── 22ft_hay_2880kg │ │ │ │ ├── 22ft_hay_5760kg │ │ │ │ ├── 22ft_wood_4200kg │ │ │ │ ├── 22ft_wood_8400kg │ │ │ │ ├── 30ft_hay_3840kg │ │ │ │ ├── 30ft_hay_7680kg │ │ │ │ ├── 30ft_wood_11200kg │ │ │ │ ├── 30ft_wood_5600kg │ │ │ │ ├── 40ft_hay_4800kg │ │ │ │ ├── 40ft_hay_9600kg │ │ │ │ ├── 40ft_wood_14000kg │ │ │ │ ├── 40ft_wood_7000kg │ │ │ │ └── list_all │ │ │ ├── small │ │ │ │ ├── beer │ │ │ │ ├── books │ │ │ │ ├── coffee_lid │ │ │ │ ├── coffee_nolid │ │ │ │ ├── fastfood │ │ │ │ ├── fishingequipment │ │ │ │ ├── gameconsoles │ │ │ │ ├── graphicscards │ │ │ │ ├── list_all │ │ │ │ ├── list_food │ │ │ │ ├── monitors │ │ │ │ ├── motoroil │ │ │ │ ├── mufflers │ │ │ │ ├── pistons │ │ │ │ ├── pizza │ │ │ │ ├── powertools │ │ │ │ ├── scrapmetal │ │ │ │ ├── soda │ │ │ │ ├── sparkplugs │ │ │ │ └── tools │ │ │ └── trailer │ │ │ │ ├── boxutility_1400planks │ │ │ │ ├── boxutility_200crate_documents │ │ │ │ ├── boxutility_200crate_groceries │ │ │ │ ├── boxutility_200crate_smartphones │ │ │ │ ├── boxutility_400crate_bodypanels │ │ │ │ ├── boxutility_400crate_eggs │ │ │ │ ├── boxutility_400crate_engineparts │ │ │ │ ├── boxutility_400crate_fineart │ │ │ │ ├── boxutility_400crate_graphicscards │ │ │ │ ├── boxutility_400crate_scrapmetal │ │ │ │ ├── boxutility_600crate_engineblocks │ │ │ │ ├── boxutility_600crate_harddrives │ │ │ │ ├── boxutility_600crate_tires │ │ │ │ ├── boxutility_armchairs │ │ │ │ ├── boxutility_couch │ │ │ │ ├── boxutility_large_1400planks │ │ │ │ ├── boxutility_large_2100planks │ │ │ │ ├── boxutility_large_400crate_bodypanels │ │ │ │ ├── boxutility_large_400crate_eggs │ │ │ │ ├── boxutility_large_400crate_engineparts │ │ │ │ ├── boxutility_large_400crate_fineart │ │ │ │ ├── boxutility_large_400crate_graphicscards │ │ │ │ ├── boxutility_large_400crate_scrapmetal │ │ │ │ ├── boxutility_large_800crate_engineparts │ │ │ │ ├── boxutility_large_800crate_fridge │ │ │ │ ├── boxutility_large_800crate_metalingots │ │ │ │ ├── boxutility_large_800crate_science │ │ │ │ ├── boxutility_large_armchairs │ │ │ │ ├── boxutility_large_couch │ │ │ │ ├── caravan_empty │ │ │ │ ├── caravan_loaded │ │ │ │ ├── cargotrailer_1400planks │ │ │ │ ├── cargotrailer_2100planks │ │ │ │ ├── cargotrailer_400crate_bodypanels │ │ │ │ ├── cargotrailer_400crate_eggs │ │ │ │ ├── cargotrailer_400crate_engineparts │ │ │ │ ├── cargotrailer_400crate_fineart │ │ │ │ ├── cargotrailer_400crate_graphicscards │ │ │ │ ├── cargotrailer_400crate_scrapmetal │ │ │ │ ├── cargotrailer_800crate_engineparts │ │ │ │ ├── cargotrailer_800crate_fridge │ │ │ │ ├── cargotrailer_800crate_metalingots │ │ │ │ ├── cargotrailer_800crate_science │ │ │ │ ├── cargotrailer_armchairs │ │ │ │ ├── cargotrailer_couch │ │ │ │ ├── list_all │ │ │ │ ├── list_lowheight │ │ │ │ ├── smallflatbed_1400planks │ │ │ │ ├── smallflatbed_2100planks │ │ │ │ ├── smallflatbed_400crate_bodypanels │ │ │ │ ├── smallflatbed_400crate_eggs │ │ │ │ ├── smallflatbed_400crate_engineparts │ │ │ │ ├── smallflatbed_400crate_fineart │ │ │ │ ├── smallflatbed_400crate_graphicscards │ │ │ │ ├── smallflatbed_400crate_scrapmetal │ │ │ │ ├── smallflatbed_800crate_engineparts │ │ │ │ ├── smallflatbed_800crate_fridge │ │ │ │ ├── smallflatbed_800crate_metalingots │ │ │ │ ├── smallflatbed_800crate_science │ │ │ │ ├── smallflatbed_armchairs │ │ │ │ └── smallflatbed_couch │ │ ├── utah │ │ │ ├── airfieldDelivery │ │ │ ├── caravanDelivery │ │ │ ├── constructionDelivery │ │ │ ├── gooseneckDeliveryAirfield │ │ │ ├── gooseneckDeliveryCanyonFuel │ │ │ ├── gooseneckDeliveryConstruction │ │ │ ├── gooseneckDeliveryInfoCenter │ │ │ ├── gooseneckDeliveryNewShop │ │ │ ├── gooseneckDeliveryParking │ │ │ ├── gooseneckDeliveryRanger │ │ │ ├── list_gooseneck │ │ │ ├── list_small │ │ │ ├── list_trailer │ │ │ ├── parkingLotDelivery │ │ │ ├── rangerCabinDelivery │ │ │ ├── topshopDelivery │ │ │ ├── touristAreaDelivery │ │ │ ├── trailerDeliveryAirfield │ │ │ ├── trailerDeliveryCanyonFuel │ │ │ ├── trailerDeliveryConstructionBasement │ │ │ ├── trailerDeliveryInfoCenter │ │ │ ├── trailerDeliveryNewShop │ │ │ ├── trailerDeliveryParking │ │ │ ├── trailerDeliveryRanger │ │ │ └── utahGiver0 │ │ └── west_coast_usa │ │ │ ├── gooseneckDeliveryApartment │ │ │ ├── gooseneckDeliveryBeachParking │ │ │ ├── gooseneckDeliveryBeachPier │ │ │ ├── gooseneckDeliveryConcretePlant │ │ │ ├── gooseneckDeliveryCondoParking │ │ │ ├── gooseneckDeliveryDeadend │ │ │ ├── gooseneckDeliveryDockApartment │ │ │ ├── gooseneckDeliveryDockIndustry │ │ │ ├── gooseneckDeliveryDockWarehouse │ │ │ ├── gooseneckDeliveryDragParking │ │ │ ├── gooseneckDeliveryEasyAutoRepair │ │ │ ├── gooseneckDeliveryFireStation │ │ │ ├── gooseneckDeliveryIslandDockStorage │ │ │ ├── gooseneckDeliveryIslandDockWarehouse │ │ │ ├── gooseneckDeliveryIslandLighthouse │ │ │ ├── gooseneckDeliveryIslandParking │ │ │ ├── gooseneckDeliveryIslandRefinery │ │ │ ├── gooseneckDeliveryMotel │ │ │ ├── gooseneckDeliveryNewCars │ │ │ ├── gooseneckDeliveryPartWarehouse │ │ │ ├── gooseneckDeliveryPlaza │ │ │ ├── gooseneckDeliveryQuarry │ │ │ ├── gooseneckDeliveryQuarryParking │ │ │ ├── gooseneckDeliveryQuarrysideAuto │ │ │ ├── gooseneckDeliveryRaceParking │ │ │ ├── gooseneckDeliveryRentabox │ │ │ ├── gooseneckDeliveryServiceStation │ │ │ ├── gooseneckDeliverySportsComplex │ │ │ ├── gooseneckDeliverySteelMill │ │ │ ├── gooseneckDeliveryStudio │ │ │ ├── gooseneckDeliveryStudioWarehouse │ │ │ ├── gooseneckDeliverySuburb │ │ │ ├── gooseneckDeliveryTram │ │ │ ├── list_gooseneckA │ │ │ ├── list_gooseneckB │ │ │ ├── list_gooseneckC │ │ │ ├── list_smallA │ │ │ ├── list_smallB │ │ │ ├── list_smallC │ │ │ ├── list_trailerA │ │ │ ├── list_trailerB │ │ │ ├── list_trailerC │ │ │ ├── smallDeliveryApex │ │ │ ├── smallDeliveryBeachParking │ │ │ ├── smallDeliveryChinatownParking │ │ │ ├── smallDeliveryChurch │ │ │ ├── smallDeliveryCityPier │ │ │ ├── smallDeliveryConcretePlant │ │ │ ├── smallDeliveryCondoParking │ │ │ ├── smallDeliveryCondos │ │ │ ├── smallDeliveryDeliFoodMart │ │ │ ├── smallDeliveryDockyardIndustry │ │ │ ├── smallDeliveryDragParking │ │ │ ├── smallDeliveryEasyAutoRepair │ │ │ ├── smallDeliveryFireStation │ │ │ ├── smallDeliveryHiddenParking │ │ │ ├── smallDeliveryHospital │ │ │ ├── smallDeliveryIslandDockParking │ │ │ ├── smallDeliveryIslandDockWarehouse │ │ │ ├── smallDeliveryIslandParkingArea │ │ │ ├── smallDeliveryLighthouse │ │ │ ├── smallDeliveryMotel │ │ │ ├── smallDeliveryOfficeBuilding │ │ │ ├── smallDeliveryPlaza │ │ │ ├── smallDeliveryPlazaParking │ │ │ ├── smallDeliveryPolice │ │ │ ├── smallDeliveryPortWarehouse │ │ │ ├── smallDeliveryQuarry │ │ │ ├── smallDeliveryQuarryCellTower │ │ │ ├── smallDeliveryQuarrysideAuto │ │ │ ├── smallDeliveryRaceTrack │ │ │ ├── smallDeliveryRefinery │ │ │ ├── smallDeliveryRentabox │ │ │ ├── smallDeliveryRestaurant │ │ │ ├── smallDeliveryServiceStation │ │ │ ├── smallDeliverySmallCityHouse │ │ │ ├── smallDeliverySportsComplex │ │ │ ├── smallDeliverySteelMill1 │ │ │ ├── smallDeliverySteelMill2 │ │ │ ├── smallDeliveryStudio │ │ │ ├── smallDeliveryStudioWarehouse │ │ │ ├── smallDeliverySuburb1 │ │ │ ├── smallDeliverySuburb2 │ │ │ ├── smallDeliverySuburbCellTower │ │ │ ├── smallDeliveryTram │ │ │ ├── smallDeliveryTrilobite │ │ │ ├── smallDeliveryTurboBurger │ │ │ ├── smallDeliveryWoodHouse │ │ │ ├── trailerDeliveryApartment │ │ │ ├── trailerDeliveryChinatown │ │ │ ├── trailerDeliveryConcretePlant │ │ │ ├── trailerDeliveryCondoParking │ │ │ ├── trailerDeliveryCondos │ │ │ ├── trailerDeliveryConstruction │ │ │ ├── trailerDeliveryDeadend │ │ │ ├── trailerDeliveryDockyard │ │ │ ├── trailerDeliveryDockyardIndustry │ │ │ ├── trailerDeliveryEasyAutoRepair │ │ │ ├── trailerDeliveryExhaust │ │ │ ├── trailerDeliveryFireStation │ │ │ ├── trailerDeliveryIslandDockStorage │ │ │ ├── trailerDeliveryIslandDockWarehouse │ │ │ ├── trailerDeliveryIslandParking │ │ │ ├── trailerDeliveryLighthouse │ │ │ ├── trailerDeliveryMixedCars │ │ │ ├── trailerDeliveryMotel │ │ │ ├── trailerDeliveryNearPolice │ │ │ ├── trailerDeliveryNewCars │ │ │ ├── trailerDeliveryOpera │ │ │ ├── trailerDeliveryPartWarehouse │ │ │ ├── trailerDeliveryPier │ │ │ ├── trailerDeliveryPlaza │ │ │ ├── trailerDeliveryQuarry │ │ │ ├── trailerDeliveryQuarryCellTower │ │ │ ├── trailerDeliveryQuarrysideAuto │ │ │ ├── trailerDeliveryRaceTrack │ │ │ ├── trailerDeliveryRefinery │ │ │ ├── trailerDeliveryRentabox │ │ │ ├── trailerDeliveryServiceStation │ │ │ ├── trailerDeliverySportsComplex │ │ │ ├── trailerDeliverySteelmill1 │ │ │ ├── trailerDeliverySteelmill2 │ │ │ ├── trailerDeliveryStudio │ │ │ ├── trailerDeliveryStudioWarehouse │ │ │ ├── trailerDeliverySuburb │ │ │ ├── trailerDeliverySuburbCellTower │ │ │ ├── trailerDeliveryTramStation │ │ │ ├── trailerDeliveryUsedCars │ │ │ ├── trailerDeliveryWoodHouse │ │ │ ├── westCoastGiverA │ │ │ ├── westCoastGiverB │ │ │ └── westCoastGiverC │ ├── offenseCostData │ ├── offenseNameData │ ├── opnames │ ├── options │ ├── ownedProperties │ ├── partCategories │ ├── partInventory │ ├── partprices │ ├── performanceClass │ │ ├── A │ │ ├── B │ │ ├── C │ │ ├── D │ │ ├── E │ │ ├── NA │ │ ├── ROH │ │ ├── S │ │ ├── X │ │ ├── brand │ │ │ ├── Autobello │ │ │ │ ├── B │ │ │ │ ├── C │ │ │ │ ├── D │ │ │ │ ├── E │ │ │ │ ├── S │ │ │ │ ├── X │ │ │ │ ├── tier_high │ │ │ │ └── tier_mid │ │ │ ├── Bruckell │ │ │ │ ├── A │ │ │ │ ├── B │ │ │ │ ├── C │ │ │ │ ├── D │ │ │ │ ├── E │ │ │ │ ├── S │ │ │ │ ├── X │ │ │ │ ├── tier_high │ │ │ │ └── tier_mid │ │ │ ├── Burnside │ │ │ │ ├── A │ │ │ │ ├── B │ │ │ │ ├── C │ │ │ │ ├── D │ │ │ │ ├── E │ │ │ │ ├── S │ │ │ │ ├── X │ │ │ │ ├── tier_high │ │ │ │ └── tier_mid │ │ │ ├── Cherrier │ │ │ │ ├── A │ │ │ │ ├── B │ │ │ │ ├── C │ │ │ │ ├── D │ │ │ │ ├── E │ │ │ │ ├── S │ │ │ │ ├── tier_high │ │ │ │ └── tier_mid │ │ │ ├── Civetta │ │ │ │ ├── A │ │ │ │ ├── B │ │ │ │ ├── E │ │ │ │ ├── S │ │ │ │ ├── X │ │ │ │ ├── tier_high │ │ │ │ └── tier_mid │ │ │ ├── ETK │ │ │ │ ├── A │ │ │ │ ├── B │ │ │ │ ├── C │ │ │ │ ├── D │ │ │ │ ├── E │ │ │ │ ├── S │ │ │ │ ├── tier_high │ │ │ │ └── tier_mid │ │ │ ├── Gavril │ │ │ │ ├── A │ │ │ │ ├── B │ │ │ │ ├── C │ │ │ │ ├── D │ │ │ │ ├── E │ │ │ │ ├── S │ │ │ │ ├── X │ │ │ │ ├── tier_high │ │ │ │ └── tier_mid │ │ │ ├── Hirochi │ │ │ │ ├── A │ │ │ │ ├── B │ │ │ │ ├── C │ │ │ │ ├── D │ │ │ │ ├── E │ │ │ │ ├── S │ │ │ │ ├── tier_high │ │ │ │ └── tier_mid │ │ │ ├── Ibishu │ │ │ │ ├── A │ │ │ │ ├── B │ │ │ │ ├── C │ │ │ │ ├── D │ │ │ │ ├── E │ │ │ │ ├── S │ │ │ │ ├── X │ │ │ │ ├── tier_high │ │ │ │ └── tier_mid │ │ │ ├── SP │ │ │ │ ├── A │ │ │ │ ├── B │ │ │ │ ├── C │ │ │ │ └── S │ │ │ └── Soliad │ │ │ │ ├── A │ │ │ │ ├── B │ │ │ │ ├── C │ │ │ │ ├── D │ │ │ │ ├── E │ │ │ │ ├── S │ │ │ │ ├── X │ │ │ │ ├── tier_high │ │ │ │ └── tier_mid │ │ ├── club │ │ │ ├── dirt_bronze │ │ │ ├── dirt_gold │ │ │ ├── dirt_hero │ │ │ ├── dirt_silver │ │ │ ├── street_bronze │ │ │ ├── street_gold │ │ │ ├── street_gold_drag │ │ │ ├── street_hero │ │ │ ├── street_hero_drag │ │ │ └── street_silver │ │ ├── drivetrain │ │ │ ├── AWD │ │ │ │ ├── A │ │ │ │ ├── B │ │ │ │ ├── C │ │ │ │ ├── D │ │ │ │ ├── E │ │ │ │ ├── S │ │ │ │ └── X │ │ │ ├── AWD_tier_high │ │ │ ├── AWD_tier_mid │ │ │ ├── FWD │ │ │ │ ├── A │ │ │ │ ├── B │ │ │ │ ├── C │ │ │ │ ├── D │ │ │ │ ├── E │ │ │ │ └── X │ │ │ ├── FWD_tier_high │ │ │ ├── FWD_tier_mid │ │ │ ├── RWD │ │ │ │ ├── A │ │ │ │ ├── B │ │ │ │ ├── C │ │ │ │ ├── D │ │ │ │ ├── E │ │ │ │ ├── S │ │ │ │ └── X │ │ │ ├── RWD_tier_high │ │ │ └── RWD_tier_mid │ │ ├── induction │ │ │ ├── NA │ │ │ │ ├── A │ │ │ │ ├── B │ │ │ │ ├── C │ │ │ │ ├── D │ │ │ │ ├── E │ │ │ │ └── S │ │ │ ├── NA_tier_high │ │ │ ├── NA_tier_mid │ │ │ ├── NOINDUCTION │ │ │ │ ├── B │ │ │ │ ├── C │ │ │ │ └── S │ │ │ ├── SC │ │ │ │ ├── A │ │ │ │ ├── B │ │ │ │ ├── C │ │ │ │ ├── D │ │ │ │ ├── S │ │ │ │ └── X │ │ │ ├── SC_N2O │ │ │ │ ├── A │ │ │ │ ├── B │ │ │ │ ├── C │ │ │ │ ├── S │ │ │ │ └── X │ │ │ ├── SC_N2O_tier_high │ │ │ ├── SC_N2O_tier_mid │ │ │ ├── SC_tier_high │ │ │ ├── SC_tier_mid │ │ │ ├── Turbo │ │ │ │ ├── A │ │ │ │ ├── B │ │ │ │ ├── C │ │ │ │ ├── D │ │ │ │ ├── E │ │ │ │ ├── S │ │ │ │ └── X │ │ │ ├── Turbo_N2O │ │ │ │ ├── A │ │ │ │ ├── B │ │ │ │ ├── S │ │ │ │ └── X │ │ │ ├── Turbo_N2O_tier_high │ │ │ ├── Turbo_N2O_tier_mid │ │ │ ├── Turbo_tier_high │ │ │ └── Turbo_tier_mid │ │ ├── trackA │ │ └── trackS │ ├── pinkslipsBlacklist │ ├── policeTicket │ ├── preferences │ ├── races │ │ ├── eastCoastDirtRaceClub │ │ │ ├── bronze │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race2 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ │ ├── gold │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race2 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ │ ├── hero │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race2 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ │ ├── progress │ │ │ └── silver │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race2 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ ├── eastCoastNightRaceClub │ │ │ ├── bronze │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race12 │ │ │ │ ├── race13 │ │ │ │ ├── race14 │ │ │ │ ├── race15 │ │ │ │ ├── race16 │ │ │ │ ├── race17 │ │ │ │ ├── race18 │ │ │ │ ├── race19 │ │ │ │ ├── race2 │ │ │ │ ├── race20 │ │ │ │ ├── race21 │ │ │ │ ├── race22 │ │ │ │ ├── race23 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ │ ├── gold │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race12 │ │ │ │ ├── race13 │ │ │ │ ├── race14 │ │ │ │ ├── race15 │ │ │ │ ├── race16 │ │ │ │ ├── race17 │ │ │ │ ├── race18 │ │ │ │ ├── race19 │ │ │ │ ├── race2 │ │ │ │ ├── race20 │ │ │ │ ├── race21 │ │ │ │ ├── race22 │ │ │ │ ├── race23 │ │ │ │ ├── race24 │ │ │ │ ├── race25 │ │ │ │ ├── race26 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ │ ├── hero │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race12 │ │ │ │ ├── race13 │ │ │ │ ├── race14 │ │ │ │ ├── race15 │ │ │ │ ├── race16 │ │ │ │ ├── race17 │ │ │ │ ├── race18 │ │ │ │ ├── race19 │ │ │ │ ├── race2 │ │ │ │ ├── race20 │ │ │ │ ├── race21 │ │ │ │ ├── race22 │ │ │ │ ├── race23 │ │ │ │ ├── race24 │ │ │ │ ├── race25 │ │ │ │ ├── race26 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ │ ├── progress │ │ │ └── silver │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race12 │ │ │ │ ├── race13 │ │ │ │ ├── race14 │ │ │ │ ├── race15 │ │ │ │ ├── race16 │ │ │ │ ├── race17 │ │ │ │ ├── race18 │ │ │ │ ├── race19 │ │ │ │ ├── race2 │ │ │ │ ├── race20 │ │ │ │ ├── race21 │ │ │ │ ├── race22 │ │ │ │ ├── race23 │ │ │ │ ├── race24 │ │ │ │ ├── race25 │ │ │ │ ├── race26 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ ├── eastCoastRuralRaceClub │ │ │ ├── bronze │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race12 │ │ │ │ ├── race13 │ │ │ │ ├── race14 │ │ │ │ ├── race2 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ │ ├── gold │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race12 │ │ │ │ ├── race13 │ │ │ │ ├── race14 │ │ │ │ ├── race2 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ │ ├── hero │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race12 │ │ │ │ ├── race13 │ │ │ │ ├── race14 │ │ │ │ ├── race2 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ │ ├── progress │ │ │ └── silver │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race12 │ │ │ │ ├── race13 │ │ │ │ ├── race14 │ │ │ │ ├── race2 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ ├── eastCoastSeasideDragRaceClub │ │ │ ├── bronze │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race12 │ │ │ │ ├── race13 │ │ │ │ ├── race14 │ │ │ │ ├── race15 │ │ │ │ ├── race16 │ │ │ │ ├── race17 │ │ │ │ ├── race18 │ │ │ │ ├── race19 │ │ │ │ ├── race2 │ │ │ │ ├── race20 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ │ ├── gold │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race12 │ │ │ │ ├── race13 │ │ │ │ ├── race14 │ │ │ │ ├── race15 │ │ │ │ ├── race16 │ │ │ │ ├── race17 │ │ │ │ ├── race18 │ │ │ │ ├── race19 │ │ │ │ ├── race2 │ │ │ │ ├── race20 │ │ │ │ ├── race21 │ │ │ │ ├── race22 │ │ │ │ ├── race23 │ │ │ │ ├── race24 │ │ │ │ ├── race25 │ │ │ │ ├── race26 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ │ ├── hero │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race12 │ │ │ │ ├── race13 │ │ │ │ ├── race14 │ │ │ │ ├── race15 │ │ │ │ ├── race16 │ │ │ │ ├── race17 │ │ │ │ ├── race18 │ │ │ │ ├── race19 │ │ │ │ ├── race2 │ │ │ │ ├── race20 │ │ │ │ ├── race21 │ │ │ │ ├── race22 │ │ │ │ ├── race23 │ │ │ │ ├── race24 │ │ │ │ ├── race25 │ │ │ │ ├── race26 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ │ ├── progress │ │ │ └── silver │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race12 │ │ │ │ ├── race13 │ │ │ │ ├── race14 │ │ │ │ ├── race15 │ │ │ │ ├── race16 │ │ │ │ ├── race17 │ │ │ │ ├── race18 │ │ │ │ ├── race19 │ │ │ │ ├── race2 │ │ │ │ ├── race20 │ │ │ │ ├── race21 │ │ │ │ ├── race22 │ │ │ │ ├── race23 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ ├── eastCoastTownDragRaceClub │ │ │ ├── bronze │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race12 │ │ │ │ ├── race13 │ │ │ │ ├── race14 │ │ │ │ ├── race15 │ │ │ │ ├── race16 │ │ │ │ ├── race17 │ │ │ │ ├── race18 │ │ │ │ ├── race19 │ │ │ │ ├── race2 │ │ │ │ ├── race20 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ │ ├── gold │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race12 │ │ │ │ ├── race13 │ │ │ │ ├── race14 │ │ │ │ ├── race15 │ │ │ │ ├── race16 │ │ │ │ ├── race17 │ │ │ │ ├── race18 │ │ │ │ ├── race19 │ │ │ │ ├── race2 │ │ │ │ ├── race20 │ │ │ │ ├── race21 │ │ │ │ ├── race22 │ │ │ │ ├── race23 │ │ │ │ ├── race24 │ │ │ │ ├── race25 │ │ │ │ ├── race26 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ │ ├── hero │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race12 │ │ │ │ ├── race13 │ │ │ │ ├── race14 │ │ │ │ ├── race15 │ │ │ │ ├── race16 │ │ │ │ ├── race17 │ │ │ │ ├── race18 │ │ │ │ ├── race19 │ │ │ │ ├── race2 │ │ │ │ ├── race20 │ │ │ │ ├── race21 │ │ │ │ ├── race22 │ │ │ │ ├── race23 │ │ │ │ ├── race24 │ │ │ │ ├── race25 │ │ │ │ ├── race26 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ │ ├── progress │ │ │ └── silver │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race12 │ │ │ │ ├── race13 │ │ │ │ ├── race14 │ │ │ │ ├── race15 │ │ │ │ ├── race16 │ │ │ │ ├── race17 │ │ │ │ ├── race18 │ │ │ │ ├── race19 │ │ │ │ ├── race2 │ │ │ │ ├── race20 │ │ │ │ ├── race21 │ │ │ │ ├── race22 │ │ │ │ ├── race23 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ ├── integrity │ │ │ ├── bad │ │ │ └── good │ │ ├── italyAirportRaceClub │ │ │ ├── bronze │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race12 │ │ │ │ ├── race13 │ │ │ │ ├── race14 │ │ │ │ ├── race15 │ │ │ │ ├── race16 │ │ │ │ ├── race17 │ │ │ │ ├── race18 │ │ │ │ ├── race19 │ │ │ │ ├── race2 │ │ │ │ ├── race20 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ │ ├── gold │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race12 │ │ │ │ ├── race13 │ │ │ │ ├── race14 │ │ │ │ ├── race15 │ │ │ │ ├── race16 │ │ │ │ ├── race17 │ │ │ │ ├── race18 │ │ │ │ ├── race19 │ │ │ │ ├── race2 │ │ │ │ ├── race20 │ │ │ │ ├── race21 │ │ │ │ ├── race22 │ │ │ │ ├── race23 │ │ │ │ ├── race24 │ │ │ │ ├── race25 │ │ │ │ ├── race26 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ │ ├── hero │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race12 │ │ │ │ ├── race13 │ │ │ │ ├── race14 │ │ │ │ ├── race15 │ │ │ │ ├── race16 │ │ │ │ ├── race17 │ │ │ │ ├── race18 │ │ │ │ ├── race19 │ │ │ │ ├── race2 │ │ │ │ ├── race20 │ │ │ │ ├── race21 │ │ │ │ ├── race22 │ │ │ │ ├── race23 │ │ │ │ ├── race24 │ │ │ │ ├── race25 │ │ │ │ ├── race26 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ │ ├── progress │ │ │ └── silver │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race12 │ │ │ │ ├── race13 │ │ │ │ ├── race14 │ │ │ │ ├── race15 │ │ │ │ ├── race16 │ │ │ │ ├── race17 │ │ │ │ ├── race18 │ │ │ │ ├── race19 │ │ │ │ ├── race2 │ │ │ │ ├── race20 │ │ │ │ ├── race21 │ │ │ │ ├── race22 │ │ │ │ ├── race23 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ ├── italyCrossroadsRaceClub │ │ │ ├── bronze │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race2 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ │ ├── gold │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race2 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ │ ├── hero │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race2 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ │ ├── progress │ │ │ └── silver │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race2 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ ├── italyHighwayRaceClubA │ │ │ ├── bronze │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race12 │ │ │ │ ├── race13 │ │ │ │ ├── race14 │ │ │ │ ├── race15 │ │ │ │ ├── race16 │ │ │ │ ├── race17 │ │ │ │ ├── race18 │ │ │ │ ├── race19 │ │ │ │ ├── race2 │ │ │ │ ├── race20 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ │ ├── gold │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race12 │ │ │ │ ├── race13 │ │ │ │ ├── race14 │ │ │ │ ├── race15 │ │ │ │ ├── race16 │ │ │ │ ├── race17 │ │ │ │ ├── race18 │ │ │ │ ├── race19 │ │ │ │ ├── race2 │ │ │ │ ├── race20 │ │ │ │ ├── race21 │ │ │ │ ├── race22 │ │ │ │ ├── race23 │ │ │ │ ├── race24 │ │ │ │ ├── race25 │ │ │ │ ├── race26 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ │ ├── hero │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race12 │ │ │ │ ├── race13 │ │ │ │ ├── race14 │ │ │ │ ├── race15 │ │ │ │ ├── race16 │ │ │ │ ├── race17 │ │ │ │ ├── race18 │ │ │ │ ├── race19 │ │ │ │ ├── race2 │ │ │ │ ├── race20 │ │ │ │ ├── race21 │ │ │ │ ├── race22 │ │ │ │ ├── race23 │ │ │ │ ├── race24 │ │ │ │ ├── race25 │ │ │ │ ├── race26 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ │ ├── progress │ │ │ └── silver │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race12 │ │ │ │ ├── race13 │ │ │ │ ├── race14 │ │ │ │ ├── race15 │ │ │ │ ├── race16 │ │ │ │ ├── race17 │ │ │ │ ├── race18 │ │ │ │ ├── race19 │ │ │ │ ├── race2 │ │ │ │ ├── race20 │ │ │ │ ├── race21 │ │ │ │ ├── race22 │ │ │ │ ├── race23 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ ├── italyHighwayRaceClubB │ │ │ ├── bronze │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race12 │ │ │ │ ├── race13 │ │ │ │ ├── race14 │ │ │ │ ├── race15 │ │ │ │ ├── race16 │ │ │ │ ├── race17 │ │ │ │ ├── race18 │ │ │ │ ├── race19 │ │ │ │ ├── race2 │ │ │ │ ├── race20 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ │ ├── gold │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race12 │ │ │ │ ├── race13 │ │ │ │ ├── race14 │ │ │ │ ├── race15 │ │ │ │ ├── race16 │ │ │ │ ├── race17 │ │ │ │ ├── race18 │ │ │ │ ├── race19 │ │ │ │ ├── race2 │ │ │ │ ├── race20 │ │ │ │ ├── race21 │ │ │ │ ├── race22 │ │ │ │ ├── race23 │ │ │ │ ├── race24 │ │ │ │ ├── race25 │ │ │ │ ├── race26 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ │ ├── hero │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race12 │ │ │ │ ├── race13 │ │ │ │ ├── race14 │ │ │ │ ├── race15 │ │ │ │ ├── race16 │ │ │ │ ├── race17 │ │ │ │ ├── race18 │ │ │ │ ├── race19 │ │ │ │ ├── race2 │ │ │ │ ├── race20 │ │ │ │ ├── race21 │ │ │ │ ├── race22 │ │ │ │ ├── race23 │ │ │ │ ├── race24 │ │ │ │ ├── race25 │ │ │ │ ├── race26 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ │ ├── progress │ │ │ └── silver │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race12 │ │ │ │ ├── race13 │ │ │ │ ├── race14 │ │ │ │ ├── race15 │ │ │ │ ├── race16 │ │ │ │ ├── race17 │ │ │ │ ├── race18 │ │ │ │ ├── race19 │ │ │ │ ├── race2 │ │ │ │ ├── race20 │ │ │ │ ├── race21 │ │ │ │ ├── race22 │ │ │ │ ├── race23 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ ├── italyVineyardRaceClub │ │ │ ├── bronze │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race2 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ │ ├── gold │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race2 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ │ ├── hero │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race2 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ │ ├── progress │ │ │ └── silver │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race2 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ ├── utahHighwayRaceClub │ │ │ ├── bronze │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race2 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ └── race6 │ │ │ ├── gold │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race2 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ └── race6 │ │ │ ├── hero │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race2 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ └── race6 │ │ │ ├── progress │ │ │ └── silver │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race2 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ └── race6 │ │ ├── utahNightRaceClub │ │ │ ├── bronze │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race12 │ │ │ │ ├── race13 │ │ │ │ ├── race14 │ │ │ │ ├── race15 │ │ │ │ ├── race16 │ │ │ │ ├── race17 │ │ │ │ ├── race18 │ │ │ │ ├── race19 │ │ │ │ ├── race2 │ │ │ │ ├── race20 │ │ │ │ ├── race21 │ │ │ │ ├── race22 │ │ │ │ ├── race23 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ │ ├── gold │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race12 │ │ │ │ ├── race13 │ │ │ │ ├── race14 │ │ │ │ ├── race15 │ │ │ │ ├── race16 │ │ │ │ ├── race17 │ │ │ │ ├── race18 │ │ │ │ ├── race19 │ │ │ │ ├── race2 │ │ │ │ ├── race20 │ │ │ │ ├── race21 │ │ │ │ ├── race22 │ │ │ │ ├── race23 │ │ │ │ ├── race24 │ │ │ │ ├── race25 │ │ │ │ ├── race26 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ │ ├── hero │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race12 │ │ │ │ ├── race13 │ │ │ │ ├── race14 │ │ │ │ ├── race15 │ │ │ │ ├── race16 │ │ │ │ ├── race17 │ │ │ │ ├── race18 │ │ │ │ ├── race19 │ │ │ │ ├── race2 │ │ │ │ ├── race20 │ │ │ │ ├── race21 │ │ │ │ ├── race22 │ │ │ │ ├── race23 │ │ │ │ ├── race24 │ │ │ │ ├── race25 │ │ │ │ ├── race26 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ │ ├── progress │ │ │ └── silver │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race12 │ │ │ │ ├── race13 │ │ │ │ ├── race14 │ │ │ │ ├── race15 │ │ │ │ ├── race16 │ │ │ │ ├── race17 │ │ │ │ ├── race18 │ │ │ │ ├── race19 │ │ │ │ ├── race2 │ │ │ │ ├── race20 │ │ │ │ ├── race21 │ │ │ │ ├── race22 │ │ │ │ ├── race23 │ │ │ │ ├── race24 │ │ │ │ ├── race25 │ │ │ │ ├── race26 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ ├── utahOffroadRaceClub │ │ │ ├── bronze │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race12 │ │ │ │ ├── race13 │ │ │ │ ├── race2 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ │ ├── gold │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race12 │ │ │ │ ├── race13 │ │ │ │ ├── race2 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ │ ├── hero │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race12 │ │ │ │ ├── race13 │ │ │ │ ├── race2 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ │ ├── progress │ │ │ └── silver │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race12 │ │ │ │ ├── race13 │ │ │ │ ├── race2 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ ├── utahPureDragRaceClub │ │ │ ├── bronze │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race12 │ │ │ │ ├── race13 │ │ │ │ ├── race14 │ │ │ │ ├── race15 │ │ │ │ ├── race16 │ │ │ │ ├── race17 │ │ │ │ ├── race18 │ │ │ │ ├── race19 │ │ │ │ ├── race2 │ │ │ │ ├── race20 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ │ ├── gold │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race12 │ │ │ │ ├── race13 │ │ │ │ ├── race14 │ │ │ │ ├── race15 │ │ │ │ ├── race16 │ │ │ │ ├── race17 │ │ │ │ ├── race18 │ │ │ │ ├── race19 │ │ │ │ ├── race2 │ │ │ │ ├── race20 │ │ │ │ ├── race21 │ │ │ │ ├── race22 │ │ │ │ ├── race23 │ │ │ │ ├── race24 │ │ │ │ ├── race25 │ │ │ │ ├── race26 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ │ ├── hero │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race12 │ │ │ │ ├── race13 │ │ │ │ ├── race14 │ │ │ │ ├── race15 │ │ │ │ ├── race16 │ │ │ │ ├── race17 │ │ │ │ ├── race18 │ │ │ │ ├── race19 │ │ │ │ ├── race2 │ │ │ │ ├── race20 │ │ │ │ ├── race21 │ │ │ │ ├── race22 │ │ │ │ ├── race23 │ │ │ │ ├── race24 │ │ │ │ ├── race25 │ │ │ │ ├── race26 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ │ ├── progress │ │ │ └── silver │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race12 │ │ │ │ ├── race13 │ │ │ │ ├── race14 │ │ │ │ ├── race15 │ │ │ │ ├── race16 │ │ │ │ ├── race17 │ │ │ │ ├── race18 │ │ │ │ ├── race19 │ │ │ │ ├── race2 │ │ │ │ ├── race20 │ │ │ │ ├── race21 │ │ │ │ ├── race22 │ │ │ │ ├── race23 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ ├── westCoastDragARaceClub │ │ │ ├── bronze │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race12 │ │ │ │ ├── race13 │ │ │ │ ├── race14 │ │ │ │ ├── race15 │ │ │ │ ├── race16 │ │ │ │ ├── race17 │ │ │ │ ├── race18 │ │ │ │ ├── race19 │ │ │ │ ├── race2 │ │ │ │ ├── race20 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ │ ├── gold │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race12 │ │ │ │ ├── race13 │ │ │ │ ├── race14 │ │ │ │ ├── race15 │ │ │ │ ├── race16 │ │ │ │ ├── race17 │ │ │ │ ├── race18 │ │ │ │ ├── race19 │ │ │ │ ├── race2 │ │ │ │ ├── race20 │ │ │ │ ├── race21 │ │ │ │ ├── race22 │ │ │ │ ├── race23 │ │ │ │ ├── race24 │ │ │ │ ├── race25 │ │ │ │ ├── race26 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ │ ├── hero │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race12 │ │ │ │ ├── race13 │ │ │ │ ├── race14 │ │ │ │ ├── race15 │ │ │ │ ├── race16 │ │ │ │ ├── race17 │ │ │ │ ├── race18 │ │ │ │ ├── race19 │ │ │ │ ├── race2 │ │ │ │ ├── race20 │ │ │ │ ├── race21 │ │ │ │ ├── race22 │ │ │ │ ├── race23 │ │ │ │ ├── race24 │ │ │ │ ├── race25 │ │ │ │ ├── race26 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ │ ├── progress │ │ │ └── silver │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race12 │ │ │ │ ├── race13 │ │ │ │ ├── race14 │ │ │ │ ├── race15 │ │ │ │ ├── race16 │ │ │ │ ├── race17 │ │ │ │ ├── race18 │ │ │ │ ├── race19 │ │ │ │ ├── race2 │ │ │ │ ├── race20 │ │ │ │ ├── race21 │ │ │ │ ├── race22 │ │ │ │ ├── race23 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ ├── westCoastDragBRaceClub │ │ │ ├── bronze │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race12 │ │ │ │ ├── race13 │ │ │ │ ├── race14 │ │ │ │ ├── race15 │ │ │ │ ├── race16 │ │ │ │ ├── race17 │ │ │ │ ├── race18 │ │ │ │ ├── race19 │ │ │ │ ├── race2 │ │ │ │ ├── race20 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ │ ├── gold │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race12 │ │ │ │ ├── race13 │ │ │ │ ├── race14 │ │ │ │ ├── race15 │ │ │ │ ├── race16 │ │ │ │ ├── race17 │ │ │ │ ├── race18 │ │ │ │ ├── race19 │ │ │ │ ├── race2 │ │ │ │ ├── race20 │ │ │ │ ├── race21 │ │ │ │ ├── race22 │ │ │ │ ├── race23 │ │ │ │ ├── race24 │ │ │ │ ├── race25 │ │ │ │ ├── race26 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ │ ├── hero │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race12 │ │ │ │ ├── race13 │ │ │ │ ├── race14 │ │ │ │ ├── race15 │ │ │ │ ├── race16 │ │ │ │ ├── race17 │ │ │ │ ├── race18 │ │ │ │ ├── race19 │ │ │ │ ├── race2 │ │ │ │ ├── race20 │ │ │ │ ├── race21 │ │ │ │ ├── race22 │ │ │ │ ├── race23 │ │ │ │ ├── race24 │ │ │ │ ├── race25 │ │ │ │ ├── race26 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ │ ├── progress │ │ │ └── silver │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race12 │ │ │ │ ├── race13 │ │ │ │ ├── race14 │ │ │ │ ├── race15 │ │ │ │ ├── race16 │ │ │ │ ├── race17 │ │ │ │ ├── race18 │ │ │ │ ├── race19 │ │ │ │ ├── race2 │ │ │ │ ├── race20 │ │ │ │ ├── race21 │ │ │ │ ├── race22 │ │ │ │ ├── race23 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ ├── westCoastDragCRaceClub │ │ │ ├── bronze │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race12 │ │ │ │ ├── race13 │ │ │ │ ├── race14 │ │ │ │ ├── race15 │ │ │ │ ├── race16 │ │ │ │ ├── race17 │ │ │ │ ├── race18 │ │ │ │ ├── race19 │ │ │ │ ├── race2 │ │ │ │ ├── race20 │ │ │ │ ├── race21 │ │ │ │ ├── race22 │ │ │ │ ├── race23 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ │ ├── gold │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race12 │ │ │ │ ├── race13 │ │ │ │ ├── race14 │ │ │ │ ├── race15 │ │ │ │ ├── race16 │ │ │ │ ├── race17 │ │ │ │ ├── race18 │ │ │ │ ├── race19 │ │ │ │ ├── race2 │ │ │ │ ├── race20 │ │ │ │ ├── race21 │ │ │ │ ├── race22 │ │ │ │ ├── race23 │ │ │ │ ├── race24 │ │ │ │ ├── race25 │ │ │ │ ├── race26 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ │ ├── hero │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race12 │ │ │ │ ├── race13 │ │ │ │ ├── race14 │ │ │ │ ├── race15 │ │ │ │ ├── race16 │ │ │ │ ├── race17 │ │ │ │ ├── race18 │ │ │ │ ├── race19 │ │ │ │ ├── race2 │ │ │ │ ├── race20 │ │ │ │ ├── race21 │ │ │ │ ├── race22 │ │ │ │ ├── race23 │ │ │ │ ├── race24 │ │ │ │ ├── race25 │ │ │ │ ├── race26 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ │ ├── progress │ │ │ └── silver │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race12 │ │ │ │ ├── race13 │ │ │ │ ├── race14 │ │ │ │ ├── race15 │ │ │ │ ├── race16 │ │ │ │ ├── race17 │ │ │ │ ├── race18 │ │ │ │ ├── race19 │ │ │ │ ├── race2 │ │ │ │ ├── race20 │ │ │ │ ├── race21 │ │ │ │ ├── race22 │ │ │ │ ├── race23 │ │ │ │ ├── race24 │ │ │ │ ├── race25 │ │ │ │ ├── race26 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ ├── westCoastIslandRaceClub │ │ │ ├── bronze │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race2 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ │ ├── gold │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race2 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ │ ├── hero │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race2 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ │ ├── progress │ │ │ └── silver │ │ │ │ ├── race0 │ │ │ │ ├── race1 │ │ │ │ ├── race10 │ │ │ │ ├── race11 │ │ │ │ ├── race2 │ │ │ │ ├── race3 │ │ │ │ ├── race4 │ │ │ │ ├── race5 │ │ │ │ ├── race6 │ │ │ │ ├── race7 │ │ │ │ ├── race8 │ │ │ │ └── race9 │ │ └── westCoastServiceStationRaceClub │ │ │ ├── bronze │ │ │ ├── race0 │ │ │ ├── race1 │ │ │ ├── race10 │ │ │ ├── race11 │ │ │ ├── race2 │ │ │ ├── race3 │ │ │ ├── race4 │ │ │ ├── race5 │ │ │ ├── race6 │ │ │ ├── race7 │ │ │ ├── race8 │ │ │ └── race9 │ │ │ ├── gold │ │ │ ├── race0 │ │ │ ├── race1 │ │ │ ├── race10 │ │ │ ├── race11 │ │ │ ├── race2 │ │ │ ├── race3 │ │ │ ├── race4 │ │ │ ├── race5 │ │ │ ├── race6 │ │ │ ├── race7 │ │ │ ├── race8 │ │ │ └── race9 │ │ │ ├── hero │ │ │ ├── race0 │ │ │ ├── race1 │ │ │ ├── race10 │ │ │ ├── race11 │ │ │ ├── race2 │ │ │ ├── race3 │ │ │ ├── race4 │ │ │ ├── race5 │ │ │ ├── race6 │ │ │ ├── race7 │ │ │ ├── race8 │ │ │ └── race9 │ │ │ ├── progress │ │ │ └── silver │ │ │ ├── race0 │ │ │ ├── race1 │ │ │ ├── race10 │ │ │ ├── race11 │ │ │ ├── race2 │ │ │ ├── race3 │ │ │ ├── race4 │ │ │ ├── race5 │ │ │ ├── race6 │ │ │ ├── race7 │ │ │ ├── race8 │ │ │ └── race9 │ ├── sharedflags │ ├── shop │ │ ├── car │ │ │ ├── autobello_110AM │ │ │ ├── autobello_barnfind │ │ │ ├── barstow_232I6M │ │ │ ├── barstow_awful │ │ │ ├── barstow_barnfind │ │ │ ├── barstow_scrapyard │ │ │ ├── bastion_SE35A │ │ │ ├── bastion_battlehawkM │ │ │ ├── bluebuck_291V8 │ │ │ ├── bluebuck_barnfind │ │ │ ├── bluebuck_horrible │ │ │ ├── bolide_350USDM │ │ │ ├── bolide_barnfind │ │ │ ├── burnside_V8M │ │ │ ├── burnside_barnfind │ │ │ ├── bx_200bx_base_M │ │ │ ├── bx_200bx_typeLSM │ │ │ ├── bx_barnfind │ │ │ ├── bx_diana_base_M │ │ │ ├── bx_diana_typeLSM │ │ │ ├── bx_old_A │ │ │ ├── bx_old_B │ │ │ ├── bx_old_C │ │ │ ├── bx_old_D │ │ │ ├── bx_scrapyard_A │ │ │ ├── bx_scrapyard_B │ │ │ ├── bx_scrapyard_C │ │ │ ├── bx_scrapyard_D │ │ │ ├── covet_13SM │ │ │ ├── covet_barnfind │ │ │ ├── covet_pointless │ │ │ ├── covet_scrapyard │ │ │ ├── covet_typeLSM │ │ │ ├── etk800_844M_new │ │ │ ├── etk800_844M_used │ │ │ ├── etk800_854M_new │ │ │ ├── etk800_854M_used │ │ │ ├── etkc_kc4M │ │ │ ├── etkc_kc6M │ │ │ ├── etkc_kc8M │ │ │ ├── etki_2400M │ │ │ ├── etki_2400ti │ │ │ ├── etki_3000ixM │ │ │ ├── etki_barnfind │ │ │ ├── etki_scrapyard │ │ │ ├── fullsize_V8A │ │ │ ├── fullsize_barnfind │ │ │ ├── fullsize_miserable │ │ │ ├── fullsize_scrapyard │ │ │ ├── hopper_XT4A │ │ │ ├── hopper_scrapyard │ │ │ ├── lansdale_25baseA │ │ │ ├── lansdale_putrid │ │ │ ├── lansdale_scrapyard │ │ │ ├── legran_atrocious │ │ │ ├── legran_barnfind │ │ │ ├── legran_objectionable │ │ │ ├── legran_regulierM │ │ │ ├── list_barnfind_all │ │ │ ├── list_mixed_all │ │ │ ├── list_new_all │ │ │ ├── list_scrap_all │ │ │ ├── list_testbug │ │ │ ├── list_used_all │ │ │ ├── midsize_18dxM │ │ │ ├── midsize_barnfind │ │ │ ├── midsize_unpalatable │ │ │ ├── miramar_barnfind │ │ │ ├── miramar_baseM │ │ │ ├── moonhawk_barnfind │ │ │ ├── moonhawk_i6M │ │ │ ├── moonhawk_scrapyard │ │ │ ├── moonhawk_terrible │ │ │ ├── nine_barnfind │ │ │ ├── nine_used │ │ │ ├── pessima_18dxM │ │ │ ├── pessima_barnfind │ │ │ ├── pessima_pessimistic │ │ │ ├── pessima_scrapyard │ │ │ ├── pickup_D15V8AWD │ │ │ ├── pickup_D15fleetM │ │ │ ├── pickup_barnfind │ │ │ ├── pickup_d35_diesel │ │ │ ├── pickup_disappointment │ │ │ ├── pickup_scrapyard │ │ │ ├── pigeon_baseM │ │ │ ├── roamer_I6M │ │ │ ├── roamer_barnfind │ │ │ ├── roamer_horrendous │ │ │ ├── roamer_scrapyard │ │ │ ├── sbr_rwdbaseM │ │ │ ├── scintilla_GT │ │ │ ├── scintilla_spyderGTs │ │ │ ├── soliad_3300A │ │ │ ├── soliad_scrapyard │ │ │ ├── soliad_unpunctual │ │ │ ├── sunburst_16M │ │ │ ├── sunburst_16M_wagon │ │ │ ├── sunburst_20sportM │ │ │ ├── sunburst_20sportM_wagon │ │ │ ├── sunburst_scrapyard │ │ │ ├── sunburst_scrapyard_wagon │ │ │ ├── testbug │ │ │ ├── van_disastrous │ │ │ ├── van_h15vanster │ │ │ ├── vivace_100M_new │ │ │ ├── vivace_100M_used │ │ │ ├── vivace_scrapyard │ │ │ ├── wendover_barnfind │ │ │ └── wigeon_baseM │ │ ├── daydata │ │ │ ├── eastCoastNewCarShop │ │ │ ├── eastCoastScrapyard │ │ │ ├── eastCoastUsedCarShop │ │ │ ├── italyNewCarShopA │ │ │ ├── italyScrapyardA │ │ │ ├── italyUsedCarShopA │ │ │ ├── italyUsedCarShopB │ │ │ ├── utahNewCarShop │ │ │ ├── utahScrapyard │ │ │ ├── utahUsedCarShop │ │ │ ├── westCoastMixedCarShop │ │ │ ├── westCoastNewCarShop │ │ │ ├── westCoastScrapyard │ │ │ ├── westCoastUsedCarShopA │ │ │ └── westCoastUsedCarShopB │ │ ├── eastCoastNewCarShop │ │ ├── eastCoastScrapyard │ │ ├── eastCoastUsedCarShop │ │ ├── italyNewCarShopA │ │ ├── italyScrapyardA │ │ ├── italyUsedCarShopA │ │ ├── italyUsedCarShopB │ │ ├── utahNewCarShop │ │ ├── utahScrapyard │ │ ├── utahUsedCarShop │ │ ├── westCoastMixedCarShop │ │ ├── westCoastNewCarShop │ │ ├── westCoastScrapyard │ │ ├── westCoastUsedCarShopA │ │ └── westCoastUsedCarShopB │ ├── slotFavorites │ ├── spawngroups │ │ ├── backup │ │ │ ├── cops.json │ │ │ └── traffic.json │ │ ├── europe │ │ │ ├── cops.json │ │ │ ├── traffic.json │ │ │ └── trucks.json │ │ └── usa │ │ │ ├── cops.json │ │ │ ├── traffic.json │ │ │ └── trucks.json │ ├── trackEventResults │ ├── trackEvents │ │ ├── automation_drag_classA │ │ ├── automation_drag_classB │ │ ├── automation_drag_classS │ │ ├── automation_drag_classX │ │ ├── automation_trackA_NA_high │ │ ├── automation_trackA_NA_mid │ │ ├── automation_trackA_SC_high │ │ ├── automation_trackA_SC_mid │ │ ├── automation_trackA_Turbo_high │ │ ├── automation_trackA_Turbo_mid │ │ ├── automation_trackA_bruckell_high │ │ ├── automation_trackA_bruckell_mid │ │ ├── automation_trackA_classA │ │ ├── automation_trackA_classB │ │ ├── automation_trackA_classC │ │ ├── automation_trackA_classD │ │ ├── automation_trackA_classS │ │ ├── automation_trackA_etk_high │ │ ├── automation_trackA_etk_mid │ │ ├── automation_trackA_gavril_high │ │ ├── automation_trackA_gavril_mid │ │ ├── automation_trackA_hirochi_high │ │ ├── automation_trackA_hirochi_mid │ │ ├── automation_trackA_ibishu_high │ │ ├── automation_trackA_ibishu_mid │ │ ├── hirochi_derby_classB │ │ ├── hirochi_derby_classC │ │ ├── hirochi_derby_classD │ │ ├── hirochi_trackA_NA_high │ │ ├── hirochi_trackA_NA_mid │ │ ├── hirochi_trackA_SC_high │ │ ├── hirochi_trackA_SC_mid │ │ ├── hirochi_trackA_Turbo_high │ │ ├── hirochi_trackA_Turbo_mid │ │ ├── hirochi_trackA_classA │ │ ├── hirochi_trackA_classB │ │ ├── hirochi_trackA_classC │ │ ├── hirochi_trackA_classD │ │ ├── hirochi_trackA_classS │ │ ├── hirochi_trackB_AWD_high │ │ ├── hirochi_trackB_AWD_mid │ │ ├── hirochi_trackB_FWD_high │ │ ├── hirochi_trackB_FWD_mid │ │ ├── hirochi_trackB_RWD_high │ │ ├── hirochi_trackB_RWD_mid │ │ ├── hirochi_trackB_classA │ │ ├── hirochi_trackB_classB │ │ ├── hirochi_trackB_classC │ │ ├── hirochi_trackB_classD │ │ ├── hirochi_trackB_classS │ │ ├── hirochi_trackC_classA │ │ ├── hirochi_trackC_classB │ │ ├── hirochi_trackC_classC │ │ ├── hirochi_trackC_classD │ │ ├── hirochi_trackC_classS │ │ ├── johnson_ROH │ │ ├── motorsports_playground_classA │ │ ├── motorsports_playground_classS │ │ ├── motorsports_playground_classX │ │ ├── motorsports_playground_topspeed │ │ ├── nordschleife_trackA_classA │ │ ├── nordschleife_trackA_classB │ │ ├── nordschleife_trackA_classC │ │ ├── nordschleife_trackA_classD │ │ ├── nordschleife_trackA_classS │ │ ├── nordschleife_trackB_classA │ │ ├── nordschleife_trackB_classB │ │ ├── nordschleife_trackB_classC │ │ ├── nordschleife_trackB_classD │ │ ├── nordschleife_trackB_classS │ │ ├── wcusa_derbyA_classD │ │ ├── wcusa_derbyB_classD │ │ ├── wcusa_trackA_classA │ │ ├── wcusa_trackA_classB │ │ ├── wcusa_trackA_classC │ │ ├── wcusa_trackA_classD │ │ ├── wcusa_trackA_classS │ │ ├── wcusa_trackB_classA │ │ ├── wcusa_trackB_classB │ │ ├── wcusa_trackB_classC │ │ ├── wcusa_trackB_classD │ │ ├── wcusa_trackB_classS │ │ ├── wcusa_trackC_classA │ │ ├── wcusa_trackC_classB │ │ ├── wcusa_trackC_classC │ │ ├── wcusa_trackC_classD │ │ └── wcusa_trackC_classS │ └── usedPartDayData ├── gameplay │ └── missions │ │ ├── BLRTrackEventAutomationTestTrack │ │ ├── info.json │ │ ├── project.flow.json │ │ └── project.json │ │ ├── BLRTrackEventHirochiRaceway │ │ ├── info.json │ │ ├── project.flow.json │ │ └── project.json │ │ ├── BLRTrackEventJohnsonValley │ │ ├── info.json │ │ ├── project.flow.json │ │ └── project.json │ │ ├── BLRTrackEventWestCoast │ │ ├── info.json │ │ ├── project.flow.json │ │ └── project.json │ │ ├── BeamLegalRacingEastCoast │ │ ├── info.json │ │ ├── project.flow.json │ │ └── project.json │ │ ├── BeamLegalRacingItaly │ │ ├── info.json │ │ ├── project.flow.json │ │ └── project.json │ │ ├── BeamLegalRacingUtah │ │ ├── info.json │ │ ├── project.flow.json │ │ └── project.json │ │ └── BeamLegalRacingWestCoast │ │ ├── info.json │ │ ├── project.flow.json │ │ └── project.json ├── levels │ ├── automation_test_track │ │ ├── main.decals.json │ │ └── main │ │ │ ├── MissionGroup │ │ │ ├── AIDecalWaypointsGroup │ │ │ │ └── items.level.json │ │ │ ├── AIWaypoints │ │ │ │ └── items.level.json │ │ │ ├── Audio │ │ │ │ ├── Amb_2D │ │ │ │ │ └── items.level.json │ │ │ │ ├── Amb_3D │ │ │ │ │ └── items.level.json │ │ │ │ ├── Snapshots │ │ │ │ │ └── items.level.json │ │ │ │ ├── Wind │ │ │ │ │ └── items.level.json │ │ │ │ └── items.level.json │ │ │ ├── BeamLR │ │ │ │ ├── Triggers │ │ │ │ │ └── items.level.json │ │ │ │ ├── Waypoints │ │ │ │ │ └── items.level.json │ │ │ │ └── items.level.json │ │ │ ├── CameraBookmarks │ │ │ │ └── items.level.json │ │ │ ├── Level_object │ │ │ │ ├── cloud │ │ │ │ │ └── items.level.json │ │ │ │ ├── info │ │ │ │ │ └── items.level.json │ │ │ │ ├── items.level.json │ │ │ │ ├── sky │ │ │ │ │ └── items.level.json │ │ │ │ ├── terrain │ │ │ │ │ └── items.level.json │ │ │ │ ├── time │ │ │ │ │ └── items.level.json │ │ │ │ └── vegetation │ │ │ │ │ └── items.level.json │ │ │ ├── PlayerDropPoints │ │ │ │ └── items.level.json │ │ │ ├── Statics │ │ │ │ ├── bridge_guardrail │ │ │ │ │ └── items.level.json │ │ │ │ ├── electricals │ │ │ │ │ └── items.level.json │ │ │ │ ├── gasStations │ │ │ │ │ ├── items.level.json │ │ │ │ │ └── threeCube │ │ │ │ │ │ └── items.level.json │ │ │ │ ├── items.level.json │ │ │ │ └── road_closed │ │ │ │ │ └── items.level.json │ │ │ ├── decal_road │ │ │ │ ├── DecalRoadsMainTrack │ │ │ │ │ └── items.level.json │ │ │ │ ├── DecalRoadsProvingGround │ │ │ │ │ └── items.level.json │ │ │ │ ├── ai │ │ │ │ │ └── items.level.json │ │ │ │ ├── items.level.json │ │ │ │ ├── marking │ │ │ │ │ └── items.level.json │ │ │ │ └── road_edges │ │ │ │ │ └── items.level.json │ │ │ ├── items.level.json │ │ │ ├── new_rocks │ │ │ │ ├── items.level.json │ │ │ │ └── zones_and_portals │ │ │ │ │ └── items.level.json │ │ │ ├── point_lights │ │ │ │ └── items.level.json │ │ │ └── water_objects │ │ │ │ └── items.level.json │ │ │ └── items.level.json │ ├── east_coast_usa │ │ ├── main.decals.json │ │ └── main │ │ │ ├── MissionGroup │ │ │ ├── AIWaypointsGroup │ │ │ │ └── items.level.json │ │ │ ├── Audio │ │ │ │ ├── Amb_2D │ │ │ │ │ └── items.level.json │ │ │ │ ├── Amb_3D │ │ │ │ │ └── items.level.json │ │ │ │ ├── Snapshots │ │ │ │ │ └── items.level.json │ │ │ │ ├── Whooshes │ │ │ │ │ └── items.level.json │ │ │ │ ├── Wind │ │ │ │ │ └── items.level.json │ │ │ │ └── items.level.json │ │ │ ├── BeamLR │ │ │ │ ├── GPSWaypoints │ │ │ │ │ └── items.level.json │ │ │ │ ├── Markers │ │ │ │ │ └── items.level.json │ │ │ │ ├── Triggers │ │ │ │ │ └── items.level.json │ │ │ │ ├── Waypoints │ │ │ │ │ └── items.level.json │ │ │ │ └── items.level.json │ │ │ ├── CameraBookmarks │ │ │ │ └── items.level.json │ │ │ ├── Cliff_tool │ │ │ │ ├── items.level.json │ │ │ │ ├── prefab_unpacked │ │ │ │ │ └── items.level.json │ │ │ │ └── prefab_unpacked5 │ │ │ │ │ └── items.level.json │ │ │ ├── Dirt_road │ │ │ │ └── items.level.json │ │ │ ├── ElectricCables │ │ │ │ └── items.level.json │ │ │ ├── Fishing_Village │ │ │ │ ├── BigFences │ │ │ │ │ └── items.level.json │ │ │ │ ├── House_g │ │ │ │ │ └── items.level.json │ │ │ │ ├── House_h │ │ │ │ │ └── items.level.json │ │ │ │ ├── Pier │ │ │ │ │ └── items.level.json │ │ │ │ ├── Shack_b │ │ │ │ │ └── items.level.json │ │ │ │ ├── Shacks_a │ │ │ │ │ └── items.level.json │ │ │ │ ├── fence_a │ │ │ │ │ └── items.level.json │ │ │ │ ├── house_c │ │ │ │ │ └── items.level.json │ │ │ │ ├── house_d │ │ │ │ │ └── items.level.json │ │ │ │ ├── house_e │ │ │ │ │ └── items.level.json │ │ │ │ └── items.level.json │ │ │ ├── Gas_Station │ │ │ │ └── items.level.json │ │ │ ├── Inn │ │ │ │ └── items.level.json │ │ │ ├── Level_object │ │ │ │ ├── Light │ │ │ │ │ └── items.level.json │ │ │ │ ├── Sky │ │ │ │ │ └── items.level.json │ │ │ │ ├── cloud │ │ │ │ │ └── items.level.json │ │ │ │ ├── infos │ │ │ │ │ └── items.level.json │ │ │ │ ├── items.level.json │ │ │ │ ├── rain │ │ │ │ │ └── items.level.json │ │ │ │ ├── rivers │ │ │ │ │ └── items.level.json │ │ │ │ ├── sea │ │ │ │ │ └── items.level.json │ │ │ │ ├── terrain │ │ │ │ │ └── items.level.json │ │ │ │ ├── time │ │ │ │ │ └── items.level.json │ │ │ │ ├── vegetation │ │ │ │ │ └── items.level.json │ │ │ │ └── water │ │ │ │ │ └── items.level.json │ │ │ ├── PlayerDropPoints │ │ │ │ └── items.level.json │ │ │ ├── Sawmill │ │ │ │ └── items.level.json │ │ │ ├── Statics │ │ │ │ ├── Rocks │ │ │ │ │ └── items.level.json │ │ │ │ ├── items.level.json │ │ │ │ └── rocks_prefabs │ │ │ │ │ └── items.level.json │ │ │ ├── Town_marking │ │ │ │ └── items.level.json │ │ │ ├── Watchtower │ │ │ │ └── items.level.json │ │ │ ├── ZonesandOcclusion │ │ │ │ └── items.level.json │ │ │ ├── ai_roads │ │ │ │ ├── ai_fixes_temporary │ │ │ │ │ └── items.level.json │ │ │ │ └── items.level.json │ │ │ ├── buildings │ │ │ │ └── items.level.json │ │ │ ├── busstops │ │ │ │ └── items.level.json │ │ │ ├── clutter │ │ │ │ └── items.level.json │ │ │ ├── dealerships_and_garages │ │ │ │ └── items.level.json │ │ │ ├── firestation │ │ │ │ └── items.level.json │ │ │ ├── items.level.json │ │ │ ├── road_signs │ │ │ │ └── items.level.json │ │ │ ├── roads │ │ │ │ └── items.level.json │ │ │ ├── signs │ │ │ │ └── items.level.json │ │ │ └── traffic_lights │ │ │ │ └── items.level.json │ │ │ └── items.level.json │ ├── hirochi_raceway │ │ ├── art │ │ │ └── prefabs │ │ │ │ ├── blrtrackprefab1.prefab.json │ │ │ │ ├── blrtrackprefab10.prefab.json │ │ │ │ ├── blrtrackprefab11.prefab.json │ │ │ │ ├── blrtrackprefab12.prefab.json │ │ │ │ ├── blrtrackprefab13.prefab.json │ │ │ │ ├── blrtrackprefab14.prefab.json │ │ │ │ ├── blrtrackprefab15.prefab.json │ │ │ │ ├── blrtrackprefab16.prefab.json │ │ │ │ ├── blrtrackprefab2.prefab.json │ │ │ │ ├── blrtrackprefab3.prefab.json │ │ │ │ ├── blrtrackprefab4.prefab.json │ │ │ │ ├── blrtrackprefab5.prefab.json │ │ │ │ ├── blrtrackprefab6.prefab.json │ │ │ │ ├── blrtrackprefab7.prefab.json │ │ │ │ ├── blrtrackprefab8.prefab.json │ │ │ │ └── blrtrackprefab9.prefab.json │ │ ├── main.decals.json │ │ └── main │ │ │ ├── MissionGroup │ │ │ ├── AIDecalWaypointsGroup │ │ │ │ └── items.level.json │ │ │ ├── AIWaypointsGroup │ │ │ │ └── items.level.json │ │ │ ├── Audio │ │ │ │ ├── Amb_2D │ │ │ │ │ └── items.level.json │ │ │ │ ├── Amb_3D │ │ │ │ │ └── items.level.json │ │ │ │ ├── Snapshots │ │ │ │ │ └── items.level.json │ │ │ │ ├── Whooshes │ │ │ │ │ └── items.level.json │ │ │ │ └── items.level.json │ │ │ ├── BeamLR │ │ │ │ ├── Triggers │ │ │ │ │ ├── DerbyTrack │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── MainTrack │ │ │ │ │ │ └── items.level.json │ │ │ │ │ └── items.level.json │ │ │ │ ├── Waypoints │ │ │ │ │ └── items.level.json │ │ │ │ └── items.level.json │ │ │ ├── CameraBookmarks │ │ │ │ └── items.level.json │ │ │ ├── Clutters │ │ │ │ └── items.level.json │ │ │ ├── Decal_roads │ │ │ │ └── items.level.json │ │ │ ├── Petrol_station │ │ │ │ └── items.level.json │ │ │ ├── PlayerDropPoints │ │ │ │ └── items.level.json │ │ │ ├── Rocks │ │ │ │ ├── items.level.json │ │ │ │ └── rockclump1 │ │ │ │ │ ├── items.level.json │ │ │ │ │ └── rocks_trail │ │ │ │ │ └── items.level.json │ │ │ ├── Rocktrail_prefabs │ │ │ │ └── items.level.json │ │ │ ├── Water │ │ │ │ └── items.level.json │ │ │ ├── derby_waypoints │ │ │ │ └── items.level.json │ │ │ ├── drag_strip │ │ │ │ ├── ai_roads │ │ │ │ │ └── items.level.json │ │ │ │ ├── drag_strip_decalroads │ │ │ │ │ └── items.level.json │ │ │ │ ├── drag_strip_objects │ │ │ │ │ └── items.level.json │ │ │ │ └── items.level.json │ │ │ ├── items.level.json │ │ │ ├── meshroads │ │ │ │ └── items.level.json │ │ │ ├── night_light │ │ │ │ └── items.level.json │ │ │ ├── sky_and_sun │ │ │ │ └── items.level.json │ │ │ └── vegetation │ │ │ │ └── items.level.json │ │ │ └── items.level.json │ ├── italy │ │ ├── info.json │ │ ├── main.decals.json │ │ ├── main │ │ │ ├── MissionGroup │ │ │ │ ├── Audio │ │ │ │ │ ├── Amb_2D │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── Amb_3D │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── Snapshots │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── Whooshes │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── Wind │ │ │ │ │ │ └── items.level.json │ │ │ │ │ └── items.level.json │ │ │ │ ├── BeamLR │ │ │ │ │ ├── BLRRoads │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── GPSWaypoints │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── Markers │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── RaceTriggers │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── RaceWaypoints │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── Triggers │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── Waypoints │ │ │ │ │ │ └── items.level.json │ │ │ │ │ └── items.level.json │ │ │ │ ├── CameraBookmarks │ │ │ │ │ ├── Good │ │ │ │ │ │ └── items.level.json │ │ │ │ │ └── items.level.json │ │ │ │ ├── Dealerships │ │ │ │ │ └── items.level.json │ │ │ │ ├── Level_objects │ │ │ │ │ ├── items.level.json │ │ │ │ │ ├── vegetation │ │ │ │ │ │ └── items.level.json │ │ │ │ │ └── water │ │ │ │ │ │ └── items.level.json │ │ │ │ ├── ai_paths │ │ │ │ │ ├── half_1 │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── half_2 │ │ │ │ │ │ └── items.level.json │ │ │ │ │ └── items.level.json │ │ │ │ ├── busstops │ │ │ │ │ └── items.level.json │ │ │ │ ├── decalroads │ │ │ │ │ ├── asphalt │ │ │ │ │ │ ├── items.level.json │ │ │ │ │ │ ├── road_details │ │ │ │ │ │ │ └── items.level.json │ │ │ │ │ │ └── road_edges │ │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── dirt │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── items.level.json │ │ │ │ │ └── temporary │ │ │ │ │ │ └── items.level.json │ │ │ │ ├── driftSpots │ │ │ │ │ └── items.level.json │ │ │ │ ├── items.level.json │ │ │ │ ├── mountain_village │ │ │ │ │ └── items.level.json │ │ │ │ ├── particles │ │ │ │ │ ├── items.level.json │ │ │ │ │ └── waterfall_spashes │ │ │ │ │ │ └── items.level.json │ │ │ │ ├── petrol_station │ │ │ │ │ └── items.level.json │ │ │ │ ├── police_stations │ │ │ │ │ └── items.level.json │ │ │ │ ├── port │ │ │ │ │ └── items.level.json │ │ │ │ ├── powerlines_city_main │ │ │ │ │ └── items.level.json │ │ │ │ ├── powerlines_mountain_village │ │ │ │ │ └── items.level.json │ │ │ │ ├── radio_mast │ │ │ │ │ └── items.level.json │ │ │ │ ├── roads │ │ │ │ │ ├── airport_asphalt │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── airport_break_lines │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── airport_markings │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── airport_parking_1 │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── airport_parking_2 │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── airport_wear_overlays │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── items.level.json │ │ │ │ │ └── runway_horizontal_lines │ │ │ │ │ │ └── items.level.json │ │ │ │ ├── spawnpoints │ │ │ │ │ └── items.level.json │ │ │ │ └── static_stuff │ │ │ │ │ ├── Airport_Clutters │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── Signs │ │ │ │ │ ├── direction_signs │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── highway_signs │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── items.level.json │ │ │ │ │ ├── signs_quads_1 │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── signs_quads_2 │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── signs_quads_3 │ │ │ │ │ │ └── items.level.json │ │ │ │ │ └── signs_quads_4 │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── Small_Village │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── backdrops │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── billboards │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── boats │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── castle_detaill │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── clutter │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── construction_1 │ │ │ │ │ ├── items.level.json │ │ │ │ │ └── prefab_unpacked │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── construction_2 │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── firestation │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── general │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── hospital │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── items.level.json │ │ │ │ │ ├── lights_boxes_traffic_lights │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── town_bases │ │ │ │ │ └── items.level.json │ │ │ │ │ └── windows_standalone │ │ │ │ │ └── items.level.json │ │ │ └── items.level.json │ │ └── spawn_beamlr_preview.jpg │ ├── johnson_valley │ │ ├── main.decals.json │ │ └── main │ │ │ ├── MissionGroup │ │ │ ├── Audio │ │ │ │ ├── Amb_2D │ │ │ │ │ └── items.level.json │ │ │ │ ├── Amb_3D │ │ │ │ │ └── items.level.json │ │ │ │ ├── Snapshots │ │ │ │ │ └── items.level.json │ │ │ │ └── items.level.json │ │ │ ├── BeamLR │ │ │ │ ├── Triggers │ │ │ │ │ └── items.level.json │ │ │ │ ├── Waypoints │ │ │ │ │ └── items.level.json │ │ │ │ └── items.level.json │ │ │ ├── CameraBookmarks │ │ │ │ └── items.level.json │ │ │ ├── PlayerDropPoints │ │ │ │ └── items.level.json │ │ │ ├── building │ │ │ │ ├── Gas_station │ │ │ │ │ ├── items.level.json │ │ │ │ │ └── pumps │ │ │ │ │ │ └── items.level.json │ │ │ │ ├── items.level.json │ │ │ │ └── settlement │ │ │ │ │ └── items.level.json │ │ │ ├── decal_road │ │ │ │ ├── ai │ │ │ │ │ ├── ai_asphalt_roads │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── ai_dirt_roads │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── ai_trails_easy │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── ai_trails_hard │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── ai_trails_medium │ │ │ │ │ │ └── items.level.json │ │ │ │ │ └── items.level.json │ │ │ │ ├── antenna_decalroads │ │ │ │ │ └── items.level.json │ │ │ │ ├── dirtroads │ │ │ │ │ └── items.level.json │ │ │ │ ├── event_city_decal │ │ │ │ │ └── items.level.json │ │ │ │ ├── event_city_track_decal │ │ │ │ │ └── items.level.json │ │ │ │ ├── items.level.json │ │ │ │ ├── map_edges │ │ │ │ │ ├── items.level.json │ │ │ │ │ ├── roads │ │ │ │ │ │ └── items.level.json │ │ │ │ │ └── west_gate_decals │ │ │ │ │ │ └── items.level.json │ │ │ │ └── remote_pits_decalroads │ │ │ │ │ └── items.level.json │ │ │ ├── electric_lines │ │ │ │ └── items.level.json │ │ │ ├── event_city │ │ │ │ ├── RV_trailers │ │ │ │ │ └── items.level.json │ │ │ │ ├── event_city_fences │ │ │ │ │ └── items.level.json │ │ │ │ ├── event_city_garage │ │ │ │ │ └── items.level.json │ │ │ │ ├── event_city_props │ │ │ │ │ └── items.level.json │ │ │ │ ├── event_city_track_props │ │ │ │ │ ├── items.level.json │ │ │ │ │ ├── plastic_barrier │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── road_meshes │ │ │ │ │ │ └── items.level.json │ │ │ │ │ └── trellis_startline_structure │ │ │ │ │ │ ├── items.level.json │ │ │ │ │ │ └── trellis_main │ │ │ │ │ │ └── items.level.json │ │ │ │ ├── items.level.json │ │ │ │ ├── tent_gazebo │ │ │ │ │ └── items.level.json │ │ │ │ └── truck_terrace │ │ │ │ │ └── items.level.json │ │ │ ├── items.level.json │ │ │ ├── jv_crawling_trails_external │ │ │ │ ├── items.level.json │ │ │ │ ├── trail_001 │ │ │ │ │ └── items.level.json │ │ │ │ ├── trail_002 │ │ │ │ │ └── items.level.json │ │ │ │ ├── trail_003 │ │ │ │ │ └── items.level.json │ │ │ │ ├── trail_004 │ │ │ │ │ └── items.level.json │ │ │ │ ├── trail_006 │ │ │ │ │ └── items.level.json │ │ │ │ ├── trail_008 │ │ │ │ │ └── items.level.json │ │ │ │ ├── trail_010 │ │ │ │ │ └── items.level.json │ │ │ │ ├── trail_011 │ │ │ │ │ └── items.level.json │ │ │ │ ├── trail_014 │ │ │ │ │ └── items.level.json │ │ │ │ ├── trail_019 │ │ │ │ │ └── items.level.json │ │ │ │ ├── trail_022 │ │ │ │ │ └── items.level.json │ │ │ │ ├── trail_026_external │ │ │ │ │ └── items.level.json │ │ │ │ ├── trail_030 │ │ │ │ │ └── items.level.json │ │ │ │ └── trail_31 │ │ │ │ │ └── items.level.json │ │ │ ├── jv_crawling_trails_internal │ │ │ │ ├── items.level.json │ │ │ │ ├── trail_005 │ │ │ │ │ ├── items.level.json │ │ │ │ │ ├── trail_005_decalroads │ │ │ │ │ │ └── items.level.json │ │ │ │ │ └── trail_005_rocks │ │ │ │ │ │ └── items.level.json │ │ │ │ ├── trail_007 │ │ │ │ │ ├── items.level.json │ │ │ │ │ ├── trail_007_decalroads │ │ │ │ │ │ └── items.level.json │ │ │ │ │ └── trail_007_rocks │ │ │ │ │ │ └── items.level.json │ │ │ │ ├── trail_008_internal │ │ │ │ │ ├── items.level.json │ │ │ │ │ ├── trail_008_internal_decalroads │ │ │ │ │ │ └── items.level.json │ │ │ │ │ └── trail_008_internal_rocks │ │ │ │ │ │ └── items.level.json │ │ │ │ ├── trail_009 │ │ │ │ │ ├── items.level.json │ │ │ │ │ ├── trail_009_decalroads │ │ │ │ │ │ └── items.level.json │ │ │ │ │ └── trail_009_rocks │ │ │ │ │ │ └── items.level.json │ │ │ │ ├── trail_012 │ │ │ │ │ ├── items.level.json │ │ │ │ │ ├── trail_012_decalroads │ │ │ │ │ │ └── items.level.json │ │ │ │ │ └── trail_012_rocks │ │ │ │ │ │ └── items.level.json │ │ │ │ ├── trail_013 │ │ │ │ │ ├── items.level.json │ │ │ │ │ ├── trail_013_decalroads │ │ │ │ │ │ └── items.level.json │ │ │ │ │ └── trail_013_rocks │ │ │ │ │ │ └── items.level.json │ │ │ │ ├── trail_015 │ │ │ │ │ ├── items.level.json │ │ │ │ │ ├── trail_015_decalroads │ │ │ │ │ │ └── items.level.json │ │ │ │ │ └── trail_015_rocks │ │ │ │ │ │ └── items.level.json │ │ │ │ ├── trail_016 │ │ │ │ │ ├── items.level.json │ │ │ │ │ ├── trail_016_decalroads │ │ │ │ │ │ └── items.level.json │ │ │ │ │ └── trail_016_rocks │ │ │ │ │ │ └── items.level.json │ │ │ │ ├── trail_017 │ │ │ │ │ ├── items.level.json │ │ │ │ │ ├── trail_017_decalroads │ │ │ │ │ │ └── items.level.json │ │ │ │ │ └── trail_017_rocks │ │ │ │ │ │ └── items.level.json │ │ │ │ ├── trail_018 │ │ │ │ │ ├── items.level.json │ │ │ │ │ ├── trail_018_decalroads │ │ │ │ │ │ └── items.level.json │ │ │ │ │ └── trail_018_rocks │ │ │ │ │ │ └── items.level.json │ │ │ │ ├── trail_020 │ │ │ │ │ ├── items.level.json │ │ │ │ │ ├── trail_020_decalroads │ │ │ │ │ │ └── items.level.json │ │ │ │ │ └── trail_020_rocks │ │ │ │ │ │ └── items.level.json │ │ │ │ ├── trail_021 │ │ │ │ │ ├── items.level.json │ │ │ │ │ ├── trail_021_decalroads │ │ │ │ │ │ └── items.level.json │ │ │ │ │ └── trail_021_rocks │ │ │ │ │ │ └── items.level.json │ │ │ │ ├── trail_023 │ │ │ │ │ ├── items.level.json │ │ │ │ │ ├── trail_023_decalroads │ │ │ │ │ │ └── items.level.json │ │ │ │ │ └── trail_023_rocks │ │ │ │ │ │ └── items.level.json │ │ │ │ ├── trail_024 │ │ │ │ │ ├── items.level.json │ │ │ │ │ ├── trail_024_decalroads │ │ │ │ │ │ └── items.level.json │ │ │ │ │ └── trail_024_rocks │ │ │ │ │ │ └── items.level.json │ │ │ │ ├── trail_025 │ │ │ │ │ ├── items.level.json │ │ │ │ │ ├── trail_025_decalroads │ │ │ │ │ │ └── items.level.json │ │ │ │ │ └── trail_025_rocks │ │ │ │ │ │ └── items.level.json │ │ │ │ ├── trail_027 │ │ │ │ │ ├── items.level.json │ │ │ │ │ ├── trail_027_decalroads │ │ │ │ │ │ └── items.level.json │ │ │ │ │ └── trail_027_rocks │ │ │ │ │ │ └── items.level.json │ │ │ │ ├── trail_028 │ │ │ │ │ ├── items.level.json │ │ │ │ │ ├── trail_028_decalroads │ │ │ │ │ │ └── items.level.json │ │ │ │ │ └── trail_028_rocks │ │ │ │ │ │ └── items.level.json │ │ │ │ ├── trail_029 │ │ │ │ │ ├── items.level.json │ │ │ │ │ ├── trail_029_decalroads │ │ │ │ │ │ └── items.level.json │ │ │ │ │ └── trail_029_rocks │ │ │ │ │ │ └── items.level.json │ │ │ │ ├── trail_032 │ │ │ │ │ ├── items.level.json │ │ │ │ │ ├── trail_032_decalroads │ │ │ │ │ │ └── items.level.json │ │ │ │ │ └── trail_032_rocks │ │ │ │ │ │ └── items.level.json │ │ │ │ ├── trail_033 │ │ │ │ │ ├── items.level.json │ │ │ │ │ ├── trail_033_decalroads │ │ │ │ │ │ └── items.level.json │ │ │ │ │ └── trail_033_rocks │ │ │ │ │ │ └── items.level.json │ │ │ │ ├── trail_035 │ │ │ │ │ ├── items.level.json │ │ │ │ │ ├── trail_035_decalroads │ │ │ │ │ │ └── items.level.json │ │ │ │ │ └── trail_035_rocks │ │ │ │ │ │ └── items.level.json │ │ │ │ └── trail_036 │ │ │ │ │ ├── items.level.json │ │ │ │ │ ├── trail_036_decalroads │ │ │ │ │ └── items.level.json │ │ │ │ │ └── trail_036_rocks │ │ │ │ │ └── items.level.json │ │ │ ├── level_object │ │ │ │ ├── Water │ │ │ │ │ └── items.level.json │ │ │ │ ├── items.level.json │ │ │ │ ├── sky │ │ │ │ │ └── items.level.json │ │ │ │ ├── terrain │ │ │ │ │ └── items.level.json │ │ │ │ ├── vegetation │ │ │ │ │ ├── Ground_cover_rocks │ │ │ │ │ │ └── items.level.json │ │ │ │ │ └── items.level.json │ │ │ │ └── volume │ │ │ │ │ └── items.level.json │ │ │ ├── night_light │ │ │ │ └── items.level.json │ │ │ ├── prop │ │ │ │ ├── items.level.json │ │ │ │ └── map_boundery │ │ │ │ │ └── items.level.json │ │ │ ├── rocks │ │ │ │ ├── antenna_rocks │ │ │ │ │ └── items.level.json │ │ │ │ ├── huge_rocks │ │ │ │ │ └── items.level.json │ │ │ │ ├── items.level.json │ │ │ │ ├── rocks_map_edges │ │ │ │ │ └── items.level.json │ │ │ │ └── trail_marking_rocks │ │ │ │ │ └── items.level.json │ │ │ └── set_dress_trails │ │ │ │ ├── items.level.json │ │ │ │ ├── set_dress_trails_decalroads │ │ │ │ └── items.level.json │ │ │ │ └── set_dress_trails_rocks │ │ │ │ └── items.level.json │ │ │ └── items.level.json │ ├── utah │ │ ├── main.decals.json │ │ └── main │ │ │ ├── MissionGroup │ │ │ ├── AIDecalWaypointsGroup │ │ │ │ └── items.level.json │ │ │ ├── AIWaypointsGroup │ │ │ │ └── items.level.json │ │ │ ├── Audio │ │ │ │ ├── Amb_2D │ │ │ │ │ └── items.level.json │ │ │ │ ├── Amb_3D │ │ │ │ │ └── items.level.json │ │ │ │ ├── Snapshots │ │ │ │ │ ├── items.level.json │ │ │ │ │ ├── level_buildings │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── mine_centre │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── mine_east │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── mine_north │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── mine_northwest │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── mine_west │ │ │ │ │ │ └── items.level.json │ │ │ │ │ └── tunnel │ │ │ │ │ │ └── items.level.json │ │ │ │ ├── Wind │ │ │ │ │ └── items.level.json │ │ │ │ └── items.level.json │ │ │ ├── BeamLR │ │ │ │ ├── BLRWaypoints │ │ │ │ │ └── items.level.json │ │ │ │ ├── GPSWaypoints │ │ │ │ │ └── items.level.json │ │ │ │ ├── Markers │ │ │ │ │ └── items.level.json │ │ │ │ ├── Triggers │ │ │ │ │ └── items.level.json │ │ │ │ └── items.level.json │ │ │ ├── CameraBookmarks │ │ │ │ └── items.level.json │ │ │ ├── Clutters │ │ │ │ └── items.level.json │ │ │ ├── Layby │ │ │ │ └── items.level.json │ │ │ ├── Level_objects │ │ │ │ ├── Sky │ │ │ │ │ └── items.level.json │ │ │ │ ├── cloud │ │ │ │ │ └── items.level.json │ │ │ │ ├── items.level.json │ │ │ │ ├── level_info │ │ │ │ │ └── items.level.json │ │ │ │ ├── terrain │ │ │ │ │ └── items.level.json │ │ │ │ ├── time │ │ │ │ │ └── items.level.json │ │ │ │ ├── vegetation │ │ │ │ │ └── items.level.json │ │ │ │ └── water │ │ │ │ │ └── items.level.json │ │ │ ├── OldMineV2 │ │ │ │ └── items.level.json │ │ │ ├── PlayerDropPoints │ │ │ │ └── items.level.json │ │ │ ├── Portals │ │ │ │ └── items.level.json │ │ │ ├── Statics │ │ │ │ └── items.level.json │ │ │ ├── ai_roads │ │ │ │ ├── asphalt_roads │ │ │ │ │ └── items.level.json │ │ │ │ ├── crawling │ │ │ │ │ └── items.level.json │ │ │ │ ├── dirt_roads │ │ │ │ │ └── items.level.json │ │ │ │ ├── items.level.json │ │ │ │ └── tunnel_ai_roads │ │ │ │ │ └── items.level.json │ │ │ ├── airport │ │ │ │ ├── hangar_objects │ │ │ │ │ └── items.level.json │ │ │ │ └── items.level.json │ │ │ ├── auto_repair_zone │ │ │ │ ├── auto_repair_lights │ │ │ │ │ └── items.level.json │ │ │ │ ├── items.level.json │ │ │ │ └── pumps_canyon_auto │ │ │ │ │ └── items.level.json │ │ │ ├── buildings │ │ │ │ ├── Signs │ │ │ │ │ └── items.level.json │ │ │ │ └── items.level.json │ │ │ ├── busstops │ │ │ │ └── items.level.json │ │ │ ├── campsite │ │ │ │ ├── camp_barrier │ │ │ │ │ └── items.level.json │ │ │ │ ├── hookup_closed │ │ │ │ │ └── items.level.json │ │ │ │ ├── hookup_open │ │ │ │ │ └── items.level.json │ │ │ │ └── items.level.json │ │ │ ├── cliff_crawling_tracks │ │ │ │ └── items.level.json │ │ │ ├── construction_site │ │ │ │ └── items.level.json │ │ │ ├── dealer_a │ │ │ │ └── items.level.json │ │ │ ├── dealer_b │ │ │ │ ├── dealer_b_lights │ │ │ │ │ └── items.level.json │ │ │ │ └── items.level.json │ │ │ ├── dealer_c │ │ │ │ ├── items.level.json │ │ │ │ └── pumps_canyon_fuel │ │ │ │ │ └── items.level.json │ │ │ ├── driftZones │ │ │ │ └── items.level.json │ │ │ ├── gameplay │ │ │ │ ├── Parking │ │ │ │ │ ├── Warehouse │ │ │ │ │ │ └── items.level.json │ │ │ │ │ └── items.level.json │ │ │ │ └── items.level.json │ │ │ ├── items.level.json │ │ │ ├── mines │ │ │ │ ├── center │ │ │ │ │ └── items.level.json │ │ │ │ ├── items.level.json │ │ │ │ ├── mines_ai_paths │ │ │ │ │ └── items.level.json │ │ │ │ ├── north_mine │ │ │ │ │ └── items.level.json │ │ │ │ ├── north_west │ │ │ │ │ └── items.level.json │ │ │ │ ├── otherroads │ │ │ │ │ └── items.level.json │ │ │ │ ├── tunnels │ │ │ │ │ └── items.level.json │ │ │ │ └── under_tourism │ │ │ │ │ ├── items.level.json │ │ │ │ │ ├── objects │ │ │ │ │ └── items.level.json │ │ │ │ │ └── zoning │ │ │ │ │ └── items.level.json │ │ │ ├── night_light │ │ │ │ └── items.level.json │ │ │ ├── ranger_station │ │ │ │ └── items.level.json │ │ │ ├── reduction_mill │ │ │ │ └── items.level.json │ │ │ ├── road_signs │ │ │ │ └── items.level.json │ │ │ ├── roads │ │ │ │ └── items.level.json │ │ │ ├── rockcrawlingtrails │ │ │ │ └── items.level.json │ │ │ ├── tourist_center │ │ │ │ ├── items.level.json │ │ │ │ └── tourist_center_lights │ │ │ │ │ └── items.level.json │ │ │ └── waypoints │ │ │ │ └── items.level.json │ │ │ └── items.level.json │ └── west_coast_usa │ │ ├── art │ │ └── prefabs │ │ │ ├── blr_track_prefab_1.prefab.json │ │ │ ├── blr_track_prefab_10.prefab.json │ │ │ ├── blr_track_prefab_11.prefab.json │ │ │ ├── blr_track_prefab_2.prefab.json │ │ │ ├── blr_track_prefab_3.prefab.json │ │ │ ├── blr_track_prefab_4.prefab.json │ │ │ ├── blr_track_prefab_5.prefab.json │ │ │ ├── blr_track_prefab_6.prefab.json │ │ │ ├── blr_track_prefab_7.prefab.json │ │ │ ├── blr_track_prefab_8.prefab.json │ │ │ └── blr_track_prefab_9.prefab.json │ │ ├── info.json │ │ ├── main.decals.json │ │ ├── main │ │ ├── MissionGroup │ │ │ ├── AIWaypointsGroup │ │ │ │ └── items.level.json │ │ │ ├── Audio │ │ │ │ ├── Amb_2D │ │ │ │ │ └── items.level.json │ │ │ │ ├── Amb_3D │ │ │ │ │ └── items.level.json │ │ │ │ ├── Snapshots │ │ │ │ │ └── items.level.json │ │ │ │ ├── Wind │ │ │ │ │ └── items.level.json │ │ │ │ └── items.level.json │ │ │ ├── BeamLR │ │ │ │ ├── AIRoads │ │ │ │ │ └── items.level.json │ │ │ │ ├── BLRGPS │ │ │ │ │ └── items.level.json │ │ │ │ ├── Markers │ │ │ │ │ └── items.level.json │ │ │ │ ├── MissionTriggers │ │ │ │ │ └── items.level.json │ │ │ │ ├── MissionWaypoints │ │ │ │ │ └── items.level.json │ │ │ │ ├── RaceTriggers │ │ │ │ │ └── items.level.json │ │ │ │ ├── RaceWaypoints │ │ │ │ │ └── items.level.json │ │ │ │ ├── Triggers │ │ │ │ │ └── items.level.json │ │ │ │ ├── items.level.json │ │ │ │ └── track │ │ │ │ │ ├── PenaltyTriggers │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── TrackPrefabs │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── TrackTriggers │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── TrackWaypoints │ │ │ │ │ └── items.level.json │ │ │ │ │ └── items.level.json │ │ │ ├── Buildings │ │ │ │ ├── fastAutomotive │ │ │ │ │ └── items.level.json │ │ │ │ ├── items.level.json │ │ │ │ └── refinery │ │ │ │ │ ├── items.level.json │ │ │ │ │ ├── particles │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── road │ │ │ │ │ ├── items.level.json │ │ │ │ │ └── parking_additions │ │ │ │ │ │ └── items.level.json │ │ │ │ │ └── static │ │ │ │ │ └── items.level.json │ │ │ ├── CameraBookmarks │ │ │ │ └── items.level.json │ │ │ ├── DecalRoads │ │ │ │ ├── items.level.json │ │ │ │ ├── new_toll_booth │ │ │ │ │ └── items.level.json │ │ │ │ ├── raceTrackParkingLotDetails │ │ │ │ │ └── items.level.json │ │ │ │ └── roadCracks │ │ │ │ │ └── items.level.json │ │ │ ├── DragRace │ │ │ │ └── items.level.json │ │ │ ├── LevelObjects │ │ │ │ ├── items.level.json │ │ │ │ └── sunSkyGroup │ │ │ │ │ └── items.level.json │ │ │ ├── PlayerDropPoints │ │ │ │ └── items.level.json │ │ │ ├── PoliceStation │ │ │ │ └── items.level.json │ │ │ ├── StaticObjects │ │ │ │ ├── cliffSideRocks │ │ │ │ │ └── items.level.json │ │ │ │ ├── constructionSite_001 │ │ │ │ │ └── items.level.json │ │ │ │ ├── garbage_west_coast_unpacked │ │ │ │ │ └── items.level.json │ │ │ │ ├── items.level.json │ │ │ │ └── portViewRails │ │ │ │ │ └── items.level.json │ │ │ ├── Track_meshes │ │ │ │ └── items.level.json │ │ │ ├── Water │ │ │ │ └── items.level.json │ │ │ ├── beach │ │ │ │ ├── beach_decalRoads │ │ │ │ │ ├── beach_AiRoads │ │ │ │ │ │ └── items.level.json │ │ │ │ │ └── items.level.json │ │ │ │ ├── beach_props │ │ │ │ │ └── items.level.json │ │ │ │ ├── beach_testRocks │ │ │ │ │ └── items.level.json │ │ │ │ ├── items.level.json │ │ │ │ └── primaryBeachRocks │ │ │ │ │ └── items.level.json │ │ │ ├── busstops │ │ │ │ └── items.level.json │ │ │ ├── career_garage │ │ │ │ ├── career_garage_decalroad │ │ │ │ │ └── items.level.json │ │ │ │ ├── career_garage_exterior │ │ │ │ │ ├── career_garage_exterior_decalroads │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── career_garage_exterior_props │ │ │ │ │ │ └── items.level.json │ │ │ │ │ └── items.level.json │ │ │ │ ├── career_garage_parkingLines │ │ │ │ │ └── items.level.json │ │ │ │ ├── career_garage_props │ │ │ │ │ └── items.level.json │ │ │ │ ├── garageLights │ │ │ │ │ ├── garageBenchLights │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── garageExteriorLights │ │ │ │ │ │ ├── garageExteriorLightsPropsOff │ │ │ │ │ │ │ └── items.level.json │ │ │ │ │ │ ├── garageExteriorLightsPropsOn │ │ │ │ │ │ │ └── items.level.json │ │ │ │ │ │ ├── garageExteriorLightsSources │ │ │ │ │ │ │ └── items.level.json │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── garageMainLights │ │ │ │ │ │ ├── garageMainLightPropsOff │ │ │ │ │ │ │ └── items.level.json │ │ │ │ │ │ ├── garageMainLightPropsOn │ │ │ │ │ │ │ └── items.level.json │ │ │ │ │ │ ├── garageMainLightSources │ │ │ │ │ │ │ └── items.level.json │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── garageOfficeLights │ │ │ │ │ │ └── items.level.json │ │ │ │ │ └── items.level.json │ │ │ │ ├── garage_interactions │ │ │ │ │ └── items.level.json │ │ │ │ └── items.level.json │ │ │ ├── concrete_batch_factory │ │ │ │ ├── CBF_assets │ │ │ │ │ ├── CBF_concreteStore │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── CBF_crusher │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── CBF_decalroads │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── CBF_entrance_assets │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── CBF_funnel │ │ │ │ │ │ ├── funnel_material_walls │ │ │ │ │ │ │ └── items.level.json │ │ │ │ │ │ ├── funnel_precast_wall │ │ │ │ │ │ │ └── items.level.json │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── CBF_mixer_batching_plant │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── CBF_secondary_entrance │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── CBF_truckWashBays │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── items.level.json │ │ │ │ │ └── roadwayGuardRails │ │ │ │ │ │ └── items.level.json │ │ │ │ ├── CBF_entranceFence │ │ │ │ │ ├── entranceFence_canalSide │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── entranceFence_roadSide │ │ │ │ │ │ └── items.level.json │ │ │ │ │ └── items.level.json │ │ │ │ ├── CBF_noiseblockers │ │ │ │ │ ├── CBF_precast_planter │ │ │ │ │ │ └── items.level.json │ │ │ │ │ └── items.level.json │ │ │ │ ├── CBF_precast_walls │ │ │ │ │ └── items.level.json │ │ │ │ └── items.level.json │ │ │ ├── dealerships │ │ │ │ ├── items.level.json │ │ │ │ ├── jefferson_dealership │ │ │ │ │ └── items.level.json │ │ │ │ └── quarryside_dealership │ │ │ │ │ ├── dealership_interaction │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── items.level.json │ │ │ │ │ ├── quarryFrontOfficeLights │ │ │ │ │ ├── items.level.json │ │ │ │ │ ├── quarryFrontOfficeLightPropsOff │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── quarryFrontOfficeLightPropsOn │ │ │ │ │ │ └── items.level.json │ │ │ │ │ └── quarryFrontOfficeLightSources │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── quarrySide_aiRoads │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── quarrySide_decalRoads │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── quarrySide_fence │ │ │ │ │ └── items.level.json │ │ │ │ │ └── quarrySide_props │ │ │ │ │ └── items.level.json │ │ │ ├── deliveryInteractionTemp │ │ │ │ └── items.level.json │ │ │ ├── dirt_decalroads │ │ │ │ ├── dirt │ │ │ │ │ └── items.level.json │ │ │ │ ├── dirt_gravel │ │ │ │ │ └── items.level.json │ │ │ │ ├── dirt_tracks │ │ │ │ │ └── items.level.json │ │ │ │ ├── erosion │ │ │ │ │ └── items.level.json │ │ │ │ └── items.level.json │ │ │ ├── driftZones │ │ │ │ └── items.level.json │ │ │ ├── fuel_stations │ │ │ │ ├── fuel_station_1 │ │ │ │ │ ├── fs_1_meshes │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── fs_1_pumps │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── fs_1_sign │ │ │ │ │ │ ├── fs_1_dyn_price_sign │ │ │ │ │ │ │ └── items.level.json │ │ │ │ │ │ ├── fs_1_sta_price_sign │ │ │ │ │ │ │ └── items.level.json │ │ │ │ │ │ └── items.level.json │ │ │ │ │ └── items.level.json │ │ │ │ ├── fuel_station_2 │ │ │ │ │ ├── fs_2_dynamic_pricing │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── fs_2_meshes │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── fs_2_pumps │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── fs_2_sign │ │ │ │ │ │ ├── fs_2_dyn_price_sign │ │ │ │ │ │ │ └── items.level.json │ │ │ │ │ │ ├── fs_2_sta_price_sign │ │ │ │ │ │ │ └── items.level.json │ │ │ │ │ │ └── items.level.json │ │ │ │ │ └── items.level.json │ │ │ │ ├── fuel_station_3 │ │ │ │ │ ├── fs_3_meshes │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── fs_3_props │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── fs_3_pumps │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── fs_3_sign │ │ │ │ │ │ ├── fs_3_dyn_price_sign │ │ │ │ │ │ │ └── items.level.json │ │ │ │ │ │ ├── fs_3_sta_price_sign │ │ │ │ │ │ │ └── items.level.json │ │ │ │ │ │ └── items.level.json │ │ │ │ │ └── items.level.json │ │ │ │ ├── fuel_station_4 │ │ │ │ │ ├── fs_4_meshes │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── fs_4_pumps │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── fs_4_sign │ │ │ │ │ │ ├── fs_4_dyn_price_sign │ │ │ │ │ │ │ └── items.level.json │ │ │ │ │ │ ├── fs_4_sta_price_sign │ │ │ │ │ │ │ └── items.level.json │ │ │ │ │ │ └── items.level.json │ │ │ │ │ └── items.level.json │ │ │ │ ├── fuel_station_5 │ │ │ │ │ ├── fs_5_decalroads │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── fs_5_meshes │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── fs_5_pumps │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── fs_5_sign │ │ │ │ │ │ ├── fs_5_dyn_price_sign │ │ │ │ │ │ │ └── items.level.json │ │ │ │ │ │ ├── fs_5_sta_price_sign │ │ │ │ │ │ │ └── items.level.json │ │ │ │ │ │ └── items.level.json │ │ │ │ │ └── items.level.json │ │ │ │ ├── fuel_station_6 │ │ │ │ │ ├── fs_6_decalroads │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── fs_6_meshes │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── fs_6_pumps │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── fs_6_sign │ │ │ │ │ │ ├── fs_6_dyn_price_sign │ │ │ │ │ │ │ └── items.level.json │ │ │ │ │ │ ├── fs_6_sta_price_sign │ │ │ │ │ │ │ └── items.level.json │ │ │ │ │ │ └── items.level.json │ │ │ │ │ └── items.level.json │ │ │ │ └── items.level.json │ │ │ ├── gas_stations_decalroads │ │ │ │ └── items.level.json │ │ │ ├── island │ │ │ │ ├── island_ai_roads │ │ │ │ │ └── items.level.json │ │ │ │ ├── island_decalroads │ │ │ │ │ └── items.level.json │ │ │ │ ├── island_meshes │ │ │ │ │ ├── hazardousWasteDropOff │ │ │ │ │ │ └── items.level.json │ │ │ │ │ └── items.level.json │ │ │ │ ├── island_rocks │ │ │ │ │ └── items.level.json │ │ │ │ ├── island_signs │ │ │ │ │ └── items.level.json │ │ │ │ ├── island_zones │ │ │ │ │ └── items.level.json │ │ │ │ └── items.level.json │ │ │ ├── island_shippingYard │ │ │ │ ├── backFences │ │ │ │ │ └── items.level.json │ │ │ │ ├── backOffice │ │ │ │ │ └── items.level.json │ │ │ │ ├── containersGroup │ │ │ │ │ ├── container_markings │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── containersBack │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── containersEmpty │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── containersEntrance │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── containersLeft │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── containersRight │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── containers_20ft │ │ │ │ │ │ └── items.level.json │ │ │ │ │ └── items.level.json │ │ │ │ ├── decals_extras │ │ │ │ │ └── items.level.json │ │ │ │ ├── detailBollards │ │ │ │ │ └── items.level.json │ │ │ │ ├── dockBumpers │ │ │ │ │ └── items.level.json │ │ │ │ ├── dock_aiRoads │ │ │ │ │ └── items.level.json │ │ │ │ ├── dock_barriers │ │ │ │ │ └── items.level.json │ │ │ │ ├── dock_decalroads │ │ │ │ │ └── items.level.json │ │ │ │ ├── dock_entrance │ │ │ │ │ ├── entranceSpeedBumps │ │ │ │ │ │ └── items.level.json │ │ │ │ │ └── items.level.json │ │ │ │ ├── dock_exit │ │ │ │ │ ├── docksExitCameras │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── exitSpeedBumps │ │ │ │ │ │ └── items.level.json │ │ │ │ │ └── items.level.json │ │ │ │ ├── dock_lightpoles │ │ │ │ │ └── items.level.json │ │ │ │ ├── dock_props │ │ │ │ │ └── items.level.json │ │ │ │ ├── dock_storage_area_props │ │ │ │ │ ├── dock_storage_area_decalroads │ │ │ │ │ │ └── items.level.json │ │ │ │ │ └── items.level.json │ │ │ │ ├── dock_structures │ │ │ │ │ ├── items.level.json │ │ │ │ │ └── warehouse │ │ │ │ │ │ ├── guardRails │ │ │ │ │ │ └── items.level.json │ │ │ │ │ │ ├── items.level.json │ │ │ │ │ │ ├── warehouseBuilding │ │ │ │ │ │ ├── items.level.json │ │ │ │ │ │ └── warehouseRoofTop │ │ │ │ │ │ │ └── items.level.json │ │ │ │ │ │ └── warehouse_props │ │ │ │ │ │ └── items.level.json │ │ │ │ ├── docks_cameras │ │ │ │ │ ├── docksCameraPoleGroup │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── docksCameraPoleGroup1 │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── docksCameraPoleGroup2 │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── docks_securityCameras │ │ │ │ │ │ └── items.level.json │ │ │ │ │ └── items.level.json │ │ │ │ ├── electrical │ │ │ │ │ └── items.level.json │ │ │ │ ├── entranceLines │ │ │ │ │ └── items.level.json │ │ │ │ ├── exitHouse │ │ │ │ │ └── items.level.json │ │ │ │ ├── frontFences │ │ │ │ │ └── items.level.json │ │ │ │ ├── items.level.json │ │ │ │ ├── under_train_area │ │ │ │ │ └── items.level.json │ │ │ │ └── warehouseFence │ │ │ │ │ └── items.level.json │ │ │ ├── items.level.json │ │ │ ├── movie_studio │ │ │ │ ├── items.level.json │ │ │ │ ├── movie_studio_decalroads │ │ │ │ │ ├── items.level.json │ │ │ │ │ └── movie_studio_decalroad_main │ │ │ │ │ │ └── items.level.json │ │ │ │ └── sb_movie_studio │ │ │ │ │ └── items.level.json │ │ │ ├── offRoadCircuit │ │ │ │ └── items.level.json │ │ │ ├── port │ │ │ │ ├── items.level.json │ │ │ │ ├── portNumbersSigns │ │ │ │ │ └── items.level.json │ │ │ │ └── portProps │ │ │ │ │ └── items.level.json │ │ │ ├── port_public_area │ │ │ │ ├── items.level.json │ │ │ │ ├── port_aiRoads │ │ │ │ │ └── items.level.json │ │ │ │ ├── port_ppa_decalroads │ │ │ │ │ ├── items.level.json │ │ │ │ │ └── lines │ │ │ │ │ │ └── items.level.json │ │ │ │ ├── port_ppa_fences │ │ │ │ │ └── items.level.json │ │ │ │ ├── port_ppa_wood_deck │ │ │ │ │ └── items.level.json │ │ │ │ ├── set_dress │ │ │ │ │ └── items.level.json │ │ │ │ └── structure │ │ │ │ │ └── items.level.json │ │ │ ├── pumpjacks │ │ │ │ └── items.level.json │ │ │ ├── quarry │ │ │ │ ├── items.level.json │ │ │ │ └── quarryRocks │ │ │ │ │ └── items.level.json │ │ │ ├── riverwayPlazaParking │ │ │ │ ├── detailLines │ │ │ │ │ └── items.level.json │ │ │ │ └── items.level.json │ │ │ ├── road_signs │ │ │ │ ├── items.level.json │ │ │ │ └── signColliders_bollards │ │ │ │ │ └── items.level.json │ │ │ ├── shuffleboard_conversion_area │ │ │ │ ├── items.level.json │ │ │ │ ├── shuffleboard_conversion_area_decalroads │ │ │ │ │ └── items.level.json │ │ │ │ └── shuffleboard_conversion_area_props │ │ │ │ │ └── items.level.json │ │ │ ├── sidewalk_patches │ │ │ │ └── items.level.json │ │ │ ├── spearleafShuffleboard │ │ │ │ └── items.level.json │ │ │ ├── steel_factory │ │ │ │ ├── Electric_stuff_1 │ │ │ │ │ └── items.level.json │ │ │ │ ├── Steel_factory_decalroads │ │ │ │ │ └── items.level.json │ │ │ │ ├── cranes │ │ │ │ │ └── items.level.json │ │ │ │ ├── exteriors │ │ │ │ │ └── items.level.json │ │ │ │ ├── fences │ │ │ │ │ └── items.level.json │ │ │ │ ├── grounds │ │ │ │ │ └── items.level.json │ │ │ │ ├── interiors │ │ │ │ │ └── items.level.json │ │ │ │ ├── items.level.json │ │ │ │ ├── lights │ │ │ │ │ ├── electric_ramps │ │ │ │ │ │ └── items.level.json │ │ │ │ │ └── items.level.json │ │ │ │ ├── machinery │ │ │ │ │ └── items.level.json │ │ │ │ ├── props │ │ │ │ │ └── items.level.json │ │ │ │ ├── sewers_water │ │ │ │ │ └── items.level.json │ │ │ │ ├── steelfactory_ai_roads │ │ │ │ │ ├── aiRoads_steelGroundLevel │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── aiRoads_steelUnderground │ │ │ │ │ │ └── items.level.json │ │ │ │ │ └── items.level.json │ │ │ │ ├── storages │ │ │ │ │ ├── coil01 │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── coil02 │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── coil03 │ │ │ │ │ │ └── items.level.json │ │ │ │ │ ├── coil04 │ │ │ │ │ │ └── items.level.json │ │ │ │ │ └── items.level.json │ │ │ │ └── zones │ │ │ │ │ └── items.level.json │ │ │ ├── trafficCameras_wip │ │ │ │ ├── graffiti_cam │ │ │ │ │ └── items.level.json │ │ │ │ ├── items.level.json │ │ │ │ ├── redlightCamera_001 │ │ │ │ │ └── items.level.json │ │ │ │ ├── speedCamera_002 │ │ │ │ │ └── items.level.json │ │ │ │ ├── speedCamera_003 │ │ │ │ │ └── items.level.json │ │ │ │ ├── speedCamera_004 │ │ │ │ │ └── items.level.json │ │ │ │ ├── speedCamera_005 │ │ │ │ │ └── items.level.json │ │ │ │ ├── speedCamera_006 │ │ │ │ │ └── items.level.json │ │ │ │ └── speedCamera_007 │ │ │ │ │ └── items.level.json │ │ │ ├── trafficlights │ │ │ │ └── items.level.json │ │ │ ├── tunnels │ │ │ │ ├── items.level.json │ │ │ │ ├── tunnel_lights │ │ │ │ │ ├── cityDrainage │ │ │ │ │ │ └── items.level.json │ │ │ │ │ └── items.level.json │ │ │ │ └── tunnel_zones │ │ │ │ │ └── items.level.json │ │ │ └── vegetation │ │ │ │ └── items.level.json │ │ └── items.level.json │ │ ├── map.json │ │ └── spawn_beamlr_preview.jpg ├── lua │ ├── common │ │ ├── extensions.lua │ │ ├── extensions │ │ │ └── blrflags.lua │ │ └── jbeam │ │ │ ├── io.lua │ │ │ └── optimization.lua │ ├── ge │ │ └── extensions │ │ │ ├── blrBarnFind.lua │ │ │ ├── blrCarMeet.lua │ │ │ ├── blrDynamicWeather.lua │ │ │ ├── blrItemInventory.lua │ │ │ ├── blrLightManager.lua │ │ │ ├── blrPartInventory.lua │ │ │ ├── blrPostSpawnAction.lua │ │ │ ├── blrRaceManager.lua │ │ │ ├── blrShopVehUtil.lua │ │ │ ├── blrSlotTree.lua │ │ │ ├── blrTrailerManager.lua │ │ │ ├── blrVehicleCallbacks.lua │ │ │ ├── blrdecals.lua │ │ │ ├── blrdelay.lua │ │ │ ├── blrdragdisplay.lua │ │ │ ├── blrfade.lua │ │ │ ├── blrglobals.lua │ │ │ ├── blrhooks.lua │ │ │ ├── blrimgui.lua │ │ │ ├── blrlocales.lua │ │ │ ├── blroverlay.lua │ │ │ ├── blrpartmgmt.lua │ │ │ ├── blrtriggers.lua │ │ │ ├── blrutils.lua │ │ │ ├── customGuiCallbacks.lua │ │ │ ├── customGuiStream.lua │ │ │ ├── flowgraph │ │ │ ├── basenode.lua │ │ │ └── nodes │ │ │ │ ├── audio │ │ │ │ └── playOnce.lua │ │ │ │ ├── gameplay │ │ │ │ └── countdown.lua │ │ │ │ ├── scene │ │ │ │ └── rectMarkerBLR.lua │ │ │ │ ├── ui │ │ │ │ ├── cornerTimerBLR.lua │ │ │ │ ├── flashMessageBLR.lua │ │ │ │ └── imgui │ │ │ │ │ └── elemental │ │ │ │ │ ├── imBegin.lua │ │ │ │ │ ├── imButtonBLR.lua │ │ │ │ │ └── imTextBLR.lua │ │ │ │ └── vehicle │ │ │ │ └── vehicleMapData.lua │ │ │ ├── gameplay │ │ │ └── drift │ │ │ │ ├── scoring.lua │ │ │ │ └── scoringLegacy.lua │ │ │ ├── mechDamageLoader.lua │ │ │ ├── modorderutil.lua │ │ │ ├── partScreenshotGenerator.lua │ │ │ ├── vluaBlockingCall.lua │ │ │ └── vluaFetchModule.lua │ └── vehicle │ │ ├── beamstate.lua │ │ ├── extensions │ │ ├── blrPowertrainClues.lua │ │ ├── blrVehicleUtils.lua │ │ └── vluaBlockingCall.lua │ │ ├── jbeam │ │ └── stage2.lua │ │ └── powertrain │ │ ├── combustionEngineThermals.lua │ │ └── manualGearbox.lua ├── settings │ └── ui_apps │ │ └── layouts │ │ ├── beamlr.uilayout.json │ │ ├── beamlrgameover.uilayout.json │ │ └── beamlrtrack.uilayout.json ├── ui │ └── modules │ │ └── apps │ │ ├── beamlrdeliveryui │ │ ├── app.html │ │ ├── app.js │ │ ├── app.json │ │ ├── app.png │ │ ├── background.png │ │ └── transparent.png │ │ ├── beamlrdriftui │ │ ├── app.html │ │ ├── app.js │ │ ├── app.json │ │ ├── app.png │ │ ├── background.png │ │ └── transparent.png │ │ ├── beamlrgameoverui │ │ ├── app.html │ │ ├── app.js │ │ ├── app.json │ │ ├── app.png │ │ ├── background.png │ │ └── transparent.png │ │ ├── beamlrgpsui │ │ ├── app.html │ │ ├── app.js │ │ ├── app.json │ │ ├── app.png │ │ ├── background.png │ │ └── transparent.png │ │ ├── beamlrimageviewer │ │ ├── app.html │ │ ├── app.js │ │ ├── app.json │ │ ├── app.png │ │ ├── background.png │ │ └── transparent.png │ │ ├── beamlrmirrorsui │ │ ├── app.html │ │ ├── app.js │ │ ├── app.json │ │ ├── app.png │ │ ├── background.png │ │ └── transparent.png │ │ ├── beamlrpartshop │ │ ├── app.html │ │ ├── app.js │ │ ├── app.json │ │ ├── app.png │ │ ├── background.png │ │ └── transparent.png │ │ ├── beamlrperfui │ │ ├── app.html │ │ ├── app.js │ │ ├── app.json │ │ ├── app.png │ │ ├── background.png │ │ └── transparent.png │ │ ├── beamlrrepairui │ │ ├── app.html │ │ ├── app.js │ │ ├── app.json │ │ ├── app.png │ │ ├── background.png │ │ └── transparent.png │ │ ├── beamlrshopvehutil │ │ ├── app.html │ │ ├── app.js │ │ ├── app.json │ │ └── app.png │ │ ├── beamlrtimer │ │ ├── app.html │ │ ├── app.js │ │ ├── app.json │ │ ├── app.png │ │ ├── background.png │ │ └── transparent.png │ │ ├── beamlrtowui │ │ ├── app.html │ │ ├── app.js │ │ ├── app.json │ │ ├── app.png │ │ ├── background.png │ │ └── transparent.png │ │ ├── beamlrtrackeventbrowser │ │ ├── app.html │ │ ├── app.js │ │ ├── app.json │ │ ├── app.png │ │ ├── background.png │ │ └── transparent.png │ │ ├── beamlrtrackeventui │ │ ├── app.html │ │ ├── app.js │ │ ├── app.json │ │ ├── app.png │ │ ├── background.png │ │ └── transparent.png │ │ ├── beamlrtracktuner │ │ ├── app.html │ │ ├── app.js │ │ ├── app.json │ │ ├── app.png │ │ ├── background.png │ │ └── transparent.png │ │ └── beamlrui │ │ ├── app.html │ │ ├── app.js │ │ ├── app.json │ │ ├── app.png │ │ ├── backbutton.svg │ │ ├── background.png │ │ ├── editcarbutton.svg │ │ ├── eventbrowserbutton.svg │ │ ├── gearbutton.svg │ │ ├── homebutton.svg │ │ ├── inventorybutton.svg │ │ ├── itemimg │ │ ├── coolant.png │ │ ├── jerrycan.png │ │ └── oilbottles.png │ │ ├── partimg │ │ └── none.png │ │ ├── partshopbutton.svg │ │ ├── star_empty.svg │ │ ├── star_filled.svg │ │ └── tuningbutton.svg └── vehicles │ ├── autobello │ ├── blr_barnfind.jpg │ ├── blr_barnfind.pc │ ├── blr_roh_autobello.jpg │ └── blr_roh_autobello.pc │ ├── barstow │ ├── blr_barnfind.jpg │ ├── blr_barnfind.pc │ ├── blr_roh_barstow.jpg │ ├── blr_roh_barstow.pc │ ├── blr_scrapyard.jpg │ └── blr_scrapyard.pc │ ├── bastion │ ├── blr_roh_bastion.jpg │ ├── blr_roh_bastion.pc │ ├── blr_track.jpg │ └── blr_track.pc │ ├── bluebuck │ ├── blr_barnfind.jpg │ ├── blr_barnfind.pc │ ├── blr_roh_burnside.jpg │ ├── blr_roh_burnside.pc │ ├── blr_starter.jpg │ └── blr_starter.pc │ ├── bolide │ ├── blr_barnfind.jpg │ ├── blr_barnfind.pc │ ├── blr_roh_bolide.jpg │ └── blr_roh_bolide.pc │ ├── burnside │ ├── blr_starter.jpg │ └── blr_starter.pc │ ├── bx │ ├── blr_200bx_old_A.jpg │ ├── blr_200bx_old_A.pc │ ├── blr_200bx_old_B.jpg │ ├── blr_200bx_old_B.pc │ ├── blr_200bx_old_C.jpg │ ├── blr_200bx_old_C.pc │ ├── blr_200bx_old_D.jpg │ ├── blr_200bx_old_D.pc │ ├── blr_200bx_scrapyard_A.jpg │ ├── blr_200bx_scrapyard_A.pc │ ├── blr_200bx_scrapyard_B.jpg │ ├── blr_200bx_scrapyard_B.pc │ ├── blr_200bx_scrapyard_C.jpg │ ├── blr_200bx_scrapyard_C.pc │ ├── blr_200bx_scrapyard_D.jpg │ ├── blr_200bx_scrapyard_D.pc │ ├── blr_barnfind.jpg │ ├── blr_barnfind.pc │ ├── blr_roh_200bx.jpg │ ├── blr_roh_200bx.pc │ ├── blr_roh_diana.jpg │ └── blr_roh_diana.pc │ ├── covet │ ├── blr_barnfind.jpg │ ├── blr_barnfind.pc │ ├── blr_roh_covet_front.jpg │ ├── blr_roh_covet_front.pc │ ├── blr_scrapyard.jpg │ └── blr_scrapyard.pc │ ├── etk800 │ ├── blr_roh_etk800.jpg │ ├── blr_roh_etk800.pc │ ├── blr_roh_etk800_alt.jpg │ └── blr_roh_etk800_alt.pc │ ├── etkc │ ├── blr_roh_etkc.jpg │ └── blr_roh_etkc.pc │ ├── etki │ ├── blr_barnfind.jpg │ ├── blr_barnfind.pc │ ├── blr_scrapyard.jpg │ └── blr_scrapyard.pc │ ├── fullsize │ ├── blr_barnfind.jpg │ ├── blr_barnfind.pc │ ├── blr_roh_fullsize_v2.jpg │ ├── blr_roh_fullsize_v2.pc │ ├── blr_scrapyard.jpg │ └── blr_scrapyard.pc │ ├── hopper │ ├── blr_roh_hopper.jpg │ ├── blr_roh_hopper.pc │ ├── blr_scrapyard.jpg │ └── blr_scrapyard.pc │ ├── lansdale │ ├── blr_roh_lansdale.jpg │ ├── blr_roh_lansdale.pc │ ├── blr_scrapyard.jpg │ ├── blr_scrapyard.pc │ ├── blr_starter.jpg │ └── blr_starter.pc │ ├── legran │ ├── blr_barnfind.jpg │ ├── blr_barnfind.pc │ ├── blr_starter.jpg │ └── blr_starter.pc │ ├── midsize │ ├── blr_barnfind.jpg │ ├── blr_barnfind.pc │ ├── blr_roh_midsize.jpg │ └── blr_roh_midsize.pc │ ├── miramar │ ├── blr_barnfind.jpg │ ├── blr_barnfind.pc │ ├── blr_starter.jpg │ └── blr_starter.pc │ ├── moonhawk │ ├── blr_barnfind.jpg │ ├── blr_barnfind.pc │ ├── blr_roh_moonhawk.jpg │ ├── blr_roh_moonhawk.pc │ ├── blr_scrapyard.jpg │ └── blr_scrapyard.pc │ ├── nine │ ├── blr_barnfind.jpg │ ├── blr_barnfind.pc │ ├── blr_roh_nine.jpg │ ├── blr_roh_nine.pc │ ├── blr_starter.jpg │ └── blr_starter.pc │ ├── pessima │ ├── blr_barnfind.jpg │ ├── blr_barnfind.pc │ ├── blr_roh_pessima.jpg │ ├── blr_roh_pessima.pc │ ├── blr_scrapyard.jpg │ └── blr_scrapyard.pc │ ├── pickup │ ├── blr_barnfind.jpg │ ├── blr_barnfind.pc │ ├── blr_roh_pickup.jpg │ ├── blr_roh_pickup.pc │ ├── blr_scrapyard.jpg │ ├── blr_scrapyard.pc │ ├── blr_starter.jpg │ └── blr_starter.pc │ ├── roamer │ ├── blr_roh_roamer.jpg │ ├── blr_roh_roamer.pc │ ├── blr_scrapyard.jpg │ └── blr_scrapyard.pc │ ├── sbr │ ├── blr_roh_sbr.jpg │ └── blr_roh_sbr.pc │ ├── scintilla │ ├── blr_roh_scintilla.jpg │ └── blr_roh_scintilla.pc │ ├── sunburst2 │ ├── blr_drag.jpg │ ├── blr_drag.pc │ ├── blr_roh_sunburst.jpg │ ├── blr_roh_sunburst.pc │ ├── blr_scrapyard.jpg │ ├── blr_scrapyard.pc │ ├── blr_scrapyard_wagon.jpg │ └── blr_scrapyard_wagon.pc │ ├── tiltdeck │ ├── blr_22ft_hay_2880kg.jpg │ ├── blr_22ft_hay_2880kg.pc │ ├── blr_22ft_hay_5760kg.jpg │ ├── blr_22ft_hay_5760kg.pc │ ├── blr_22ft_wood_8400kg.jpg │ ├── blr_22ft_wood_8400kg.pc │ ├── blr_30ft_hay_3840kg.jpg │ ├── blr_30ft_hay_3840kg.pc │ ├── blr_30ft_hay_7680kg.jpg │ ├── blr_30ft_hay_7680kg.pc │ ├── blr_30ft_wood_11200kg.jpg │ ├── blr_30ft_wood_11200kg.pc │ ├── blr_40ft_hay_4800kg.jpg │ ├── blr_40ft_hay_4800kg.pc │ ├── blr_40ft_wood_14000kg.jpg │ ├── blr_40ft_wood_14000kg.pc │ ├── blr_40ft_wood_7000kg.jpg │ └── blr_40ft_wood_7000kg.pc │ ├── van │ ├── blr_roh_van.jpg │ └── blr_roh_van.pc │ ├── vivace │ ├── blr_roh_vivace.jpg │ ├── blr_roh_vivace.pc │ ├── blr_scrapyard.jpg │ └── blr_scrapyard.pc │ └── wendover │ ├── blr_barnfind.jpg │ ├── blr_barnfind.pc │ ├── blr_roh_wendover.jpg │ ├── blr_roh_wendover.pc │ ├── blr_scrapyard.jpg │ └── blr_scrapyard.pc ├── Tutorials ├── Adding New Missions.md ├── Adding New Races.md ├── Adding Shop Vehicles.md ├── Miscellaneous Modding & Cheats.md ├── Part Images Guide │ └── README.md ├── README.md └── UI Modding.md ├── automationmap.md ├── eastcoastmap.md ├── hirochimap.md ├── issue_template.md ├── italymap.md ├── map_johnson.md ├── map_ks_nord.md ├── troubleshooting.md ├── utahmap.md ├── valocitymap.md └── westcoastmap.md /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-suggestion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/.github/ISSUE_TEMPLATE/feature-suggestion.yml -------------------------------------------------------------------------------- /Addons/Community Translations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Addons/Community Translations/README.md -------------------------------------------------------------------------------- /Addons/Community Translations/pt_BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Addons/Community Translations/pt_BR.json -------------------------------------------------------------------------------- /Addons/Part Images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Addons/Part Images/README.md -------------------------------------------------------------------------------- /Addons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Addons/README.md -------------------------------------------------------------------------------- /Addons/ks_nord/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Addons/ks_nord/README.md -------------------------------------------------------------------------------- /Addons/ks_nord/zz_blraddon_ks_nord.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Addons/ks_nord/zz_blraddon_ks_nord.zip -------------------------------------------------------------------------------- /Addons/motorsports_playground/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Addons/motorsports_playground/README.md -------------------------------------------------------------------------------- /Addons/valo_city/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Addons/valo_city/README.md -------------------------------------------------------------------------------- /Addons/valo_city/zz_blraddon_valocity.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Addons/valo_city/zz_blraddon_valocity.zip -------------------------------------------------------------------------------- /Old Releases/beamLegalRacing1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Old Releases/beamLegalRacing1.0.zip -------------------------------------------------------------------------------- /Old Releases/beamLegalRacing1.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Old Releases/beamLegalRacing1.1.zip -------------------------------------------------------------------------------- /Old Releases/beamLegalRacing1.10.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Old Releases/beamLegalRacing1.10.zip -------------------------------------------------------------------------------- /Old Releases/beamLegalRacing1.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Old Releases/beamLegalRacing1.2.zip -------------------------------------------------------------------------------- /Old Releases/beamLegalRacing1.3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Old Releases/beamLegalRacing1.3.zip -------------------------------------------------------------------------------- /Old Releases/beamLegalRacing1.4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Old Releases/beamLegalRacing1.4.zip -------------------------------------------------------------------------------- /Old Releases/beamLegalRacing1.5.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Old Releases/beamLegalRacing1.5.1.zip -------------------------------------------------------------------------------- /Old Releases/beamLegalRacing1.5.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Old Releases/beamLegalRacing1.5.zip -------------------------------------------------------------------------------- /Old Releases/beamLegalRacing1.6.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Old Releases/beamLegalRacing1.6.zip -------------------------------------------------------------------------------- /Old Releases/beamLegalRacing1.7.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Old Releases/beamLegalRacing1.7.zip -------------------------------------------------------------------------------- /Old Releases/beamLegalRacing1.8.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Old Releases/beamLegalRacing1.8.zip -------------------------------------------------------------------------------- /Old Releases/beamLegalRacing1.9.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Old Releases/beamLegalRacing1.9.1.zip -------------------------------------------------------------------------------- /Old Releases/beamLegalRacing1.9.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Old Releases/beamLegalRacing1.9.zip -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/README.md -------------------------------------------------------------------------------- /Source/art/decals/beamlr/puddle1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/art/decals/beamlr/puddle1.png -------------------------------------------------------------------------------- /Source/art/decals/beamlr/puddle2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/art/decals/beamlr/puddle2.png -------------------------------------------------------------------------------- /Source/art/decals/beamlr/puddle3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/art/decals/beamlr/puddle3.png -------------------------------------------------------------------------------- /Source/art/decals/beamlr/puddle4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/art/decals/beamlr/puddle4.png -------------------------------------------------------------------------------- /Source/art/decals/beamlr/puddle5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/art/decals/beamlr/puddle5.png -------------------------------------------------------------------------------- /Source/beamLR/barnFindData: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/beamLR/beamstate/car0.save.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/beamstate/car0.save.json -------------------------------------------------------------------------------- /Source/beamLR/beamstate/integrity/car0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/beamstate/integrity/car0 -------------------------------------------------------------------------------- /Source/beamLR/beamstate/mech/car0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/beamstate/mech/car0 -------------------------------------------------------------------------------- /Source/beamLR/cache/cachedMods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/cache/cachedMods -------------------------------------------------------------------------------- /Source/beamLR/cache/fullPartNameLibrary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/cache/fullPartNameLibrary -------------------------------------------------------------------------------- /Source/beamLR/cache/fullSlotNameLibrary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/cache/fullSlotNameLibrary -------------------------------------------------------------------------------- /Source/beamLR/cache/jbeamFileMap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/cache/jbeamFileMap -------------------------------------------------------------------------------- /Source/beamLR/carMeetConfigs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/carMeetConfigs -------------------------------------------------------------------------------- /Source/beamLR/carMeetDayData: -------------------------------------------------------------------------------- 1 | visited=none 2 | -------------------------------------------------------------------------------- /Source/beamLR/challenges/east_coast_usa/Adrift1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/east_coast_usa/Adrift1 -------------------------------------------------------------------------------- /Source/beamLR/challenges/east_coast_usa/Adrift2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/east_coast_usa/Adrift2 -------------------------------------------------------------------------------- /Source/beamLR/challenges/east_coast_usa/Adrift3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/east_coast_usa/Adrift3 -------------------------------------------------------------------------------- /Source/beamLR/challenges/east_coast_usa/Adrift4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/east_coast_usa/Adrift4 -------------------------------------------------------------------------------- /Source/beamLR/challenges/east_coast_usa/Adrift5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/east_coast_usa/Adrift5 -------------------------------------------------------------------------------- /Source/beamLR/challenges/east_coast_usa/Adrift6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/east_coast_usa/Adrift6 -------------------------------------------------------------------------------- /Source/beamLR/challenges/east_coast_usa/Adrift7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/east_coast_usa/Adrift7 -------------------------------------------------------------------------------- /Source/beamLR/challenges/east_coast_usa/Adrift8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/east_coast_usa/Adrift8 -------------------------------------------------------------------------------- /Source/beamLR/challenges/east_coast_usa/Bdrift1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/east_coast_usa/Bdrift1 -------------------------------------------------------------------------------- /Source/beamLR/challenges/east_coast_usa/Bdrift2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/east_coast_usa/Bdrift2 -------------------------------------------------------------------------------- /Source/beamLR/challenges/east_coast_usa/Bdrift3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/east_coast_usa/Bdrift3 -------------------------------------------------------------------------------- /Source/beamLR/challenges/east_coast_usa/Bdrift4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/east_coast_usa/Bdrift4 -------------------------------------------------------------------------------- /Source/beamLR/challenges/east_coast_usa/Bdrift5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/east_coast_usa/Bdrift5 -------------------------------------------------------------------------------- /Source/beamLR/challenges/east_coast_usa/Bdrift6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/east_coast_usa/Bdrift6 -------------------------------------------------------------------------------- /Source/beamLR/challenges/east_coast_usa/Bdrift7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/east_coast_usa/Bdrift7 -------------------------------------------------------------------------------- /Source/beamLR/challenges/east_coast_usa/Bdrift8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/east_coast_usa/Bdrift8 -------------------------------------------------------------------------------- /Source/beamLR/challenges/east_coast_usa/Bjump1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/east_coast_usa/Bjump1 -------------------------------------------------------------------------------- /Source/beamLR/challenges/east_coast_usa/Bjump2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/east_coast_usa/Bjump2 -------------------------------------------------------------------------------- /Source/beamLR/challenges/italy/Adrift1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/italy/Adrift1 -------------------------------------------------------------------------------- /Source/beamLR/challenges/italy/Adrift2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/italy/Adrift2 -------------------------------------------------------------------------------- /Source/beamLR/challenges/italy/Adrift3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/italy/Adrift3 -------------------------------------------------------------------------------- /Source/beamLR/challenges/italy/Adrift4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/italy/Adrift4 -------------------------------------------------------------------------------- /Source/beamLR/challenges/italy/Adrift5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/italy/Adrift5 -------------------------------------------------------------------------------- /Source/beamLR/challenges/italy/Adrift6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/italy/Adrift6 -------------------------------------------------------------------------------- /Source/beamLR/challenges/italy/Adrift7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/italy/Adrift7 -------------------------------------------------------------------------------- /Source/beamLR/challenges/italy/Adrift8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/italy/Adrift8 -------------------------------------------------------------------------------- /Source/beamLR/challenges/italy/Adrift9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/italy/Adrift9 -------------------------------------------------------------------------------- /Source/beamLR/challenges/italy/Atimeattack1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/italy/Atimeattack1 -------------------------------------------------------------------------------- /Source/beamLR/challenges/italy/Atimeattack10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/italy/Atimeattack10 -------------------------------------------------------------------------------- /Source/beamLR/challenges/italy/Atimeattack11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/italy/Atimeattack11 -------------------------------------------------------------------------------- /Source/beamLR/challenges/italy/Atimeattack2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/italy/Atimeattack2 -------------------------------------------------------------------------------- /Source/beamLR/challenges/italy/Atimeattack3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/italy/Atimeattack3 -------------------------------------------------------------------------------- /Source/beamLR/challenges/italy/Atimeattack4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/italy/Atimeattack4 -------------------------------------------------------------------------------- /Source/beamLR/challenges/italy/Atimeattack5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/italy/Atimeattack5 -------------------------------------------------------------------------------- /Source/beamLR/challenges/italy/Atimeattack6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/italy/Atimeattack6 -------------------------------------------------------------------------------- /Source/beamLR/challenges/italy/Atimeattack7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/italy/Atimeattack7 -------------------------------------------------------------------------------- /Source/beamLR/challenges/italy/Atimeattack8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/italy/Atimeattack8 -------------------------------------------------------------------------------- /Source/beamLR/challenges/italy/Atimeattack9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/italy/Atimeattack9 -------------------------------------------------------------------------------- /Source/beamLR/challenges/italy/Bspeed1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/italy/Bspeed1 -------------------------------------------------------------------------------- /Source/beamLR/challenges/italy/Bspeed10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/italy/Bspeed10 -------------------------------------------------------------------------------- /Source/beamLR/challenges/italy/Bspeed2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/italy/Bspeed2 -------------------------------------------------------------------------------- /Source/beamLR/challenges/italy/Bspeed3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/italy/Bspeed3 -------------------------------------------------------------------------------- /Source/beamLR/challenges/italy/Bspeed4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/italy/Bspeed4 -------------------------------------------------------------------------------- /Source/beamLR/challenges/italy/Bspeed5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/italy/Bspeed5 -------------------------------------------------------------------------------- /Source/beamLR/challenges/italy/Bspeed6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/italy/Bspeed6 -------------------------------------------------------------------------------- /Source/beamLR/challenges/italy/Bspeed7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/italy/Bspeed7 -------------------------------------------------------------------------------- /Source/beamLR/challenges/italy/Bspeed8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/italy/Bspeed8 -------------------------------------------------------------------------------- /Source/beamLR/challenges/italy/Bspeed9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/italy/Bspeed9 -------------------------------------------------------------------------------- /Source/beamLR/challenges/italy/Btimeattack1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/italy/Btimeattack1 -------------------------------------------------------------------------------- /Source/beamLR/challenges/italy/Btimeattack2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/italy/Btimeattack2 -------------------------------------------------------------------------------- /Source/beamLR/challenges/italy/Btimeattack3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/italy/Btimeattack3 -------------------------------------------------------------------------------- /Source/beamLR/challenges/italy/Btimeattack4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/italy/Btimeattack4 -------------------------------------------------------------------------------- /Source/beamLR/challenges/italy/Btimeattack5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/italy/Btimeattack5 -------------------------------------------------------------------------------- /Source/beamLR/challenges/utah/drift1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/utah/drift1 -------------------------------------------------------------------------------- /Source/beamLR/challenges/utah/drift10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/utah/drift10 -------------------------------------------------------------------------------- /Source/beamLR/challenges/utah/drift11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/utah/drift11 -------------------------------------------------------------------------------- /Source/beamLR/challenges/utah/drift2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/utah/drift2 -------------------------------------------------------------------------------- /Source/beamLR/challenges/utah/drift3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/utah/drift3 -------------------------------------------------------------------------------- /Source/beamLR/challenges/utah/drift4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/utah/drift4 -------------------------------------------------------------------------------- /Source/beamLR/challenges/utah/drift5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/utah/drift5 -------------------------------------------------------------------------------- /Source/beamLR/challenges/utah/drift6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/utah/drift6 -------------------------------------------------------------------------------- /Source/beamLR/challenges/utah/drift7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/utah/drift7 -------------------------------------------------------------------------------- /Source/beamLR/challenges/utah/drift8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/utah/drift8 -------------------------------------------------------------------------------- /Source/beamLR/challenges/utah/drift9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/utah/drift9 -------------------------------------------------------------------------------- /Source/beamLR/challenges/utah/jump1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/utah/jump1 -------------------------------------------------------------------------------- /Source/beamLR/challenges/utah/jump2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/utah/jump2 -------------------------------------------------------------------------------- /Source/beamLR/challenges/utah/jump3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/utah/jump3 -------------------------------------------------------------------------------- /Source/beamLR/challenges/utah/jump4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/utah/jump4 -------------------------------------------------------------------------------- /Source/beamLR/challenges/utah/jump5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/utah/jump5 -------------------------------------------------------------------------------- /Source/beamLR/challenges/utah/jump6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/utah/jump6 -------------------------------------------------------------------------------- /Source/beamLR/challenges/utah/jump7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/utah/jump7 -------------------------------------------------------------------------------- /Source/beamLR/challenges/utah/rockcrawl1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/utah/rockcrawl1 -------------------------------------------------------------------------------- /Source/beamLR/challenges/utah/rockcrawl2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/utah/rockcrawl2 -------------------------------------------------------------------------------- /Source/beamLR/challenges/utah/speedtrap1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/utah/speedtrap1 -------------------------------------------------------------------------------- /Source/beamLR/challenges/utah/speedtrap2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/utah/speedtrap2 -------------------------------------------------------------------------------- /Source/beamLR/challenges/utah/speedtrap3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/utah/speedtrap3 -------------------------------------------------------------------------------- /Source/beamLR/challenges/utah/speedtrap4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/utah/speedtrap4 -------------------------------------------------------------------------------- /Source/beamLR/challenges/utah/speedtrap5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/utah/speedtrap5 -------------------------------------------------------------------------------- /Source/beamLR/challenges/utah/speedtrap6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/utah/speedtrap6 -------------------------------------------------------------------------------- /Source/beamLR/challenges/utah/speedtrap7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/utah/speedtrap7 -------------------------------------------------------------------------------- /Source/beamLR/challenges/utah/speedtrap8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/utah/speedtrap8 -------------------------------------------------------------------------------- /Source/beamLR/challenges/utah/timeattack1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/utah/timeattack1 -------------------------------------------------------------------------------- /Source/beamLR/challenges/utah/timeattack10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/utah/timeattack10 -------------------------------------------------------------------------------- /Source/beamLR/challenges/utah/timeattack11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/utah/timeattack11 -------------------------------------------------------------------------------- /Source/beamLR/challenges/utah/timeattack2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/utah/timeattack2 -------------------------------------------------------------------------------- /Source/beamLR/challenges/utah/timeattack3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/utah/timeattack3 -------------------------------------------------------------------------------- /Source/beamLR/challenges/utah/timeattack4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/utah/timeattack4 -------------------------------------------------------------------------------- /Source/beamLR/challenges/utah/timeattack5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/utah/timeattack5 -------------------------------------------------------------------------------- /Source/beamLR/challenges/utah/timeattack6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/utah/timeattack6 -------------------------------------------------------------------------------- /Source/beamLR/challenges/utah/timeattack7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/utah/timeattack7 -------------------------------------------------------------------------------- /Source/beamLR/challenges/utah/timeattack8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/utah/timeattack8 -------------------------------------------------------------------------------- /Source/beamLR/challenges/utah/timeattack9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/utah/timeattack9 -------------------------------------------------------------------------------- /Source/beamLR/challenges/west_coast_usa/Adrift1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/west_coast_usa/Adrift1 -------------------------------------------------------------------------------- /Source/beamLR/challenges/west_coast_usa/Adrift2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/west_coast_usa/Adrift2 -------------------------------------------------------------------------------- /Source/beamLR/challenges/west_coast_usa/Adrift3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/west_coast_usa/Adrift3 -------------------------------------------------------------------------------- /Source/beamLR/challenges/west_coast_usa/Adrift4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/west_coast_usa/Adrift4 -------------------------------------------------------------------------------- /Source/beamLR/challenges/west_coast_usa/Adrift5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/west_coast_usa/Adrift5 -------------------------------------------------------------------------------- /Source/beamLR/challenges/west_coast_usa/Adrift6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/west_coast_usa/Adrift6 -------------------------------------------------------------------------------- /Source/beamLR/challenges/west_coast_usa/Adrift7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/west_coast_usa/Adrift7 -------------------------------------------------------------------------------- /Source/beamLR/challenges/west_coast_usa/Adrift8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/west_coast_usa/Adrift8 -------------------------------------------------------------------------------- /Source/beamLR/challenges/west_coast_usa/Adrift9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/west_coast_usa/Adrift9 -------------------------------------------------------------------------------- /Source/beamLR/challenges/west_coast_usa/Ajump1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/west_coast_usa/Ajump1 -------------------------------------------------------------------------------- /Source/beamLR/challenges/west_coast_usa/Ajump2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/west_coast_usa/Ajump2 -------------------------------------------------------------------------------- /Source/beamLR/challenges/west_coast_usa/Ajump3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/challenges/west_coast_usa/Ajump3 -------------------------------------------------------------------------------- /Source/beamLR/currentTrackEvent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/currentTrackEvent -------------------------------------------------------------------------------- /Source/beamLR/dmgPrices: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/dmgPrices -------------------------------------------------------------------------------- /Source/beamLR/garage/car0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/garage/car0 -------------------------------------------------------------------------------- /Source/beamLR/garage/config/car0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/garage/config/car0 -------------------------------------------------------------------------------- /Source/beamLR/init/barnFindData: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/beamLR/init/beamstate/car0.save.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/init/beamstate/car0.save.json -------------------------------------------------------------------------------- /Source/beamLR/init/beamstate/car1.save.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/init/beamstate/car1.save.json -------------------------------------------------------------------------------- /Source/beamLR/init/beamstate/car2.save.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/init/beamstate/car2.save.json -------------------------------------------------------------------------------- /Source/beamLR/init/beamstate/car3.save.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/init/beamstate/car3.save.json -------------------------------------------------------------------------------- /Source/beamLR/init/beamstate/car4.save.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/init/beamstate/car4.save.json -------------------------------------------------------------------------------- /Source/beamLR/init/beamstate/car5.save.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/init/beamstate/car5.save.json -------------------------------------------------------------------------------- /Source/beamLR/init/beamstate/car6.save.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/init/beamstate/car6.save.json -------------------------------------------------------------------------------- /Source/beamLR/init/beamstate/integrity/car0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/init/beamstate/integrity/car0 -------------------------------------------------------------------------------- /Source/beamLR/init/beamstate/integrity/car1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/init/beamstate/integrity/car1 -------------------------------------------------------------------------------- /Source/beamLR/init/beamstate/integrity/car2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/init/beamstate/integrity/car2 -------------------------------------------------------------------------------- /Source/beamLR/init/beamstate/integrity/car3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/init/beamstate/integrity/car3 -------------------------------------------------------------------------------- /Source/beamLR/init/beamstate/integrity/car4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/init/beamstate/integrity/car4 -------------------------------------------------------------------------------- /Source/beamLR/init/beamstate/integrity/car5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/init/beamstate/integrity/car5 -------------------------------------------------------------------------------- /Source/beamLR/init/beamstate/integrity/car6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/init/beamstate/integrity/car6 -------------------------------------------------------------------------------- /Source/beamLR/init/beamstate/mech/car0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/init/beamstate/mech/car0 -------------------------------------------------------------------------------- /Source/beamLR/init/beamstate/mech/car1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/init/beamstate/mech/car1 -------------------------------------------------------------------------------- /Source/beamLR/init/beamstate/mech/car2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/init/beamstate/mech/car2 -------------------------------------------------------------------------------- /Source/beamLR/init/beamstate/mech/car3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/init/beamstate/mech/car3 -------------------------------------------------------------------------------- /Source/beamLR/init/beamstate/mech/car4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/init/beamstate/mech/car4 -------------------------------------------------------------------------------- /Source/beamLR/init/beamstate/mech/car5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/init/beamstate/mech/car5 -------------------------------------------------------------------------------- /Source/beamLR/init/beamstate/mech/car6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/init/beamstate/mech/car6 -------------------------------------------------------------------------------- /Source/beamLR/init/carMeetDayData: -------------------------------------------------------------------------------- 1 | visited=none -------------------------------------------------------------------------------- /Source/beamLR/init/emptyRaceProgress: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/init/emptyRaceProgress -------------------------------------------------------------------------------- /Source/beamLR/init/emptyShopDayData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/init/emptyShopDayData -------------------------------------------------------------------------------- /Source/beamLR/init/garage/car0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/init/garage/car0 -------------------------------------------------------------------------------- /Source/beamLR/init/garage/car1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/init/garage/car1 -------------------------------------------------------------------------------- /Source/beamLR/init/garage/car2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/init/garage/car2 -------------------------------------------------------------------------------- /Source/beamLR/init/garage/car3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/init/garage/car3 -------------------------------------------------------------------------------- /Source/beamLR/init/garage/car4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/init/garage/car4 -------------------------------------------------------------------------------- /Source/beamLR/init/garage/car5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/init/garage/car5 -------------------------------------------------------------------------------- /Source/beamLR/init/garage/car6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/init/garage/car6 -------------------------------------------------------------------------------- /Source/beamLR/init/garage/config/car0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/init/garage/config/car0 -------------------------------------------------------------------------------- /Source/beamLR/init/garage/config/car1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/init/garage/config/car1 -------------------------------------------------------------------------------- /Source/beamLR/init/garage/config/car2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/init/garage/config/car2 -------------------------------------------------------------------------------- /Source/beamLR/init/garage/config/car3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/init/garage/config/car3 -------------------------------------------------------------------------------- /Source/beamLR/init/garage/config/car4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/init/garage/config/car4 -------------------------------------------------------------------------------- /Source/beamLR/init/garage/config/car5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/init/garage/config/car5 -------------------------------------------------------------------------------- /Source/beamLR/init/garage/config/car6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/init/garage/config/car6 -------------------------------------------------------------------------------- /Source/beamLR/init/itemInventory: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/beamLR/init/mainData_easy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/init/mainData_easy -------------------------------------------------------------------------------- /Source/beamLR/init/mainData_hard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/init/mainData_hard -------------------------------------------------------------------------------- /Source/beamLR/init/mainData_medium: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/init/mainData_medium -------------------------------------------------------------------------------- /Source/beamLR/init/ownedProperties: -------------------------------------------------------------------------------- 1 | owned=none -------------------------------------------------------------------------------- /Source/beamLR/init/partInventory: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/beamLR/init/trackEventResults: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/beamLR/init/usedPartDayData: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/beamLR/itemInventory: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/beamLR/locales/en-US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/locales/en-US.json -------------------------------------------------------------------------------- /Source/beamLR/mainData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/mainData -------------------------------------------------------------------------------- /Source/beamLR/mapdata/east_coast_usa/gps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/mapdata/east_coast_usa/gps -------------------------------------------------------------------------------- /Source/beamLR/mapdata/east_coast_usa/markers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/mapdata/east_coast_usa/markers -------------------------------------------------------------------------------- /Source/beamLR/mapdata/east_coast_usa/spawn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/mapdata/east_coast_usa/spawn -------------------------------------------------------------------------------- /Source/beamLR/mapdata/east_coast_usa/towing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/mapdata/east_coast_usa/towing -------------------------------------------------------------------------------- /Source/beamLR/mapdata/east_coast_usa/traffic: -------------------------------------------------------------------------------- 1 | usa -------------------------------------------------------------------------------- /Source/beamLR/mapdata/east_coast_usa/triggerData/gasStation1: -------------------------------------------------------------------------------- 1 | id=0 2 | name=Nodeoline Gas Station 3 | cost=1.0,2.0 4 | -------------------------------------------------------------------------------- /Source/beamLR/mapdata/east_coast_usa/triggerData/gasStation2: -------------------------------------------------------------------------------- 1 | id=1 2 | name=Nodeoline Gas Station 3 | cost=0.8,2.4 4 | -------------------------------------------------------------------------------- /Source/beamLR/mapdata/east_coast_usa/triggerData/scrapyard1: -------------------------------------------------------------------------------- 1 | shopfile=eastCoastScrapyard -------------------------------------------------------------------------------- /Source/beamLR/mapdata/east_coast_usa/triggers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/mapdata/east_coast_usa/triggers -------------------------------------------------------------------------------- /Source/beamLR/mapdata/italy/gps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/mapdata/italy/gps -------------------------------------------------------------------------------- /Source/beamLR/mapdata/italy/markers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/mapdata/italy/markers -------------------------------------------------------------------------------- /Source/beamLR/mapdata/italy/spawn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/mapdata/italy/spawn -------------------------------------------------------------------------------- /Source/beamLR/mapdata/italy/towing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/mapdata/italy/towing -------------------------------------------------------------------------------- /Source/beamLR/mapdata/italy/traffic: -------------------------------------------------------------------------------- 1 | europe -------------------------------------------------------------------------------- /Source/beamLR/mapdata/italy/triggerData/gasStationA: -------------------------------------------------------------------------------- 1 | id=0 2 | name=Apex Gas Station 3 | cost=1.2,2.2 4 | -------------------------------------------------------------------------------- /Source/beamLR/mapdata/italy/triggerData/gasStationB: -------------------------------------------------------------------------------- 1 | id=1 2 | name=Apex Gas Station 3 | cost=0.9,1.8 4 | -------------------------------------------------------------------------------- /Source/beamLR/mapdata/italy/triggerData/gasStationC: -------------------------------------------------------------------------------- 1 | id=2 2 | name=Apex Gas Station 3 | cost=0.7,2.3 4 | -------------------------------------------------------------------------------- /Source/beamLR/mapdata/italy/triggerData/gasStationD: -------------------------------------------------------------------------------- 1 | id=3 2 | name=Apex Gas Station 3 | cost=0.8,2.6 4 | -------------------------------------------------------------------------------- /Source/beamLR/mapdata/italy/triggerData/gasStationE: -------------------------------------------------------------------------------- 1 | id=4 2 | name=Apex Gas Station 3 | cost=0.6,1.6 4 | -------------------------------------------------------------------------------- /Source/beamLR/mapdata/italy/triggerData/gasStationF: -------------------------------------------------------------------------------- 1 | id=5 2 | name=Apex Gas Station 3 | cost=0.8,1.8 4 | -------------------------------------------------------------------------------- /Source/beamLR/mapdata/italy/triggerData/gasStationG: -------------------------------------------------------------------------------- 1 | id=6 2 | name=Apex Gas Station 3 | cost=0.9,2.1 4 | -------------------------------------------------------------------------------- /Source/beamLR/mapdata/italy/triggerData/gasStationH: -------------------------------------------------------------------------------- 1 | id=7 2 | name=Apex Gas Station 3 | cost=1.0,2.0 4 | -------------------------------------------------------------------------------- /Source/beamLR/mapdata/italy/triggerData/gasStationI: -------------------------------------------------------------------------------- 1 | id=8 2 | name=Apex Gas Station 3 | cost=1.2,2.4 4 | -------------------------------------------------------------------------------- /Source/beamLR/mapdata/italy/triggerData/gasStationJ: -------------------------------------------------------------------------------- 1 | id=9 2 | name=Apex Gas Station 3 | cost=0.8,2.2 4 | -------------------------------------------------------------------------------- /Source/beamLR/mapdata/italy/triggerData/newShopA: -------------------------------------------------------------------------------- 1 | shopfile=italyNewCarShopA -------------------------------------------------------------------------------- /Source/beamLR/mapdata/italy/triggerData/partShopA: -------------------------------------------------------------------------------- 1 | missionFile=italyGiverA 2 | shopID=4 3 | scale=0.7,1.25 -------------------------------------------------------------------------------- /Source/beamLR/mapdata/italy/triggerData/partShopB: -------------------------------------------------------------------------------- 1 | missionFile=italyGiverB 2 | shopID=5 3 | scale=0.6,1.4 -------------------------------------------------------------------------------- /Source/beamLR/mapdata/italy/triggerData/partShopC: -------------------------------------------------------------------------------- 1 | missionFile=italyGiverC 2 | shopID=6 3 | scale=0.8,1.2 -------------------------------------------------------------------------------- /Source/beamLR/mapdata/italy/triggerData/scrapyardA: -------------------------------------------------------------------------------- 1 | shopfile=italyScrapyardA -------------------------------------------------------------------------------- /Source/beamLR/mapdata/italy/triggerData/usedShopA: -------------------------------------------------------------------------------- 1 | shopfile=italyUsedCarShopA -------------------------------------------------------------------------------- /Source/beamLR/mapdata/italy/triggerData/usedShopB: -------------------------------------------------------------------------------- 1 | shopfile=italyUsedCarShopB -------------------------------------------------------------------------------- /Source/beamLR/mapdata/italy/triggers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/mapdata/italy/triggers -------------------------------------------------------------------------------- /Source/beamLR/mapdata/utah/gps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/mapdata/utah/gps -------------------------------------------------------------------------------- /Source/beamLR/mapdata/utah/markers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/mapdata/utah/markers -------------------------------------------------------------------------------- /Source/beamLR/mapdata/utah/spawn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/mapdata/utah/spawn -------------------------------------------------------------------------------- /Source/beamLR/mapdata/utah/towing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/mapdata/utah/towing -------------------------------------------------------------------------------- /Source/beamLR/mapdata/utah/traffic: -------------------------------------------------------------------------------- 1 | usa -------------------------------------------------------------------------------- /Source/beamLR/mapdata/utah/triggerData/dragRace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/mapdata/utah/triggerData/dragRace -------------------------------------------------------------------------------- /Source/beamLR/mapdata/utah/triggerData/gasStation1: -------------------------------------------------------------------------------- 1 | id=0 2 | name=Gas ol' In 3 | cost=1.0,2.0 4 | -------------------------------------------------------------------------------- /Source/beamLR/mapdata/utah/triggerData/gasStation2: -------------------------------------------------------------------------------- 1 | id=1 2 | name=Canyon Fuel 3 | cost=0.8,1.8 -------------------------------------------------------------------------------- /Source/beamLR/mapdata/utah/triggerData/newShop1: -------------------------------------------------------------------------------- 1 | shopfile=utahNewCarShop -------------------------------------------------------------------------------- /Source/beamLR/mapdata/utah/triggerData/partShop1: -------------------------------------------------------------------------------- 1 | missionFile=utahGiver0 2 | shopID=1 3 | scale=0.8,1.2 -------------------------------------------------------------------------------- /Source/beamLR/mapdata/utah/triggerData/scrapyard1: -------------------------------------------------------------------------------- 1 | shopfile=utahScrapyard -------------------------------------------------------------------------------- /Source/beamLR/mapdata/utah/triggerData/usedShop1: -------------------------------------------------------------------------------- 1 | shopfile=utahUsedCarShop -------------------------------------------------------------------------------- /Source/beamLR/mapdata/utah/triggers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/mapdata/utah/triggers -------------------------------------------------------------------------------- /Source/beamLR/mapdata/west_coast_usa/gps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/mapdata/west_coast_usa/gps -------------------------------------------------------------------------------- /Source/beamLR/mapdata/west_coast_usa/markers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/mapdata/west_coast_usa/markers -------------------------------------------------------------------------------- /Source/beamLR/mapdata/west_coast_usa/spawn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/mapdata/west_coast_usa/spawn -------------------------------------------------------------------------------- /Source/beamLR/mapdata/west_coast_usa/towing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/mapdata/west_coast_usa/towing -------------------------------------------------------------------------------- /Source/beamLR/mapdata/west_coast_usa/traffic: -------------------------------------------------------------------------------- 1 | usa -------------------------------------------------------------------------------- /Source/beamLR/mapdata/west_coast_usa/triggerData/gasStationD: -------------------------------------------------------------------------------- 1 | id=3 2 | name=Apex 3 | cost=1.1,1.9 4 | display=apex 5 | -------------------------------------------------------------------------------- /Source/beamLR/mapdata/west_coast_usa/triggerData/gasStationE: -------------------------------------------------------------------------------- 1 | id=4 2 | name=Tyrannos 3 | cost=0.9,1.7 4 | display=tyranos_island -------------------------------------------------------------------------------- /Source/beamLR/mapdata/west_coast_usa/triggerData/mixedShop: -------------------------------------------------------------------------------- 1 | shopfile=westCoastMixedCarShop -------------------------------------------------------------------------------- /Source/beamLR/mapdata/west_coast_usa/triggerData/newShop: -------------------------------------------------------------------------------- 1 | shopfile=westCoastNewCarShop -------------------------------------------------------------------------------- /Source/beamLR/mapdata/west_coast_usa/triggerData/partShopA: -------------------------------------------------------------------------------- 1 | missionFile=westCoastGiverA 2 | shopID=7 3 | scale=0.8,1.2 -------------------------------------------------------------------------------- /Source/beamLR/mapdata/west_coast_usa/triggerData/partShopB: -------------------------------------------------------------------------------- 1 | missionFile=westCoastGiverB 2 | shopID=8 3 | scale=0.65,1.3 -------------------------------------------------------------------------------- /Source/beamLR/mapdata/west_coast_usa/triggerData/partShopC: -------------------------------------------------------------------------------- 1 | missionFile=westCoastGiverC 2 | shopID=9 3 | scale=0.7,1.1 -------------------------------------------------------------------------------- /Source/beamLR/mapdata/west_coast_usa/triggerData/scrapyard: -------------------------------------------------------------------------------- 1 | shopfile=westCoastScrapyard -------------------------------------------------------------------------------- /Source/beamLR/mapdata/west_coast_usa/triggerData/usedShopA: -------------------------------------------------------------------------------- 1 | shopfile=westCoastUsedCarShopA -------------------------------------------------------------------------------- /Source/beamLR/mapdata/west_coast_usa/triggerData/usedShopB: -------------------------------------------------------------------------------- 1 | shopfile=westCoastUsedCarShopB -------------------------------------------------------------------------------- /Source/beamLR/mapdata/west_coast_usa/triggers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/mapdata/west_coast_usa/triggers -------------------------------------------------------------------------------- /Source/beamLR/missionFailedPenalty: -------------------------------------------------------------------------------- 1 | small=10 2 | trailer=50 3 | gooseneck=100 -------------------------------------------------------------------------------- /Source/beamLR/missions/italy/italyGiverA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/missions/italy/italyGiverA -------------------------------------------------------------------------------- /Source/beamLR/missions/italy/italyGiverB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/missions/italy/italyGiverB -------------------------------------------------------------------------------- /Source/beamLR/missions/italy/italyGiverC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/missions/italy/italyGiverC -------------------------------------------------------------------------------- /Source/beamLR/missions/italy/list_gooseneckA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/missions/italy/list_gooseneckA -------------------------------------------------------------------------------- /Source/beamLR/missions/italy/list_gooseneckB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/missions/italy/list_gooseneckB -------------------------------------------------------------------------------- /Source/beamLR/missions/italy/list_gooseneckC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/missions/italy/list_gooseneckC -------------------------------------------------------------------------------- /Source/beamLR/missions/italy/list_smallA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/missions/italy/list_smallA -------------------------------------------------------------------------------- /Source/beamLR/missions/italy/list_smallB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/missions/italy/list_smallB -------------------------------------------------------------------------------- /Source/beamLR/missions/italy/list_smallC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/missions/italy/list_smallC -------------------------------------------------------------------------------- /Source/beamLR/missions/italy/list_trailerA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/missions/italy/list_trailerA -------------------------------------------------------------------------------- /Source/beamLR/missions/italy/list_trailerB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/missions/italy/list_trailerB -------------------------------------------------------------------------------- /Source/beamLR/missions/italy/list_trailerC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/missions/italy/list_trailerC -------------------------------------------------------------------------------- /Source/beamLR/missions/items/gooseneck/list_all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/missions/items/gooseneck/list_all -------------------------------------------------------------------------------- /Source/beamLR/missions/items/small/beer: -------------------------------------------------------------------------------- 1 | name=beamlr.missions.items.small.beer 2 | failg=12.0 3 | -------------------------------------------------------------------------------- /Source/beamLR/missions/items/small/books: -------------------------------------------------------------------------------- 1 | name=beamlr.missions.items.small.books 2 | failg=40.0 3 | -------------------------------------------------------------------------------- /Source/beamLR/missions/items/small/coffee_lid: -------------------------------------------------------------------------------- 1 | name=beamlr.missions.items.small.coffee_lid 2 | failg=6.5 3 | -------------------------------------------------------------------------------- /Source/beamLR/missions/items/small/coffee_nolid: -------------------------------------------------------------------------------- 1 | name=beamlr.missions.items.small.coffee_nolid 2 | failg=2.5 3 | -------------------------------------------------------------------------------- /Source/beamLR/missions/items/small/fastfood: -------------------------------------------------------------------------------- 1 | name=beamlr.missions.items.small.fastfood 2 | failg=9.0 3 | -------------------------------------------------------------------------------- /Source/beamLR/missions/items/small/gameconsoles: -------------------------------------------------------------------------------- 1 | name=beamlr.missions.items.small.gameconsoles 2 | failg=15.0 3 | -------------------------------------------------------------------------------- /Source/beamLR/missions/items/small/list_all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/missions/items/small/list_all -------------------------------------------------------------------------------- /Source/beamLR/missions/items/small/list_food: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/missions/items/small/list_food -------------------------------------------------------------------------------- /Source/beamLR/missions/items/small/monitors: -------------------------------------------------------------------------------- 1 | name=beamlr.missions.items.small.monitors 2 | failg=8.5 3 | -------------------------------------------------------------------------------- /Source/beamLR/missions/items/small/motoroil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/missions/items/small/motoroil -------------------------------------------------------------------------------- /Source/beamLR/missions/items/small/mufflers: -------------------------------------------------------------------------------- 1 | name=beamlr.missions.items.small.mufflers 2 | failg=30.0 3 | -------------------------------------------------------------------------------- /Source/beamLR/missions/items/small/pistons: -------------------------------------------------------------------------------- 1 | name=beamlr.missions.items.small.pistons 2 | failg=40.0 3 | -------------------------------------------------------------------------------- /Source/beamLR/missions/items/small/pizza: -------------------------------------------------------------------------------- 1 | name=beamlr.missions.items.small.pizza 2 | failg=7.5 3 | -------------------------------------------------------------------------------- /Source/beamLR/missions/items/small/powertools: -------------------------------------------------------------------------------- 1 | name=beamlr.missions.items.small.powertools 2 | failg=15.0 3 | -------------------------------------------------------------------------------- /Source/beamLR/missions/items/small/scrapmetal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/missions/items/small/scrapmetal -------------------------------------------------------------------------------- /Source/beamLR/missions/items/small/soda: -------------------------------------------------------------------------------- 1 | name=beamlr.missions.items.small.soda 2 | failg=18.0 3 | -------------------------------------------------------------------------------- /Source/beamLR/missions/items/small/sparkplugs: -------------------------------------------------------------------------------- 1 | name=beamlr.missions.items.small.sparkplugs 2 | failg=60.0 3 | -------------------------------------------------------------------------------- /Source/beamLR/missions/items/small/tools: -------------------------------------------------------------------------------- 1 | name=beamlr.missions.items.small.tools 2 | failg=50.0 3 | -------------------------------------------------------------------------------- /Source/beamLR/missions/items/trailer/list_all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/missions/items/trailer/list_all -------------------------------------------------------------------------------- /Source/beamLR/missions/utah/airfieldDelivery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/missions/utah/airfieldDelivery -------------------------------------------------------------------------------- /Source/beamLR/missions/utah/caravanDelivery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/missions/utah/caravanDelivery -------------------------------------------------------------------------------- /Source/beamLR/missions/utah/list_gooseneck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/missions/utah/list_gooseneck -------------------------------------------------------------------------------- /Source/beamLR/missions/utah/list_small: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/missions/utah/list_small -------------------------------------------------------------------------------- /Source/beamLR/missions/utah/list_trailer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/missions/utah/list_trailer -------------------------------------------------------------------------------- /Source/beamLR/missions/utah/parkingLotDelivery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/missions/utah/parkingLotDelivery -------------------------------------------------------------------------------- /Source/beamLR/missions/utah/rangerCabinDelivery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/missions/utah/rangerCabinDelivery -------------------------------------------------------------------------------- /Source/beamLR/missions/utah/topshopDelivery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/missions/utah/topshopDelivery -------------------------------------------------------------------------------- /Source/beamLR/missions/utah/touristAreaDelivery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/missions/utah/touristAreaDelivery -------------------------------------------------------------------------------- /Source/beamLR/missions/utah/utahGiver0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/missions/utah/utahGiver0 -------------------------------------------------------------------------------- /Source/beamLR/offenseCostData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/offenseCostData -------------------------------------------------------------------------------- /Source/beamLR/offenseNameData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/offenseNameData -------------------------------------------------------------------------------- /Source/beamLR/opnames: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/opnames -------------------------------------------------------------------------------- /Source/beamLR/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/options -------------------------------------------------------------------------------- /Source/beamLR/ownedProperties: -------------------------------------------------------------------------------- 1 | owned=none -------------------------------------------------------------------------------- /Source/beamLR/partCategories: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/partCategories -------------------------------------------------------------------------------- /Source/beamLR/partInventory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/partInventory -------------------------------------------------------------------------------- /Source/beamLR/partprices: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/partprices -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/A: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/A -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/B: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/B -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/C -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/D -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/E: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/E -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/NA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/NA -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/ROH: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/ROH -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/S -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/X: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/X -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/brand/Autobello/B: -------------------------------------------------------------------------------- 1 | /vehicles/autobello/150_track.pc 2 | -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/brand/Autobello/D: -------------------------------------------------------------------------------- 1 | /vehicles/autobello/baja.pc 2 | -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/brand/Autobello/X: -------------------------------------------------------------------------------- 1 | /vehicles/autobello/Drag.pc 2 | -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/brand/Bruckell/A: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/brand/Bruckell/A -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/brand/Bruckell/B: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/brand/Bruckell/B -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/brand/Bruckell/C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/brand/Bruckell/C -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/brand/Bruckell/D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/brand/Bruckell/D -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/brand/Bruckell/E: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/brand/Bruckell/E -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/brand/Bruckell/S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/brand/Bruckell/S -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/brand/Bruckell/X: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/brand/Bruckell/X -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/brand/Burnside/A: -------------------------------------------------------------------------------- 1 | /vehicles/burnside/powerglow.pc 2 | -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/brand/Burnside/B: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/brand/Burnside/B -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/brand/Burnside/C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/brand/Burnside/C -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/brand/Burnside/D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/brand/Burnside/D -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/brand/Burnside/E: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/brand/Burnside/E -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/brand/Burnside/S: -------------------------------------------------------------------------------- 1 | /vehicles/burnside/gasser_late.pc 2 | -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/brand/Burnside/X: -------------------------------------------------------------------------------- 1 | /vehicles/burnside/drag.pc 2 | -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/brand/Cherrier/A: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/brand/Cherrier/A -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/brand/Cherrier/B: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/brand/Cherrier/B -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/brand/Cherrier/S: -------------------------------------------------------------------------------- 1 | /vehicles/vivace/hillclimb_SQ.pc 2 | -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/brand/Civetta/A: -------------------------------------------------------------------------------- 1 | /vehicles/bolide/390gt_strada.pc 2 | -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/brand/Civetta/E: -------------------------------------------------------------------------------- 1 | /vehicles/bolide/gambler.pc 2 | -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/brand/ETK/A: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/brand/ETK/A -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/brand/ETK/B: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/brand/ETK/B -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/brand/ETK/C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/brand/ETK/C -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/brand/ETK/D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/brand/ETK/D -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/brand/ETK/E: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/brand/ETK/E -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/brand/ETK/S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/brand/ETK/S -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/brand/Gavril/A: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/brand/Gavril/A -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/brand/Gavril/B: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/brand/Gavril/B -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/brand/Gavril/C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/brand/Gavril/C -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/brand/Gavril/D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/brand/Gavril/D -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/brand/Gavril/E: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/brand/Gavril/E -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/brand/Gavril/S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/brand/Gavril/S -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/brand/Gavril/X: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/brand/Gavril/X -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/brand/Ibishu/A: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/brand/Ibishu/A -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/brand/Ibishu/B: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/brand/Ibishu/B -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/brand/Ibishu/C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/brand/Ibishu/C -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/brand/Ibishu/D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/brand/Ibishu/D -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/brand/Ibishu/E: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/brand/Ibishu/E -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/brand/Ibishu/S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/brand/Ibishu/S -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/brand/Ibishu/X: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/brand/Ibishu/X -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/brand/SP/A: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/brand/SP/B: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/brand/SP/C: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/brand/SP/S: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/brand/Soliad/A: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/brand/Soliad/A -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/brand/Soliad/B: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/brand/Soliad/B -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/brand/Soliad/C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/brand/Soliad/C -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/brand/Soliad/D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/brand/Soliad/D -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/brand/Soliad/E: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/brand/Soliad/E -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/brand/Soliad/S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/brand/Soliad/S -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/brand/Soliad/X: -------------------------------------------------------------------------------- 1 | /vehicles/lansdale/44_drag_late_M.pc 2 | -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/club/dirt_gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/club/dirt_gold -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/club/dirt_hero: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/club/dirt_hero -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/drivetrain/AWD/X: -------------------------------------------------------------------------------- 1 | /vehicles/lansdale/44_drag_late_M.pc 2 | -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/induction/NA/A: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/induction/NA/A -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/induction/NA/B: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/induction/NA/B -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/induction/NA/C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/induction/NA/C -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/induction/NA/D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/induction/NA/D -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/induction/NA/E: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/induction/NA/E -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/induction/NA/S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/induction/NA/S -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/induction/SC/A: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/induction/SC/A -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/induction/SC/B: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/induction/SC/B -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/induction/SC/C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/induction/SC/C -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/induction/SC/D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/induction/SC/D -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/induction/SC/S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/induction/SC/S -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/induction/SC/X: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/induction/SC/X -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/induction/SC_N2O/C: -------------------------------------------------------------------------------- 1 | /vehicles/burnside/leadsled.pc 2 | -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/induction/Turbo/X: -------------------------------------------------------------------------------- 1 | /vehicles/bolide/topspeed.pc 2 | -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/induction/Turbo_N2O/B: -------------------------------------------------------------------------------- 1 | /vehicles/lansdale/25_tuner_M.pc 2 | -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/induction/Turbo_N2O_tier_mid: -------------------------------------------------------------------------------- 1 | /vehicles/lansdale/25_tuner_M.pc 2 | -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/trackA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/trackA -------------------------------------------------------------------------------- /Source/beamLR/performanceClass/trackS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/performanceClass/trackS -------------------------------------------------------------------------------- /Source/beamLR/pinkslipsBlacklist: -------------------------------------------------------------------------------- 1 | scintilla 2 | bolide 3 | bastion 4 | sbr 5 | etkc 6 | -------------------------------------------------------------------------------- /Source/beamLR/policeTicket: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/policeTicket -------------------------------------------------------------------------------- /Source/beamLR/preferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/preferences -------------------------------------------------------------------------------- /Source/beamLR/races/integrity/bad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/races/integrity/bad -------------------------------------------------------------------------------- /Source/beamLR/races/integrity/good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/races/integrity/good -------------------------------------------------------------------------------- /Source/beamLR/sharedflags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/sharedflags -------------------------------------------------------------------------------- /Source/beamLR/shop/car/autobello_110AM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/autobello_110AM -------------------------------------------------------------------------------- /Source/beamLR/shop/car/autobello_barnfind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/autobello_barnfind -------------------------------------------------------------------------------- /Source/beamLR/shop/car/barstow_232I6M: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/barstow_232I6M -------------------------------------------------------------------------------- /Source/beamLR/shop/car/barstow_awful: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/barstow_awful -------------------------------------------------------------------------------- /Source/beamLR/shop/car/barstow_barnfind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/barstow_barnfind -------------------------------------------------------------------------------- /Source/beamLR/shop/car/barstow_scrapyard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/barstow_scrapyard -------------------------------------------------------------------------------- /Source/beamLR/shop/car/bastion_SE35A: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/bastion_SE35A -------------------------------------------------------------------------------- /Source/beamLR/shop/car/bastion_battlehawkM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/bastion_battlehawkM -------------------------------------------------------------------------------- /Source/beamLR/shop/car/bluebuck_291V8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/bluebuck_291V8 -------------------------------------------------------------------------------- /Source/beamLR/shop/car/bluebuck_barnfind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/bluebuck_barnfind -------------------------------------------------------------------------------- /Source/beamLR/shop/car/bluebuck_horrible: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/bluebuck_horrible -------------------------------------------------------------------------------- /Source/beamLR/shop/car/bolide_350USDM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/bolide_350USDM -------------------------------------------------------------------------------- /Source/beamLR/shop/car/bolide_barnfind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/bolide_barnfind -------------------------------------------------------------------------------- /Source/beamLR/shop/car/burnside_V8M: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/burnside_V8M -------------------------------------------------------------------------------- /Source/beamLR/shop/car/burnside_barnfind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/burnside_barnfind -------------------------------------------------------------------------------- /Source/beamLR/shop/car/bx_200bx_base_M: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/bx_200bx_base_M -------------------------------------------------------------------------------- /Source/beamLR/shop/car/bx_200bx_typeLSM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/bx_200bx_typeLSM -------------------------------------------------------------------------------- /Source/beamLR/shop/car/bx_barnfind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/bx_barnfind -------------------------------------------------------------------------------- /Source/beamLR/shop/car/bx_diana_base_M: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/bx_diana_base_M -------------------------------------------------------------------------------- /Source/beamLR/shop/car/bx_diana_typeLSM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/bx_diana_typeLSM -------------------------------------------------------------------------------- /Source/beamLR/shop/car/bx_old_A: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/bx_old_A -------------------------------------------------------------------------------- /Source/beamLR/shop/car/bx_old_B: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/bx_old_B -------------------------------------------------------------------------------- /Source/beamLR/shop/car/bx_old_C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/bx_old_C -------------------------------------------------------------------------------- /Source/beamLR/shop/car/bx_old_D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/bx_old_D -------------------------------------------------------------------------------- /Source/beamLR/shop/car/bx_scrapyard_A: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/bx_scrapyard_A -------------------------------------------------------------------------------- /Source/beamLR/shop/car/bx_scrapyard_B: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/bx_scrapyard_B -------------------------------------------------------------------------------- /Source/beamLR/shop/car/bx_scrapyard_C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/bx_scrapyard_C -------------------------------------------------------------------------------- /Source/beamLR/shop/car/bx_scrapyard_D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/bx_scrapyard_D -------------------------------------------------------------------------------- /Source/beamLR/shop/car/covet_13SM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/covet_13SM -------------------------------------------------------------------------------- /Source/beamLR/shop/car/covet_barnfind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/covet_barnfind -------------------------------------------------------------------------------- /Source/beamLR/shop/car/covet_pointless: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/covet_pointless -------------------------------------------------------------------------------- /Source/beamLR/shop/car/covet_scrapyard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/covet_scrapyard -------------------------------------------------------------------------------- /Source/beamLR/shop/car/covet_typeLSM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/covet_typeLSM -------------------------------------------------------------------------------- /Source/beamLR/shop/car/etk800_844M_new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/etk800_844M_new -------------------------------------------------------------------------------- /Source/beamLR/shop/car/etk800_844M_used: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/etk800_844M_used -------------------------------------------------------------------------------- /Source/beamLR/shop/car/etk800_854M_new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/etk800_854M_new -------------------------------------------------------------------------------- /Source/beamLR/shop/car/etk800_854M_used: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/etk800_854M_used -------------------------------------------------------------------------------- /Source/beamLR/shop/car/etkc_kc4M: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/etkc_kc4M -------------------------------------------------------------------------------- /Source/beamLR/shop/car/etkc_kc6M: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/etkc_kc6M -------------------------------------------------------------------------------- /Source/beamLR/shop/car/etkc_kc8M: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/etkc_kc8M -------------------------------------------------------------------------------- /Source/beamLR/shop/car/etki_2400M: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/etki_2400M -------------------------------------------------------------------------------- /Source/beamLR/shop/car/etki_2400ti: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/etki_2400ti -------------------------------------------------------------------------------- /Source/beamLR/shop/car/etki_3000ixM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/etki_3000ixM -------------------------------------------------------------------------------- /Source/beamLR/shop/car/etki_barnfind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/etki_barnfind -------------------------------------------------------------------------------- /Source/beamLR/shop/car/etki_scrapyard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/etki_scrapyard -------------------------------------------------------------------------------- /Source/beamLR/shop/car/fullsize_V8A: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/fullsize_V8A -------------------------------------------------------------------------------- /Source/beamLR/shop/car/fullsize_barnfind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/fullsize_barnfind -------------------------------------------------------------------------------- /Source/beamLR/shop/car/fullsize_miserable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/fullsize_miserable -------------------------------------------------------------------------------- /Source/beamLR/shop/car/fullsize_scrapyard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/fullsize_scrapyard -------------------------------------------------------------------------------- /Source/beamLR/shop/car/hopper_XT4A: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/hopper_XT4A -------------------------------------------------------------------------------- /Source/beamLR/shop/car/hopper_scrapyard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/hopper_scrapyard -------------------------------------------------------------------------------- /Source/beamLR/shop/car/lansdale_25baseA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/lansdale_25baseA -------------------------------------------------------------------------------- /Source/beamLR/shop/car/lansdale_putrid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/lansdale_putrid -------------------------------------------------------------------------------- /Source/beamLR/shop/car/lansdale_scrapyard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/lansdale_scrapyard -------------------------------------------------------------------------------- /Source/beamLR/shop/car/legran_atrocious: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/legran_atrocious -------------------------------------------------------------------------------- /Source/beamLR/shop/car/legran_barnfind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/legran_barnfind -------------------------------------------------------------------------------- /Source/beamLR/shop/car/legran_objectionable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/legran_objectionable -------------------------------------------------------------------------------- /Source/beamLR/shop/car/legran_regulierM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/legran_regulierM -------------------------------------------------------------------------------- /Source/beamLR/shop/car/list_barnfind_all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/list_barnfind_all -------------------------------------------------------------------------------- /Source/beamLR/shop/car/list_mixed_all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/list_mixed_all -------------------------------------------------------------------------------- /Source/beamLR/shop/car/list_new_all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/list_new_all -------------------------------------------------------------------------------- /Source/beamLR/shop/car/list_scrap_all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/list_scrap_all -------------------------------------------------------------------------------- /Source/beamLR/shop/car/list_testbug: -------------------------------------------------------------------------------- 1 | testbug -------------------------------------------------------------------------------- /Source/beamLR/shop/car/list_used_all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/list_used_all -------------------------------------------------------------------------------- /Source/beamLR/shop/car/midsize_18dxM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/midsize_18dxM -------------------------------------------------------------------------------- /Source/beamLR/shop/car/midsize_barnfind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/midsize_barnfind -------------------------------------------------------------------------------- /Source/beamLR/shop/car/midsize_unpalatable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/midsize_unpalatable -------------------------------------------------------------------------------- /Source/beamLR/shop/car/miramar_barnfind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/miramar_barnfind -------------------------------------------------------------------------------- /Source/beamLR/shop/car/miramar_baseM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/miramar_baseM -------------------------------------------------------------------------------- /Source/beamLR/shop/car/moonhawk_barnfind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/moonhawk_barnfind -------------------------------------------------------------------------------- /Source/beamLR/shop/car/moonhawk_i6M: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/moonhawk_i6M -------------------------------------------------------------------------------- /Source/beamLR/shop/car/moonhawk_scrapyard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/moonhawk_scrapyard -------------------------------------------------------------------------------- /Source/beamLR/shop/car/moonhawk_terrible: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/moonhawk_terrible -------------------------------------------------------------------------------- /Source/beamLR/shop/car/nine_barnfind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/nine_barnfind -------------------------------------------------------------------------------- /Source/beamLR/shop/car/nine_used: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/nine_used -------------------------------------------------------------------------------- /Source/beamLR/shop/car/pessima_18dxM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/pessima_18dxM -------------------------------------------------------------------------------- /Source/beamLR/shop/car/pessima_barnfind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/pessima_barnfind -------------------------------------------------------------------------------- /Source/beamLR/shop/car/pessima_pessimistic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/pessima_pessimistic -------------------------------------------------------------------------------- /Source/beamLR/shop/car/pessima_scrapyard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/pessima_scrapyard -------------------------------------------------------------------------------- /Source/beamLR/shop/car/pickup_D15V8AWD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/pickup_D15V8AWD -------------------------------------------------------------------------------- /Source/beamLR/shop/car/pickup_D15fleetM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/pickup_D15fleetM -------------------------------------------------------------------------------- /Source/beamLR/shop/car/pickup_barnfind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/pickup_barnfind -------------------------------------------------------------------------------- /Source/beamLR/shop/car/pickup_d35_diesel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/pickup_d35_diesel -------------------------------------------------------------------------------- /Source/beamLR/shop/car/pickup_disappointment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/pickup_disappointment -------------------------------------------------------------------------------- /Source/beamLR/shop/car/pickup_scrapyard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/pickup_scrapyard -------------------------------------------------------------------------------- /Source/beamLR/shop/car/pigeon_baseM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/pigeon_baseM -------------------------------------------------------------------------------- /Source/beamLR/shop/car/roamer_I6M: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/roamer_I6M -------------------------------------------------------------------------------- /Source/beamLR/shop/car/roamer_barnfind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/roamer_barnfind -------------------------------------------------------------------------------- /Source/beamLR/shop/car/roamer_horrendous: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/roamer_horrendous -------------------------------------------------------------------------------- /Source/beamLR/shop/car/roamer_scrapyard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/roamer_scrapyard -------------------------------------------------------------------------------- /Source/beamLR/shop/car/sbr_rwdbaseM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/sbr_rwdbaseM -------------------------------------------------------------------------------- /Source/beamLR/shop/car/scintilla_GT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/scintilla_GT -------------------------------------------------------------------------------- /Source/beamLR/shop/car/scintilla_spyderGTs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/scintilla_spyderGTs -------------------------------------------------------------------------------- /Source/beamLR/shop/car/soliad_3300A: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/soliad_3300A -------------------------------------------------------------------------------- /Source/beamLR/shop/car/soliad_scrapyard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/soliad_scrapyard -------------------------------------------------------------------------------- /Source/beamLR/shop/car/soliad_unpunctual: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/soliad_unpunctual -------------------------------------------------------------------------------- /Source/beamLR/shop/car/sunburst_16M: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/sunburst_16M -------------------------------------------------------------------------------- /Source/beamLR/shop/car/sunburst_16M_wagon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/sunburst_16M_wagon -------------------------------------------------------------------------------- /Source/beamLR/shop/car/sunburst_20sportM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/sunburst_20sportM -------------------------------------------------------------------------------- /Source/beamLR/shop/car/sunburst_scrapyard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/sunburst_scrapyard -------------------------------------------------------------------------------- /Source/beamLR/shop/car/testbug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/testbug -------------------------------------------------------------------------------- /Source/beamLR/shop/car/van_disastrous: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/van_disastrous -------------------------------------------------------------------------------- /Source/beamLR/shop/car/van_h15vanster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/van_h15vanster -------------------------------------------------------------------------------- /Source/beamLR/shop/car/vivace_100M_new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/vivace_100M_new -------------------------------------------------------------------------------- /Source/beamLR/shop/car/vivace_100M_used: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/vivace_100M_used -------------------------------------------------------------------------------- /Source/beamLR/shop/car/vivace_scrapyard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/vivace_scrapyard -------------------------------------------------------------------------------- /Source/beamLR/shop/car/wendover_barnfind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/wendover_barnfind -------------------------------------------------------------------------------- /Source/beamLR/shop/car/wigeon_baseM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/car/wigeon_baseM -------------------------------------------------------------------------------- /Source/beamLR/shop/daydata/eastCoastScrapyard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/daydata/eastCoastScrapyard -------------------------------------------------------------------------------- /Source/beamLR/shop/daydata/italyNewCarShopA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/daydata/italyNewCarShopA -------------------------------------------------------------------------------- /Source/beamLR/shop/daydata/italyScrapyardA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/daydata/italyScrapyardA -------------------------------------------------------------------------------- /Source/beamLR/shop/daydata/italyUsedCarShopA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/daydata/italyUsedCarShopA -------------------------------------------------------------------------------- /Source/beamLR/shop/daydata/italyUsedCarShopB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/daydata/italyUsedCarShopB -------------------------------------------------------------------------------- /Source/beamLR/shop/daydata/utahNewCarShop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/daydata/utahNewCarShop -------------------------------------------------------------------------------- /Source/beamLR/shop/daydata/utahScrapyard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/daydata/utahScrapyard -------------------------------------------------------------------------------- /Source/beamLR/shop/daydata/utahUsedCarShop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/daydata/utahUsedCarShop -------------------------------------------------------------------------------- /Source/beamLR/shop/daydata/westCoastScrapyard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/daydata/westCoastScrapyard -------------------------------------------------------------------------------- /Source/beamLR/shop/eastCoastNewCarShop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/eastCoastNewCarShop -------------------------------------------------------------------------------- /Source/beamLR/shop/eastCoastScrapyard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/eastCoastScrapyard -------------------------------------------------------------------------------- /Source/beamLR/shop/eastCoastUsedCarShop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/eastCoastUsedCarShop -------------------------------------------------------------------------------- /Source/beamLR/shop/italyNewCarShopA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/italyNewCarShopA -------------------------------------------------------------------------------- /Source/beamLR/shop/italyScrapyardA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/italyScrapyardA -------------------------------------------------------------------------------- /Source/beamLR/shop/italyUsedCarShopA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/italyUsedCarShopA -------------------------------------------------------------------------------- /Source/beamLR/shop/italyUsedCarShopB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/italyUsedCarShopB -------------------------------------------------------------------------------- /Source/beamLR/shop/utahNewCarShop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/utahNewCarShop -------------------------------------------------------------------------------- /Source/beamLR/shop/utahScrapyard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/utahScrapyard -------------------------------------------------------------------------------- /Source/beamLR/shop/utahUsedCarShop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/utahUsedCarShop -------------------------------------------------------------------------------- /Source/beamLR/shop/westCoastMixedCarShop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/westCoastMixedCarShop -------------------------------------------------------------------------------- /Source/beamLR/shop/westCoastNewCarShop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/westCoastNewCarShop -------------------------------------------------------------------------------- /Source/beamLR/shop/westCoastScrapyard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/westCoastScrapyard -------------------------------------------------------------------------------- /Source/beamLR/shop/westCoastUsedCarShopA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/westCoastUsedCarShopA -------------------------------------------------------------------------------- /Source/beamLR/shop/westCoastUsedCarShopB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/shop/westCoastUsedCarShopB -------------------------------------------------------------------------------- /Source/beamLR/slotFavorites: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/beamLR/spawngroups/backup/cops.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/spawngroups/backup/cops.json -------------------------------------------------------------------------------- /Source/beamLR/spawngroups/backup/traffic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/spawngroups/backup/traffic.json -------------------------------------------------------------------------------- /Source/beamLR/spawngroups/europe/cops.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/spawngroups/europe/cops.json -------------------------------------------------------------------------------- /Source/beamLR/spawngroups/europe/traffic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/spawngroups/europe/traffic.json -------------------------------------------------------------------------------- /Source/beamLR/spawngroups/europe/trucks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/spawngroups/europe/trucks.json -------------------------------------------------------------------------------- /Source/beamLR/spawngroups/usa/cops.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/spawngroups/usa/cops.json -------------------------------------------------------------------------------- /Source/beamLR/spawngroups/usa/traffic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/spawngroups/usa/traffic.json -------------------------------------------------------------------------------- /Source/beamLR/spawngroups/usa/trucks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/spawngroups/usa/trucks.json -------------------------------------------------------------------------------- /Source/beamLR/trackEventResults: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/beamLR/trackEvents/johnson_ROH: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/trackEvents/johnson_ROH -------------------------------------------------------------------------------- /Source/beamLR/trackEvents/wcusa_derbyA_classD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/trackEvents/wcusa_derbyA_classD -------------------------------------------------------------------------------- /Source/beamLR/trackEvents/wcusa_derbyB_classD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/trackEvents/wcusa_derbyB_classD -------------------------------------------------------------------------------- /Source/beamLR/trackEvents/wcusa_trackA_classA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/trackEvents/wcusa_trackA_classA -------------------------------------------------------------------------------- /Source/beamLR/trackEvents/wcusa_trackA_classB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/trackEvents/wcusa_trackA_classB -------------------------------------------------------------------------------- /Source/beamLR/trackEvents/wcusa_trackA_classC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/trackEvents/wcusa_trackA_classC -------------------------------------------------------------------------------- /Source/beamLR/trackEvents/wcusa_trackA_classD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/trackEvents/wcusa_trackA_classD -------------------------------------------------------------------------------- /Source/beamLR/trackEvents/wcusa_trackA_classS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/trackEvents/wcusa_trackA_classS -------------------------------------------------------------------------------- /Source/beamLR/trackEvents/wcusa_trackB_classA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/trackEvents/wcusa_trackB_classA -------------------------------------------------------------------------------- /Source/beamLR/trackEvents/wcusa_trackB_classB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/trackEvents/wcusa_trackB_classB -------------------------------------------------------------------------------- /Source/beamLR/trackEvents/wcusa_trackB_classC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/trackEvents/wcusa_trackB_classC -------------------------------------------------------------------------------- /Source/beamLR/trackEvents/wcusa_trackB_classD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/trackEvents/wcusa_trackB_classD -------------------------------------------------------------------------------- /Source/beamLR/trackEvents/wcusa_trackB_classS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/trackEvents/wcusa_trackB_classS -------------------------------------------------------------------------------- /Source/beamLR/trackEvents/wcusa_trackC_classA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/trackEvents/wcusa_trackC_classA -------------------------------------------------------------------------------- /Source/beamLR/trackEvents/wcusa_trackC_classB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/trackEvents/wcusa_trackC_classB -------------------------------------------------------------------------------- /Source/beamLR/trackEvents/wcusa_trackC_classC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/trackEvents/wcusa_trackC_classC -------------------------------------------------------------------------------- /Source/beamLR/trackEvents/wcusa_trackC_classD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/trackEvents/wcusa_trackC_classD -------------------------------------------------------------------------------- /Source/beamLR/trackEvents/wcusa_trackC_classS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/beamLR/trackEvents/wcusa_trackC_classS -------------------------------------------------------------------------------- /Source/beamLR/usedPartDayData: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/levels/automation_test_track/main/MissionGroup/AIDecalWaypointsGroup/items.level.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/levels/automation_test_track/main/MissionGroup/Audio/Wind/items.level.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/levels/east_coast_usa/main.decals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/levels/east_coast_usa/main.decals.json -------------------------------------------------------------------------------- /Source/levels/east_coast_usa/main/MissionGroup/Audio/Wind/items.level.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/levels/east_coast_usa/main/MissionGroup/Cliff_tool/prefab_unpacked/items.level.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/levels/east_coast_usa/main/MissionGroup/Cliff_tool/prefab_unpacked5/items.level.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/levels/hirochi_raceway/main/MissionGroup/Audio/Amb_2D/items.level.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/levels/hirochi_raceway/main/MissionGroup/Audio/Amb_3D/items.level.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/levels/hirochi_raceway/main/MissionGroup/Water/items.level.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/levels/italy/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/levels/italy/info.json -------------------------------------------------------------------------------- /Source/levels/italy/main.decals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/levels/italy/main.decals.json -------------------------------------------------------------------------------- /Source/levels/italy/main/MissionGroup/Audio/Wind/items.level.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/levels/italy/main/MissionGroup/decalroads/temporary/items.level.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/levels/italy/main/MissionGroup/roads/airport_parking_2/items.level.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/levels/italy/main/MissionGroup/roads/airport_wear_overlays/items.level.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/levels/italy/main/MissionGroup/static_stuff/construction_1/prefab_unpacked/items.level.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/levels/italy/main/MissionGroup/static_stuff/lights_boxes_traffic_lights/items.level.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/levels/italy/main/items.level.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/levels/italy/main/items.level.json -------------------------------------------------------------------------------- /Source/levels/italy/spawn_beamlr_preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/levels/italy/spawn_beamlr_preview.jpg -------------------------------------------------------------------------------- /Source/levels/johnson_valley/main.decals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/levels/johnson_valley/main.decals.json -------------------------------------------------------------------------------- /Source/levels/johnson_valley/main/MissionGroup/Audio/Amb_3D/items.level.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/levels/johnson_valley/main/MissionGroup/Audio/Snapshots/items.level.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/levels/johnson_valley/main/MissionGroup/event_city/event_city_track_props/road_meshes/items.level.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/levels/johnson_valley/main/MissionGroup/jv_crawling_trails_internal/trail_035/trail_035_decalroads/items.level.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/levels/johnson_valley/main/MissionGroup/level_object/volume/items.level.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/levels/utah/main.decals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/levels/utah/main.decals.json -------------------------------------------------------------------------------- /Source/levels/utah/main/MissionGroup/AIDecalWaypointsGroup/items.level.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/levels/utah/main/MissionGroup/AIWaypointsGroup/items.level.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/levels/utah/main/MissionGroup/ai_roads/tunnel_ai_roads/items.level.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/levels/utah/main/MissionGroup/mines/mines_ai_paths/items.level.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/levels/utah/main/items.level.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/levels/utah/main/items.level.json -------------------------------------------------------------------------------- /Source/levels/west_coast_usa/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/levels/west_coast_usa/info.json -------------------------------------------------------------------------------- /Source/levels/west_coast_usa/main.decals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/levels/west_coast_usa/main.decals.json -------------------------------------------------------------------------------- /Source/levels/west_coast_usa/main/MissionGroup/Audio/Wind/items.level.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/levels/west_coast_usa/main/MissionGroup/BeamLR/track/TrackPrefabs/items.level.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/levels/west_coast_usa/main/MissionGroup/StaticObjects/garbage_west_coast_unpacked/items.level.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/levels/west_coast_usa/main/MissionGroup/fuel_stations/fuel_station_2/fs_2_dynamic_pricing/items.level.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/levels/west_coast_usa/main/MissionGroup/fuel_stations/fuel_station_6/fs_6_decalroads/items.level.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/levels/west_coast_usa/main/MissionGroup/island/island_zones/items.level.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/levels/west_coast_usa/main/MissionGroup/island_shippingYard/frontFences/items.level.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/levels/west_coast_usa/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/levels/west_coast_usa/map.json -------------------------------------------------------------------------------- /Source/lua/common/extensions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/lua/common/extensions.lua -------------------------------------------------------------------------------- /Source/lua/common/extensions/blrflags.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/lua/common/extensions/blrflags.lua -------------------------------------------------------------------------------- /Source/lua/common/jbeam/io.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/lua/common/jbeam/io.lua -------------------------------------------------------------------------------- /Source/lua/common/jbeam/optimization.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/lua/common/jbeam/optimization.lua -------------------------------------------------------------------------------- /Source/lua/ge/extensions/blrBarnFind.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/lua/ge/extensions/blrBarnFind.lua -------------------------------------------------------------------------------- /Source/lua/ge/extensions/blrCarMeet.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/lua/ge/extensions/blrCarMeet.lua -------------------------------------------------------------------------------- /Source/lua/ge/extensions/blrItemInventory.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/lua/ge/extensions/blrItemInventory.lua -------------------------------------------------------------------------------- /Source/lua/ge/extensions/blrLightManager.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/lua/ge/extensions/blrLightManager.lua -------------------------------------------------------------------------------- /Source/lua/ge/extensions/blrPartInventory.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/lua/ge/extensions/blrPartInventory.lua -------------------------------------------------------------------------------- /Source/lua/ge/extensions/blrRaceManager.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/lua/ge/extensions/blrRaceManager.lua -------------------------------------------------------------------------------- /Source/lua/ge/extensions/blrShopVehUtil.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/lua/ge/extensions/blrShopVehUtil.lua -------------------------------------------------------------------------------- /Source/lua/ge/extensions/blrSlotTree.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/lua/ge/extensions/blrSlotTree.lua -------------------------------------------------------------------------------- /Source/lua/ge/extensions/blrdecals.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/lua/ge/extensions/blrdecals.lua -------------------------------------------------------------------------------- /Source/lua/ge/extensions/blrdelay.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/lua/ge/extensions/blrdelay.lua -------------------------------------------------------------------------------- /Source/lua/ge/extensions/blrdragdisplay.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/lua/ge/extensions/blrdragdisplay.lua -------------------------------------------------------------------------------- /Source/lua/ge/extensions/blrfade.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/lua/ge/extensions/blrfade.lua -------------------------------------------------------------------------------- /Source/lua/ge/extensions/blrglobals.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/lua/ge/extensions/blrglobals.lua -------------------------------------------------------------------------------- /Source/lua/ge/extensions/blrhooks.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/lua/ge/extensions/blrhooks.lua -------------------------------------------------------------------------------- /Source/lua/ge/extensions/blrimgui.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/lua/ge/extensions/blrimgui.lua -------------------------------------------------------------------------------- /Source/lua/ge/extensions/blrlocales.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/lua/ge/extensions/blrlocales.lua -------------------------------------------------------------------------------- /Source/lua/ge/extensions/blroverlay.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/lua/ge/extensions/blroverlay.lua -------------------------------------------------------------------------------- /Source/lua/ge/extensions/blrpartmgmt.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/lua/ge/extensions/blrpartmgmt.lua -------------------------------------------------------------------------------- /Source/lua/ge/extensions/blrtriggers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/lua/ge/extensions/blrtriggers.lua -------------------------------------------------------------------------------- /Source/lua/ge/extensions/blrutils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/lua/ge/extensions/blrutils.lua -------------------------------------------------------------------------------- /Source/lua/ge/extensions/customGuiStream.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/lua/ge/extensions/customGuiStream.lua -------------------------------------------------------------------------------- /Source/lua/ge/extensions/mechDamageLoader.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/lua/ge/extensions/mechDamageLoader.lua -------------------------------------------------------------------------------- /Source/lua/ge/extensions/modorderutil.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/lua/ge/extensions/modorderutil.lua -------------------------------------------------------------------------------- /Source/lua/ge/extensions/vluaBlockingCall.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/lua/ge/extensions/vluaBlockingCall.lua -------------------------------------------------------------------------------- /Source/lua/ge/extensions/vluaFetchModule.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/lua/ge/extensions/vluaFetchModule.lua -------------------------------------------------------------------------------- /Source/lua/vehicle/beamstate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/lua/vehicle/beamstate.lua -------------------------------------------------------------------------------- /Source/lua/vehicle/jbeam/stage2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/lua/vehicle/jbeam/stage2.lua -------------------------------------------------------------------------------- /Source/ui/modules/apps/beamlrdriftui/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/ui/modules/apps/beamlrdriftui/app.html -------------------------------------------------------------------------------- /Source/ui/modules/apps/beamlrdriftui/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/ui/modules/apps/beamlrdriftui/app.js -------------------------------------------------------------------------------- /Source/ui/modules/apps/beamlrdriftui/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/ui/modules/apps/beamlrdriftui/app.json -------------------------------------------------------------------------------- /Source/ui/modules/apps/beamlrdriftui/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/ui/modules/apps/beamlrdriftui/app.png -------------------------------------------------------------------------------- /Source/ui/modules/apps/beamlrgpsui/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/ui/modules/apps/beamlrgpsui/app.html -------------------------------------------------------------------------------- /Source/ui/modules/apps/beamlrgpsui/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/ui/modules/apps/beamlrgpsui/app.js -------------------------------------------------------------------------------- /Source/ui/modules/apps/beamlrgpsui/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/ui/modules/apps/beamlrgpsui/app.json -------------------------------------------------------------------------------- /Source/ui/modules/apps/beamlrgpsui/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/ui/modules/apps/beamlrgpsui/app.png -------------------------------------------------------------------------------- /Source/ui/modules/apps/beamlrmirrorsui/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/ui/modules/apps/beamlrmirrorsui/app.js -------------------------------------------------------------------------------- /Source/ui/modules/apps/beamlrpartshop/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/ui/modules/apps/beamlrpartshop/app.js -------------------------------------------------------------------------------- /Source/ui/modules/apps/beamlrpartshop/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/ui/modules/apps/beamlrpartshop/app.png -------------------------------------------------------------------------------- /Source/ui/modules/apps/beamlrperfui/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/ui/modules/apps/beamlrperfui/app.html -------------------------------------------------------------------------------- /Source/ui/modules/apps/beamlrperfui/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/ui/modules/apps/beamlrperfui/app.js -------------------------------------------------------------------------------- /Source/ui/modules/apps/beamlrperfui/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/ui/modules/apps/beamlrperfui/app.json -------------------------------------------------------------------------------- /Source/ui/modules/apps/beamlrperfui/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/ui/modules/apps/beamlrperfui/app.png -------------------------------------------------------------------------------- /Source/ui/modules/apps/beamlrrepairui/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/ui/modules/apps/beamlrrepairui/app.js -------------------------------------------------------------------------------- /Source/ui/modules/apps/beamlrrepairui/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/ui/modules/apps/beamlrrepairui/app.png -------------------------------------------------------------------------------- /Source/ui/modules/apps/beamlrtimer/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/ui/modules/apps/beamlrtimer/app.html -------------------------------------------------------------------------------- /Source/ui/modules/apps/beamlrtimer/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/ui/modules/apps/beamlrtimer/app.js -------------------------------------------------------------------------------- /Source/ui/modules/apps/beamlrtimer/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/ui/modules/apps/beamlrtimer/app.json -------------------------------------------------------------------------------- /Source/ui/modules/apps/beamlrtimer/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/ui/modules/apps/beamlrtimer/app.png -------------------------------------------------------------------------------- /Source/ui/modules/apps/beamlrtowui/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/ui/modules/apps/beamlrtowui/app.html -------------------------------------------------------------------------------- /Source/ui/modules/apps/beamlrtowui/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/ui/modules/apps/beamlrtowui/app.js -------------------------------------------------------------------------------- /Source/ui/modules/apps/beamlrtowui/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/ui/modules/apps/beamlrtowui/app.json -------------------------------------------------------------------------------- /Source/ui/modules/apps/beamlrtowui/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/ui/modules/apps/beamlrtowui/app.png -------------------------------------------------------------------------------- /Source/ui/modules/apps/beamlrui/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/ui/modules/apps/beamlrui/app.html -------------------------------------------------------------------------------- /Source/ui/modules/apps/beamlrui/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/ui/modules/apps/beamlrui/app.js -------------------------------------------------------------------------------- /Source/ui/modules/apps/beamlrui/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/ui/modules/apps/beamlrui/app.json -------------------------------------------------------------------------------- /Source/ui/modules/apps/beamlrui/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/ui/modules/apps/beamlrui/app.png -------------------------------------------------------------------------------- /Source/vehicles/autobello/blr_barnfind.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/autobello/blr_barnfind.jpg -------------------------------------------------------------------------------- /Source/vehicles/autobello/blr_barnfind.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/autobello/blr_barnfind.pc -------------------------------------------------------------------------------- /Source/vehicles/barstow/blr_barnfind.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/barstow/blr_barnfind.jpg -------------------------------------------------------------------------------- /Source/vehicles/barstow/blr_barnfind.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/barstow/blr_barnfind.pc -------------------------------------------------------------------------------- /Source/vehicles/barstow/blr_roh_barstow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/barstow/blr_roh_barstow.jpg -------------------------------------------------------------------------------- /Source/vehicles/barstow/blr_roh_barstow.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/barstow/blr_roh_barstow.pc -------------------------------------------------------------------------------- /Source/vehicles/barstow/blr_scrapyard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/barstow/blr_scrapyard.jpg -------------------------------------------------------------------------------- /Source/vehicles/barstow/blr_scrapyard.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/barstow/blr_scrapyard.pc -------------------------------------------------------------------------------- /Source/vehicles/bastion/blr_roh_bastion.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/bastion/blr_roh_bastion.jpg -------------------------------------------------------------------------------- /Source/vehicles/bastion/blr_roh_bastion.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/bastion/blr_roh_bastion.pc -------------------------------------------------------------------------------- /Source/vehicles/bastion/blr_track.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/bastion/blr_track.jpg -------------------------------------------------------------------------------- /Source/vehicles/bastion/blr_track.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/bastion/blr_track.pc -------------------------------------------------------------------------------- /Source/vehicles/bluebuck/blr_barnfind.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/bluebuck/blr_barnfind.jpg -------------------------------------------------------------------------------- /Source/vehicles/bluebuck/blr_barnfind.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/bluebuck/blr_barnfind.pc -------------------------------------------------------------------------------- /Source/vehicles/bluebuck/blr_roh_burnside.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/bluebuck/blr_roh_burnside.jpg -------------------------------------------------------------------------------- /Source/vehicles/bluebuck/blr_roh_burnside.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/bluebuck/blr_roh_burnside.pc -------------------------------------------------------------------------------- /Source/vehicles/bluebuck/blr_starter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/bluebuck/blr_starter.jpg -------------------------------------------------------------------------------- /Source/vehicles/bluebuck/blr_starter.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/bluebuck/blr_starter.pc -------------------------------------------------------------------------------- /Source/vehicles/bolide/blr_barnfind.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/bolide/blr_barnfind.jpg -------------------------------------------------------------------------------- /Source/vehicles/bolide/blr_barnfind.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/bolide/blr_barnfind.pc -------------------------------------------------------------------------------- /Source/vehicles/bolide/blr_roh_bolide.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/bolide/blr_roh_bolide.jpg -------------------------------------------------------------------------------- /Source/vehicles/bolide/blr_roh_bolide.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/bolide/blr_roh_bolide.pc -------------------------------------------------------------------------------- /Source/vehicles/burnside/blr_starter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/burnside/blr_starter.jpg -------------------------------------------------------------------------------- /Source/vehicles/burnside/blr_starter.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/burnside/blr_starter.pc -------------------------------------------------------------------------------- /Source/vehicles/bx/blr_200bx_old_A.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/bx/blr_200bx_old_A.jpg -------------------------------------------------------------------------------- /Source/vehicles/bx/blr_200bx_old_A.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/bx/blr_200bx_old_A.pc -------------------------------------------------------------------------------- /Source/vehicles/bx/blr_200bx_old_B.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/bx/blr_200bx_old_B.jpg -------------------------------------------------------------------------------- /Source/vehicles/bx/blr_200bx_old_B.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/bx/blr_200bx_old_B.pc -------------------------------------------------------------------------------- /Source/vehicles/bx/blr_200bx_old_C.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/bx/blr_200bx_old_C.jpg -------------------------------------------------------------------------------- /Source/vehicles/bx/blr_200bx_old_C.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/bx/blr_200bx_old_C.pc -------------------------------------------------------------------------------- /Source/vehicles/bx/blr_200bx_old_D.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/bx/blr_200bx_old_D.jpg -------------------------------------------------------------------------------- /Source/vehicles/bx/blr_200bx_old_D.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/bx/blr_200bx_old_D.pc -------------------------------------------------------------------------------- /Source/vehicles/bx/blr_200bx_scrapyard_A.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/bx/blr_200bx_scrapyard_A.jpg -------------------------------------------------------------------------------- /Source/vehicles/bx/blr_200bx_scrapyard_A.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/bx/blr_200bx_scrapyard_A.pc -------------------------------------------------------------------------------- /Source/vehicles/bx/blr_200bx_scrapyard_B.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/bx/blr_200bx_scrapyard_B.jpg -------------------------------------------------------------------------------- /Source/vehicles/bx/blr_200bx_scrapyard_B.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/bx/blr_200bx_scrapyard_B.pc -------------------------------------------------------------------------------- /Source/vehicles/bx/blr_200bx_scrapyard_C.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/bx/blr_200bx_scrapyard_C.jpg -------------------------------------------------------------------------------- /Source/vehicles/bx/blr_200bx_scrapyard_C.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/bx/blr_200bx_scrapyard_C.pc -------------------------------------------------------------------------------- /Source/vehicles/bx/blr_200bx_scrapyard_D.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/bx/blr_200bx_scrapyard_D.jpg -------------------------------------------------------------------------------- /Source/vehicles/bx/blr_200bx_scrapyard_D.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/bx/blr_200bx_scrapyard_D.pc -------------------------------------------------------------------------------- /Source/vehicles/bx/blr_barnfind.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/bx/blr_barnfind.jpg -------------------------------------------------------------------------------- /Source/vehicles/bx/blr_barnfind.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/bx/blr_barnfind.pc -------------------------------------------------------------------------------- /Source/vehicles/bx/blr_roh_200bx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/bx/blr_roh_200bx.jpg -------------------------------------------------------------------------------- /Source/vehicles/bx/blr_roh_200bx.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/bx/blr_roh_200bx.pc -------------------------------------------------------------------------------- /Source/vehicles/bx/blr_roh_diana.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/bx/blr_roh_diana.jpg -------------------------------------------------------------------------------- /Source/vehicles/bx/blr_roh_diana.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/bx/blr_roh_diana.pc -------------------------------------------------------------------------------- /Source/vehicles/covet/blr_barnfind.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/covet/blr_barnfind.jpg -------------------------------------------------------------------------------- /Source/vehicles/covet/blr_barnfind.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/covet/blr_barnfind.pc -------------------------------------------------------------------------------- /Source/vehicles/covet/blr_roh_covet_front.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/covet/blr_roh_covet_front.jpg -------------------------------------------------------------------------------- /Source/vehicles/covet/blr_roh_covet_front.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/covet/blr_roh_covet_front.pc -------------------------------------------------------------------------------- /Source/vehicles/covet/blr_scrapyard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/covet/blr_scrapyard.jpg -------------------------------------------------------------------------------- /Source/vehicles/covet/blr_scrapyard.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/covet/blr_scrapyard.pc -------------------------------------------------------------------------------- /Source/vehicles/etk800/blr_roh_etk800.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/etk800/blr_roh_etk800.jpg -------------------------------------------------------------------------------- /Source/vehicles/etk800/blr_roh_etk800.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/etk800/blr_roh_etk800.pc -------------------------------------------------------------------------------- /Source/vehicles/etk800/blr_roh_etk800_alt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/etk800/blr_roh_etk800_alt.jpg -------------------------------------------------------------------------------- /Source/vehicles/etk800/blr_roh_etk800_alt.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/etk800/blr_roh_etk800_alt.pc -------------------------------------------------------------------------------- /Source/vehicles/etkc/blr_roh_etkc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/etkc/blr_roh_etkc.jpg -------------------------------------------------------------------------------- /Source/vehicles/etkc/blr_roh_etkc.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/etkc/blr_roh_etkc.pc -------------------------------------------------------------------------------- /Source/vehicles/etki/blr_barnfind.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/etki/blr_barnfind.jpg -------------------------------------------------------------------------------- /Source/vehicles/etki/blr_barnfind.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/etki/blr_barnfind.pc -------------------------------------------------------------------------------- /Source/vehicles/etki/blr_scrapyard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/etki/blr_scrapyard.jpg -------------------------------------------------------------------------------- /Source/vehicles/etki/blr_scrapyard.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/etki/blr_scrapyard.pc -------------------------------------------------------------------------------- /Source/vehicles/fullsize/blr_barnfind.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/fullsize/blr_barnfind.jpg -------------------------------------------------------------------------------- /Source/vehicles/fullsize/blr_barnfind.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/fullsize/blr_barnfind.pc -------------------------------------------------------------------------------- /Source/vehicles/fullsize/blr_scrapyard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/fullsize/blr_scrapyard.jpg -------------------------------------------------------------------------------- /Source/vehicles/fullsize/blr_scrapyard.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/fullsize/blr_scrapyard.pc -------------------------------------------------------------------------------- /Source/vehicles/hopper/blr_roh_hopper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/hopper/blr_roh_hopper.jpg -------------------------------------------------------------------------------- /Source/vehicles/hopper/blr_roh_hopper.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/hopper/blr_roh_hopper.pc -------------------------------------------------------------------------------- /Source/vehicles/hopper/blr_scrapyard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/hopper/blr_scrapyard.jpg -------------------------------------------------------------------------------- /Source/vehicles/hopper/blr_scrapyard.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/hopper/blr_scrapyard.pc -------------------------------------------------------------------------------- /Source/vehicles/lansdale/blr_roh_lansdale.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/lansdale/blr_roh_lansdale.jpg -------------------------------------------------------------------------------- /Source/vehicles/lansdale/blr_roh_lansdale.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/lansdale/blr_roh_lansdale.pc -------------------------------------------------------------------------------- /Source/vehicles/lansdale/blr_scrapyard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/lansdale/blr_scrapyard.jpg -------------------------------------------------------------------------------- /Source/vehicles/lansdale/blr_scrapyard.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/lansdale/blr_scrapyard.pc -------------------------------------------------------------------------------- /Source/vehicles/lansdale/blr_starter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/lansdale/blr_starter.jpg -------------------------------------------------------------------------------- /Source/vehicles/lansdale/blr_starter.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/lansdale/blr_starter.pc -------------------------------------------------------------------------------- /Source/vehicles/legran/blr_barnfind.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/legran/blr_barnfind.jpg -------------------------------------------------------------------------------- /Source/vehicles/legran/blr_barnfind.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/legran/blr_barnfind.pc -------------------------------------------------------------------------------- /Source/vehicles/legran/blr_starter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/legran/blr_starter.jpg -------------------------------------------------------------------------------- /Source/vehicles/legran/blr_starter.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/legran/blr_starter.pc -------------------------------------------------------------------------------- /Source/vehicles/midsize/blr_barnfind.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/midsize/blr_barnfind.jpg -------------------------------------------------------------------------------- /Source/vehicles/midsize/blr_barnfind.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/midsize/blr_barnfind.pc -------------------------------------------------------------------------------- /Source/vehicles/midsize/blr_roh_midsize.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/midsize/blr_roh_midsize.jpg -------------------------------------------------------------------------------- /Source/vehicles/midsize/blr_roh_midsize.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/midsize/blr_roh_midsize.pc -------------------------------------------------------------------------------- /Source/vehicles/miramar/blr_barnfind.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/miramar/blr_barnfind.jpg -------------------------------------------------------------------------------- /Source/vehicles/miramar/blr_barnfind.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/miramar/blr_barnfind.pc -------------------------------------------------------------------------------- /Source/vehicles/miramar/blr_starter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/miramar/blr_starter.jpg -------------------------------------------------------------------------------- /Source/vehicles/miramar/blr_starter.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/miramar/blr_starter.pc -------------------------------------------------------------------------------- /Source/vehicles/moonhawk/blr_barnfind.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/moonhawk/blr_barnfind.jpg -------------------------------------------------------------------------------- /Source/vehicles/moonhawk/blr_barnfind.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/moonhawk/blr_barnfind.pc -------------------------------------------------------------------------------- /Source/vehicles/moonhawk/blr_roh_moonhawk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/moonhawk/blr_roh_moonhawk.jpg -------------------------------------------------------------------------------- /Source/vehicles/moonhawk/blr_roh_moonhawk.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/moonhawk/blr_roh_moonhawk.pc -------------------------------------------------------------------------------- /Source/vehicles/moonhawk/blr_scrapyard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/moonhawk/blr_scrapyard.jpg -------------------------------------------------------------------------------- /Source/vehicles/moonhawk/blr_scrapyard.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/moonhawk/blr_scrapyard.pc -------------------------------------------------------------------------------- /Source/vehicles/nine/blr_barnfind.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/nine/blr_barnfind.jpg -------------------------------------------------------------------------------- /Source/vehicles/nine/blr_barnfind.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/nine/blr_barnfind.pc -------------------------------------------------------------------------------- /Source/vehicles/nine/blr_roh_nine.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/nine/blr_roh_nine.jpg -------------------------------------------------------------------------------- /Source/vehicles/nine/blr_roh_nine.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/nine/blr_roh_nine.pc -------------------------------------------------------------------------------- /Source/vehicles/nine/blr_starter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/nine/blr_starter.jpg -------------------------------------------------------------------------------- /Source/vehicles/nine/blr_starter.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/nine/blr_starter.pc -------------------------------------------------------------------------------- /Source/vehicles/pessima/blr_barnfind.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/pessima/blr_barnfind.jpg -------------------------------------------------------------------------------- /Source/vehicles/pessima/blr_barnfind.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/pessima/blr_barnfind.pc -------------------------------------------------------------------------------- /Source/vehicles/pessima/blr_roh_pessima.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/pessima/blr_roh_pessima.jpg -------------------------------------------------------------------------------- /Source/vehicles/pessima/blr_roh_pessima.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/pessima/blr_roh_pessima.pc -------------------------------------------------------------------------------- /Source/vehicles/pessima/blr_scrapyard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/pessima/blr_scrapyard.jpg -------------------------------------------------------------------------------- /Source/vehicles/pessima/blr_scrapyard.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/pessima/blr_scrapyard.pc -------------------------------------------------------------------------------- /Source/vehicles/pickup/blr_barnfind.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/pickup/blr_barnfind.jpg -------------------------------------------------------------------------------- /Source/vehicles/pickup/blr_barnfind.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/pickup/blr_barnfind.pc -------------------------------------------------------------------------------- /Source/vehicles/pickup/blr_roh_pickup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/pickup/blr_roh_pickup.jpg -------------------------------------------------------------------------------- /Source/vehicles/pickup/blr_roh_pickup.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/pickup/blr_roh_pickup.pc -------------------------------------------------------------------------------- /Source/vehicles/pickup/blr_scrapyard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/pickup/blr_scrapyard.jpg -------------------------------------------------------------------------------- /Source/vehicles/pickup/blr_scrapyard.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/pickup/blr_scrapyard.pc -------------------------------------------------------------------------------- /Source/vehicles/pickup/blr_starter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/pickup/blr_starter.jpg -------------------------------------------------------------------------------- /Source/vehicles/pickup/blr_starter.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/pickup/blr_starter.pc -------------------------------------------------------------------------------- /Source/vehicles/roamer/blr_roh_roamer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/roamer/blr_roh_roamer.jpg -------------------------------------------------------------------------------- /Source/vehicles/roamer/blr_roh_roamer.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/roamer/blr_roh_roamer.pc -------------------------------------------------------------------------------- /Source/vehicles/roamer/blr_scrapyard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/roamer/blr_scrapyard.jpg -------------------------------------------------------------------------------- /Source/vehicles/roamer/blr_scrapyard.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/roamer/blr_scrapyard.pc -------------------------------------------------------------------------------- /Source/vehicles/sbr/blr_roh_sbr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/sbr/blr_roh_sbr.jpg -------------------------------------------------------------------------------- /Source/vehicles/sbr/blr_roh_sbr.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/sbr/blr_roh_sbr.pc -------------------------------------------------------------------------------- /Source/vehicles/sunburst2/blr_drag.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/sunburst2/blr_drag.jpg -------------------------------------------------------------------------------- /Source/vehicles/sunburst2/blr_drag.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/sunburst2/blr_drag.pc -------------------------------------------------------------------------------- /Source/vehicles/sunburst2/blr_roh_sunburst.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/sunburst2/blr_roh_sunburst.pc -------------------------------------------------------------------------------- /Source/vehicles/sunburst2/blr_scrapyard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/sunburst2/blr_scrapyard.jpg -------------------------------------------------------------------------------- /Source/vehicles/sunburst2/blr_scrapyard.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/sunburst2/blr_scrapyard.pc -------------------------------------------------------------------------------- /Source/vehicles/van/blr_roh_van.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/van/blr_roh_van.jpg -------------------------------------------------------------------------------- /Source/vehicles/van/blr_roh_van.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/van/blr_roh_van.pc -------------------------------------------------------------------------------- /Source/vehicles/vivace/blr_roh_vivace.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/vivace/blr_roh_vivace.jpg -------------------------------------------------------------------------------- /Source/vehicles/vivace/blr_roh_vivace.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/vivace/blr_roh_vivace.pc -------------------------------------------------------------------------------- /Source/vehicles/vivace/blr_scrapyard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/vivace/blr_scrapyard.jpg -------------------------------------------------------------------------------- /Source/vehicles/vivace/blr_scrapyard.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/vivace/blr_scrapyard.pc -------------------------------------------------------------------------------- /Source/vehicles/wendover/blr_barnfind.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/wendover/blr_barnfind.jpg -------------------------------------------------------------------------------- /Source/vehicles/wendover/blr_barnfind.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/wendover/blr_barnfind.pc -------------------------------------------------------------------------------- /Source/vehicles/wendover/blr_roh_wendover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/wendover/blr_roh_wendover.jpg -------------------------------------------------------------------------------- /Source/vehicles/wendover/blr_roh_wendover.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/wendover/blr_roh_wendover.pc -------------------------------------------------------------------------------- /Source/vehicles/wendover/blr_scrapyard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/wendover/blr_scrapyard.jpg -------------------------------------------------------------------------------- /Source/vehicles/wendover/blr_scrapyard.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Source/vehicles/wendover/blr_scrapyard.pc -------------------------------------------------------------------------------- /Tutorials/Adding New Missions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Tutorials/Adding New Missions.md -------------------------------------------------------------------------------- /Tutorials/Adding New Races.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Tutorials/Adding New Races.md -------------------------------------------------------------------------------- /Tutorials/Adding Shop Vehicles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Tutorials/Adding Shop Vehicles.md -------------------------------------------------------------------------------- /Tutorials/Miscellaneous Modding & Cheats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Tutorials/Miscellaneous Modding & Cheats.md -------------------------------------------------------------------------------- /Tutorials/Part Images Guide/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Tutorials/Part Images Guide/README.md -------------------------------------------------------------------------------- /Tutorials/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Tutorials/README.md -------------------------------------------------------------------------------- /Tutorials/UI Modding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/Tutorials/UI Modding.md -------------------------------------------------------------------------------- /automationmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/automationmap.md -------------------------------------------------------------------------------- /eastcoastmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/eastcoastmap.md -------------------------------------------------------------------------------- /hirochimap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/hirochimap.md -------------------------------------------------------------------------------- /issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/issue_template.md -------------------------------------------------------------------------------- /italymap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/italymap.md -------------------------------------------------------------------------------- /map_johnson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/map_johnson.md -------------------------------------------------------------------------------- /map_ks_nord.md: -------------------------------------------------------------------------------- 1 | # Nürburgring Nordschleife Map 2 | ![nord1](https://i.imgur.com/WqdpRov.png) -------------------------------------------------------------------------------- /troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/troubleshooting.md -------------------------------------------------------------------------------- /utahmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/utahmap.md -------------------------------------------------------------------------------- /valocitymap.md: -------------------------------------------------------------------------------- 1 | # Valo City Map 2 | ![valo1](https://i.imgur.com/3KO3GBp.png) 3 | -------------------------------------------------------------------------------- /westcoastmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3eckon/BNG-BeamLegalRacing/HEAD/westcoastmap.md --------------------------------------------------------------------------------