|  |  | @@ -95,6 +95,19 @@ scenes["EVERY VIEW AAAAA"] = () => { | 
		
	
		
			
			|  |  |  | } | 
		
	
		
			
			|  |  |  | 
 | 
		
	
		
			
			|  |  |  | 
 | 
		
	
		
			
			|  |  |  | function makeViewsScene(constructor) { | 
		
	
		
			
			|  |  |  | return () => { | 
		
	
		
			
			|  |  |  | Object.keys(constructor.constructor().views).forEach(view => { | 
		
	
		
			
			|  |  |  | if (view.indexOf("Northwest") >= 0) { | 
		
	
		
			
			|  |  |  | const entity = constructor.constructor() | 
		
	
		
			
			|  |  |  | displayEntity(entity, view, 0, 1) | 
		
	
		
			
			|  |  |  | } | 
		
	
		
			
			|  |  |  |  | 
		
	
		
			
			|  |  |  | }) | 
		
	
		
			
			|  |  |  | arrangeEntities(getSortedEntities()); | 
		
	
		
			
			|  |  |  | } | 
		
	
		
			
			|  |  |  | } | 
		
	
		
			
			|  |  |  | 
 | 
		
	
		
			
			|  |  |  | function makeOwnerScene(owners) { | 
		
	
		
			
			|  |  |  | return () => { | 
		
	
		
			
			|  |  |  | owners.flatMap(owner => { | 
		
	
	
		
			
				|  |  | 
 |