aboutsummaryrefslogtreecommitdiff
path: root/trainlogic.lua
blob: 6e2b3c8091caf935bb921d7979b3f7ddd2709998 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
--trainlogic.lua
--controls train entities stuff about connecting/disconnecting/colliding trains and other things

local print=function(t, ...) minetest.log("action", table.concat({t, ...}, " ")) minetest.chat_send_all(table.concat({t, ...}, " ")) end

local benchmark=false
--printbm=function(str, t) print("[advtrains]"..str.." "..((os.clock()-t)*1000).."ms") end
local bm={}
local bmlt=0
local bmsteps=0
local bmstepint=200
printbm=function(action, ta)
	if not benchmark then return end
	local t=(os.clock()-ta)*1000
	if not bm[action] then
		bm[action]=t
	else
		bm[action]=bm[action]+t
	end
	bmlt=bmlt+t
end
function endstep()
	if not benchmark then return end
	bmsteps=bmsteps-1
	if bmsteps<=0 then
		bmsteps=bmstepint
		for key, value in pairs(bm) do
			minetest.chat_send_all(key.." "..(value/bmstepint).." ms avg.")
		end
		minetest.chat_send_all("Total time consumed by all advtrains actions per step: "..(bmlt/bmstepint).." ms avg.")
		bm={}
		bmlt=0
	end
end

advtrains.train_accel_force=2--per second and divided by number of wagons
advtrains.train_brake_force=3--per second, not divided by number of wagons
advtrains.train_emerg_force=10--for emergency brakes(when going off track)

advtrains.audit_interval=30

advtrains.all_traintypes={}
function advtrains.register_train_type(name, drives_on, max_speed)
	advtrains.all_traintypes[name]={}
	advtrains.all_traintypes[name].drives_on=drives_on
	advtrains.all_traintypes[name].max_speed=max_speed or 10
end


advtrains.trains={}
advtrains.wagon_save={}

--load initially
advtrains.fpath=minetest.get_worldpath().."/advtrains"
local file, err = io.open(advtrains.fpath, "r")
if not file then
	local er=err or "Unknown Error"
	print("[advtrains]Failed loading advtrains save file "..er)
else
	local tbl = minetest.deserialize(file:read("*a"))
	if type(tbl) == "table" then
		advtrains.trains=tbl
	end
	file:close()
end
advtrains.fpath_ws=minetest.get_worldpath().."/advtrains_wagon_save"
local file, err = io.open(advtrains.fpath_ws, "r")
if not file then
	local er=err or "Unknown Error"
	print("[advtrains]Failed loading advtrains save file "..er)
else
	local tbl = minetest.deserialize(file:read("*a"))
	if type(tbl) == "table" then
		advtrains.wagon_save=tbl
	end
	file:close()
end


advtrains.save = function()
	--print("[advtrains]saving")
	advtrains.invalidate_all_paths()
	local datastr = minetest.serialize(advtrains.trains)
	if not datastr then
		minetest.log("error", "[advtrains] Failed to serialize train data!")
		return
	end
	local file, err = io.open(advtrains.fpath, "w")
	if err then
		return err
	end
	file:write(datastr)
	file:close()
	
	-- update wagon saves
	for _,wagon in pairs(minetest.luaentities) do
		if wagon.is_wagon and wagon.initialized then
			advtrains.wagon_save[wagon.unique_id]=advtrains.merge_tables(wagon)--so, will only copy non_metatable elements
		end
	end
	--cross out userdata
	for w_id, data in pairs(advtrains.wagon_save) do
		data.name=nil
		data.object=nil
		if data.driver then
			data.driver_name=data.driver:get_player_name()
			data.driver=nil
		else
			data.driver_name=nil
		end
		if data.discouple then
			data.discouple.object:remove()
			data.discouple=nil
		end
	end
	--print(dump(advtrains.wagon_save))
	datastr = minetest.serialize(advtrains.wagon_save)
	if not datastr then
		minetest.log("error", "[advtrains] Failed to serialize train data!")
		return
	end
	file, err = io.open(advtrains.fpath_ws, "w")
	if err then
		return err
	end
	file:write(datastr)
	file:close()
	
	advtrains.save_trackdb()
end
minetest.register_on_shutdown(advtrains.save)

advtrains.save_and_audit_timer=advtrains.audit_interval
minetest.register_globalstep(function(dtime)
	advtrains.save_and_audit_timer=advtrains.save_and_audit_timer-dtime
	if advtrains.save_and_audit_timer<=0 then
		local t=os.clock()
		--print("[advtrains] audit step")
		--clean up orphaned trains
		for k,v in pairs(advtrains.trains) do
			--advtrains.update_trainpart_properties(k)
			if #v.trainparts==0 then
				advtrains.trains[k]=nil
			end
		end
		--save
		advtrains.save()
		advtrains.save_and_audit_timer=advtrains.audit_interval
		printbm("saving", t)
	end
	--regular train step
	local t=os.clock()
	for k,v in pairs(advtrains.trains) do
		advtrains.train_step(k, v, dtime)
	end
	printbm("trainsteps", t)
	endstep()
end)

function advtrains.train_step(id, train, dtime)
	
	--TODO check for all vars to be present
	if not train.velocity then
		train.velocity=0
	end
	--very unimportant thing: check if couple is here
	if train.couple_eid_front and (not minetest.luaentities[train.couple_eid_front] or not minetest.luaentities[train.couple_eid_front].is_couple) then train.couple_eid_front=nil end
	if train.couple_eid_back and (not minetest.luaentities[train.couple_eid_back] or not minetest.luaentities[train.couple_eid_back].is_couple) then train.couple_eid_back=nil end
	
	--skip certain things (esp. collision) when not moving
	local train_moves=(train.velocity~=0)
	
	--if not train.last_pos then advtrains.trains[id]=nil return end
	
	if not advtrains.pathpredict(id, train) then 
		print("pathpredict failed(returned false)")
		train.velocity=0
		train.tarvelocity=0
		return
	end
	
	local path=advtrains.get_or_create_path(id, train)
	if not path then
		train.velocity=0
		train.tarvelocity=0
		print("train has no path for whatever reason")
		return 
	end
	
	local train_end_index=advtrains.get_train_end_index(train)
	--apply off-track handling:
	local front_off_track=train.max_index_on_track and train.index>train.max_index_on_track
	local back_off_track=train.min_index_on_track and train_end_index<train.min_index_on_track
	if front_off_track and back_off_track then--allow movement in both directions
		if train.tarvelocity>1 then train.tarvelocity=1 end
		if train.tarvelocity<-1 then train.tarvelocity=-1 end
	elseif front_off_track then--allow movement only backward
		if train.tarvelocity>0 then train.tarvelocity=0 end
		if train.tarvelocity<-1 then train.tarvelocity=-1 end
	elseif back_off_track then--allow movement only forward
		if train.tarvelocity>1 then train.tarvelocity=1 end
		if train.tarvelocity<0 then train.tarvelocity=0 end
	end
	
	if train_moves then
		--check for collisions by finding objects
		--front
		local search_radius=4
		
		--coupling
		local couple_outward=1
		local posfront=advtrains.get_real_index_position(path, train.index+couple_outward)
		local posback=advtrains.get_real_index_position(path, train_end_index-couple_outward)
		for _,pos in ipairs({posfront, posback}) do
			if pos then
				local objrefs=minetest.get_objects_inside_radius(pos, search_radius)
				for _,v in pairs(objrefs) do
					local le=v:get_luaentity()
					if le and le.is_wagon and le.initialized and le.train_id~=id then
						advtrains.try_connect_trains(id, le.train_id)
					end
				end
			end
		end
		--new train collisions (only search in the direction of the driving train)
		local coll_search_radius=2
		local coll_grace=0
		local collpos
		if train.velocity>0 then
			collpos=advtrains.get_real_index_position(path, train.index-coll_grace)
		elseif train.velocity<0 then
			collpos=advtrains.get_real_index_position(path, train_end_index+coll_grace)
		end
		if collpos then
			local objrefs=minetest.get_objects_inside_radius(collpos, coll_search_radius)
			for _,v in pairs(objrefs) do
				local le=v:get_luaentity()
				if le and le.is_wagon and le.initialized and le.train_id~=id then
					train.recently_collided_with_env=true
					train.velocity=-0.5*train.velocity
					train.tarvelocity=0
				end
			end
		end
	end
	--check for any trainpart entities if they have been unloaded. do this only if train is near a player, to not spawn entities into unloaded areas
	train.check_trainpartload=(train.check_trainpartload or 0)-dtime
	local node_range=(math.max((minetest.setting_get("active_block_range") or 0),1)*16)
	if train.check_trainpartload<=0 and posfront and posback then
		--print(minetest.pos_to_string(posfront))
		local should_check=false
		for _,p in ipairs(minetest.get_connected_players()) do
			should_check=should_check or ((vector.distance(posfront, p:getpos())<node_range) and (vector.distance(posback, p:getpos())<node_range))
		end
		if should_check then
			--it is better to iterate luaentites only once
			--print("check_trainpartload")
			local found_uids={}
			for _,wagon in pairs(minetest.luaentities) do
				if wagon.is_wagon and wagon.initialized and wagon.train_id==id then
					if found_uids[wagon.unique_id] then
						--duplicate found, delete it
						if wagon.object then wagon.object:remove() end
					else
						found_uids[wagon.unique_id]=true
					end
				end
			end
			--print("found_uids: "..dump(found_uids))
			--now iterate trainparts and check. then cross them out to see if there are wagons over for any reason
			for pit, w_id in ipairs(train.trainparts) do
				if found_uids[w_id] then
					--print(w_id.." still loaded")
				elseif advtrains.wagon_save[w_id] then
					--print(w_id.." not loaded, but save available")
					--spawn a new and initialize it with the properties from wagon_save
					local le=minetest.env:add_entity(posfront, advtrains.wagon_save[w_id].entity_name):get_luaentity()
					for k,v in pairs(advtrains.wagon_save[w_id]) do
						le[k]=v
					end
					advtrains.wagon_save[w_id].name=nil
					advtrains.wagon_save[w_id].object=nil
				else
					print(w_id.." not loaded and no save available")
					--what the hell...
					table.remove(train.trainparts, pit)
				end
			end
		end
		train.check_trainpartload=10
	end
	
	
	--handle collided_with_env
	if train.recently_collided_with_env then
		train.tarvelocity=0
		if not train_moves then
			train.recently_collided_with_env=false--reset status when stopped
		end
	end
	if train.locomotives_in_train==0 then
		train.tarvelocity=0
	end
	--apply tarvel(but with physics in mind!)
	if train.velocity~=train.tarvelocity then
		local applydiff=0
		local mass=#train.trainparts
		local diff=math.abs(train.tarvelocity)-math.abs(train.velocity)
		if diff>0 then--accelerating, force will be brought on only by locomotives.
			--print("accelerating with default force")
			applydiff=(math.min((advtrains.train_accel_force*train.locomotives_in_train*dtime)/mass, math.abs(diff)))
		else--decelerating
			if front_off_track or back_off_track or train.recently_collided_with_env then --every wagon has a brake, so not divided by mass.
				--print("braking with emergency force")
				applydiff=(math.min((advtrains.train_emerg_force*dtime), math.abs(diff)))
			else
				--print("braking with default force")
				applydiff=(math.min((advtrains.train_brake_force*dtime), math.abs(diff)))
			end
		end
		train.velocity=train.velocity+(applydiff*math.sign(train.tarvelocity-train.velocity))
	end
	
	--move
	train.index=train.index and train.index+((train.velocity/(train.path_dist[math.floor(train.index)] or 1))*dtime) or 0
	
end

--the 'leader' concept has been overthrown, we won't rely on MT's "buggy object management"
--structure of train table:
--[[
trains={
	[train_id]={
		trainparts={
			[n]=wagon_id
		}
		path={path}
		velocity
		tarvelocity
		index
		trainlen
		path_inv_level
		last_pos       |
		last_dir       | for pathpredicting.
	}
}
--a wagon itself has the following properties:
wagon={
	unique_id
	train_id
	pos_in_train (is index difference, including train_span stuff)
	pos_in_trainparts (is index in trainparts tabel of trains)
}
inherited by metatable:
wagon_proto={
	wagon_span
}
]]

--returns new id
function advtrains.create_new_train_at(pos, pos_prev, traintype)
	local newtrain_id=os.time()..os.clock()
	while advtrains.trains[newtrain_id] do newtrain_id=os.time()..os.clock() end--ensure uniqueness(will be unneccessary)
	
	advtrains.trains[newtrain_id]={}
	advtrains.trains[newtrain_id].last_pos=pos
	advtrains.trains[newtrain_id].last_pos_prev=pos_prev
	advtrains.trains[newtrain_id].traintype=traintype
	advtrains.trains[newtrain_id].tarvelocity=0
	advtrains.trains[newtrain_id].velocity=0
	advtrains.trains[newtrain_id].trainparts={}
	return newtrain_id
end

--returns false on failure. handle this case!
function advtrains.pathpredict(id, train)
	
	--print("pos ",x,y,z)
	--::rerun::
	if not train.index then train.index=0 end
	if not train.path or #train.path<2 then
		if not train.last_pos then
			--no chance to recover
			print("[advtrains]train hasn't saved last-pos, removing train.")
			advtrains.train[id]=nil
			return false
		end
		
		local node_ok=advtrains.get_rail_info_at(advtrains.round_vector_floor_y(train.last_pos), train.traintype)
		
		if node_ok==nil then
			--block not loaded, do nothing
			return nil
		elseif node_ok==false then
			print("[advtrains]no track here, (fail) removing train.")
			advtrains.trains[id]=nil
			return false
		end
		
		if not train.last_pos_prev then
			--no chance to recover
			print("[advtrains]train hasn't saved last-pos_prev, removing train.")
			advtrains.trains[id]=nil
			return false
		end
		
		local prevnode_ok=advtrains.get_rail_info_at(advtrains.round_vector_floor_y(train.last_pos_prev), train.traintype)
		
		if prevnode_ok==nil then
			--block not loaded, do nothing
			return nil
		elseif prevnode_ok==false then
			print("[advtrains]no track at prev, (fail) removing train.")
			advtrains.trains[id]=nil
			return false
		end
		
		train.index=(train.restore_add_index or 0)+(train.savedpos_off_track_index_offset or 0)
		--restore_add_index is set by save() to prevent trains hopping to next round index. should be between -0.5 and 0.5
		--savedpos_off_track_index_offset is set if train went off track. see below.
		train.path={}
		train.path_dist={}
		train.path[0]=train.last_pos
		train.path[-1]=train.last_pos_prev
		train.path_dist[-1]=vector.distance(train.last_pos, train.last_pos_prev)
	end
	
	local maxn=advtrains.maxN(train.path)
	while (maxn-train.index) < 2 do--pregenerate
		--print("[advtrains]maxn conway for ",maxn,minetest.pos_to_string(path[maxn]),maxn-1,minetest.pos_to_string(path[maxn-1]))
		local conway=advtrains.conway(train.path[maxn], train.path[maxn-1], train.traintype)
		if conway then
			train.path[maxn+1]=conway
			train.max_index_on_track=maxn
		else
			--do as if nothing has happened and preceed with path
			--but do not update max_index_on_track
			--print("over-generating path max to index "..maxn+1)
			train.path[maxn+1]=vector.add(train.path[maxn], vector.subtract(train.path[maxn], train.path[maxn-1]))
		end
		train.path_dist[maxn]=vector.distance(train.path[maxn+1], train.path[maxn])
		maxn=advtrains.maxN(train.path)
	end
	
	local minn=advtrains.minN(train.path)
	while (train.index-minn) < (train.trainlen or 0) + 2 do --post_generate. has to be at least trainlen. (we let go of the exact calculation here since this would be unuseful here)
		--print("[advtrains]minn conway for ",minn,minetest.pos_to_string(path[minn]),minn+1,minetest.pos_to_string(path[minn+1]))
		local conway=advtrains.conway(train.path[minn], train.path[minn+1], train.traintype)
		if conway then
			train.path[minn-1]=conway
			train.min_index_on_track=minn
		else
			--do as if nothing has happened and preceed with path
			--but do not update min_index_on_track
			--print("over-generating path min to index "..minn-1)
			train.path[minn-1]=vector.add(train.path[minn], vector.subtract(train.path[minn], train.path[minn+1]))
		end
		train.path_dist[minn-1]=vector.distance(train.path[minn], train.path[minn-1])
		minn=advtrains.minN(train.path)
	end
	if not train.min_index_on_track then train.min_index_on_track=0 end
	if not train.max_index_on_track then train.max_index_on_track=0 end
	
	--make pos/yaw available for possible recover calls
	if train.max_index_on_track<train.index then --whoops, train went too far. the saved position will be the last one that lies on a track, and savedpos_off_track_index_offset will hold how far to go from here
		train.savedpos_off_track_index_offset=train.index-train.max_index_on_track
		train.last_pos=train.path[train.max_index_on_track]
		train.last_pos_prev=train.path[train.max_index_on_track-1]
		--print("train is off-track (front), last positions kept at "..minetest.pos_to_string(train.last_pos).." / "..minetest.pos_to_string(train.last_pos_prev))
	elseif train.min_index_on_track+1>train.index then --whoops, train went even more far. same behavior
		train.savedpos_off_track_index_offset=train.index-train.min_index_on_track
		train.last_pos=train.path[train.min_index_on_track+1]
		train.last_pos_prev=train.path[train.min_index_on_track]
		--print("train is off-track (back), last positions kept at "..minetest.pos_to_string(train.last_pos).." / "..minetest.pos_to_string(train.last_pos_prev))
	else --regular case
		train.savedpos_off_track_index_offset=nil
		train.last_pos=train.path[math.floor(train.index+0.5)]
		train.last_pos_prev=train.path[math.floor(train.index-0.5)]
	end
	return train.path
end
function advtrains.get_train_end_index(train)
	return advtrains.get_real_path_index(train, train.trainlen or 2)--this function can be found inside wagons.lua since it's more related to wagons. we just set trainlen as pos_in_train
end

function advtrains.get_or_create_path(id, train)
	if not train.path then return advtrains.pathpredict(id, train) end
	return train.path
end

function advtrains.add_wagon_to_train(wagon, train_id, index)
	local train=advtrains.trains[train_id]
	if index then
		table.insert(train.trainparts, index, wagon.unique_id)
	else
		table.insert(train.trainparts, wagon.unique_id)
	end
	--this is not the usual case!!!
	--we may set initialized because the wagon has no chance to step()
	wagon.initialized=true
	advtrains.update_trainpart_properties(train_id)
end
function advtrains.update_trainpart_properties(train_id, invert_flipstate)
	local train=advtrains.trains[train_id]
	local rel_pos=0
	local count_l=0
	for i, w_id in ipairs(train.trainparts) do
		local any_loaded=false
		for _,wagon in pairs(minetest.luaentities) do
			if wagon.is_wagon and wagon.initialized and wagon.unique_id==w_id then
				rel_pos=rel_pos+wagon.wagon_span
				wagon.train_id=train_id
				wagon.pos_in_train=rel_pos
				wagon.pos_in_trainparts=i
				wagon.old_velocity_vector=nil
				if wagon.is_locomotive then
					count_l=count_l+1
				end
				if invert_flipstate then
					wagon.wagon_flipped = not wagon.wagon_flipped
				end
				rel_pos=rel_pos+wagon.wagon_span
				any_loaded=true
			end
		end
		if not any_loaded then
			print("update_trainpart_properties wagon "..w_id.." not loaded, ignoring it.")
		end
	end
	train.trainlen=rel_pos
	train.locomotives_in_train=count_l
end

function advtrains.split_train_at_wagon(wagon)
	--get train
	local train=advtrains.trains[wagon.train_id]
	local real_pos_in_train=advtrains.get_real_path_index(train, wagon.pos_in_train)
	local pos_for_new_train=advtrains.get_or_create_path(wagon.train_id, train)[math.floor(real_pos_in_train+wagon.wagon_span)]
	local pos_for_new_train_prev=advtrains.get_or_create_path(wagon.train_id, train)[math.floor(real_pos_in_train-1+wagon.wagon_span)]
	
	--before doing anything, check if both are rails. else do not allow
	if not pos_for_new_train then
		print("split_train: pos_for_new_train not set")
		return false
	end
	local node_ok=advtrains.get_rail_info_at(advtrains.round_vector_floor_y(pos_for_new_train), train.traintype)
	if not node_ok then
		print("split_train: pos_for_new_train "..minetest.pos_to_string(advtrains.round_vector_floor_y(pos_for_new_train_prev)).." not loaded or is not a rail")
		return false
	end
	
	if not train.last_pos_prev then
		print("split_train: pos_for_new_train_prev not set")
		return false
	end
	
	local prevnode_ok=advtrains.get_rail_info_at(advtrains.round_vector_floor_y(pos_for_new_train), train.traintype)
	if not prevnode_ok then
		print("split_train: pos_for_new_train_prev "..minetest.pos_to_string(advtrains.round_vector_floor_y(pos_for_new_train_prev)).." not loaded or is not a rail")
		return false
	end
	
	--create subtrain
	local newtrain_id=advtrains.create_new_train_at(pos_for_new_train, pos_for_new_train_prev, train.traintype)
	local newtrain=advtrains.trains[newtrain_id]
	--insert all wagons to new train
	for k,v in ipairs(train.trainparts) do
		if k>=wagon.pos_in_trainparts then
			table.insert(newtrain.trainparts, v)
			train.trainparts[k]=nil
		end
	end
	--update train parts
	advtrains.update_trainpart_properties(wagon.train_id)--atm it still is the desierd id.
	advtrains.update_trainpart_properties(newtrain_id)
	train.tarvelocity=0
	newtrain.velocity=train.velocity
	newtrain.tarvelocity=0
end

--there are 4 cases:
--1/2. F<->R F<->R regular, put second train behind first
--->frontpos of first train will match backpos of second
--3.   F<->R R<->F flip one of these trains, take the other as new train
--->backpos's will match
--4.   R<->F F<->R flip one of these trains and take it as new parent
--->frontpos's will match
function advtrains.try_connect_trains(id1, id2)
	local train1=advtrains.trains[id1]
	local train2=advtrains.trains[id2]
	if not train1 or not train2 then return end
	if not train1.path or not train2.path then return end
	if #train1.trainparts==0 or #train2.trainparts==0 then return end
	
	local frontpos1=advtrains.get_real_index_position(train1.path, train1.index)
	local backpos1=advtrains.get_real_index_position(train1.path, advtrains.get_train_end_index(train1))
	--couple logic
	if train1.traintype==train2.traintype then
		local frontpos2=advtrains.get_real_index_position(train2.path, train2.index)
		local backpos2=advtrains.get_real_index_position(train2.path, advtrains.get_train_end_index(train2))
		
		if not frontpos1 or not frontpos2 or not backpos1 or not backpos2 then return end
		
		--case 1 (first train is front)
		if vector.distance(frontpos2, backpos1)<0.5 then
			advtrains.spawn_couple_if_neccessary(backpos1, frontpos2, id1, id2, true, false)
			--case 2 (second train is front)
		elseif vector.distance(frontpos1, backpos2)<0.5 then
			advtrains.spawn_couple_if_neccessary(backpos2, frontpos1, id2, id1, true, false)
			--case 3 
		elseif vector.distance(backpos2, backpos1)<0.5 then
			advtrains.spawn_couple_if_neccessary(backpos1, backpos2, id1, id2, true, true)
			--case 4 
		elseif vector.distance(frontpos2, frontpos1)<0.5 then
			advtrains.spawn_couple_if_neccessary(frontpos1, frontpos2, id1, id2, false, false)
		end
	end
end
--true when trains are facing each other. needed on colliding.
-- check done by iterating paths and checking their direction
--returns nil when not on the same track at all OR when required path items are not generated. this distinction may not always be needed.
function advtrains.trains_facing(train1, train2)
	local sr_pos=train1.path[math.floor(train1.index)]
	local sr_pos_p=train1.path[math.floor(train1.index)-1]

	for i=advtrains.minN(train2.path), advtrains.maxN(train2.path) do
		if vector.equals(sr_pos, train2.path[i]) then
			if train2.path[i+1] and vector.equals(sr_pos_p, train2.path[i+1]) then return true end
			if train2.path[i-1] and vector.equals(sr_pos_p, train2.path[i-1]) then return false end
			return nil
		end
	end
	return nil
end

--order of trains may be irrelevant in some cases. check opposite cases. TODO does this work?
--pos1 and pos2 are just needed to form a median.
function advtrains.spawn_couple_if_neccessary(pos1, pos2, tid1, tid2, train1_is_backpos, train2_is_backpos)
	--print("spawn_couple_if_neccessary..."..dump({pos1=pos1, pos2=pos2, train1_is_backpos=train1_is_backpos, train2_is_backpos=train2_is_backpos}))
	local train1=advtrains.trains[tid1]
	local train2=advtrains.trains[tid2]
	local t1_has_couple
	if train1_is_backpos then
		t1_has_couple=train1.couple_eid_back
	else
		t1_has_couple=train1.couple_eid_front
	end
	local t2_has_couple
	if train2_is_backpos then
		t2_has_couple=train2.couple_eid_back
	else
		t2_has_couple=train2.couple_eid_front
	end
	
	if t1_has_couple and t2_has_couple then
		if t1_has_couple~=t2_has_couple then--what the hell
			if minetest.object_refs[t2_has_couple] then minetest.object_refs[t2_has_couple]:remove() end
			if train2_is_backpos then
				train2.couple_eid_back=t1_has_couple
			else
				train2.couple_eid_front=t1_has_couple
			end
		end
	--[[elseif t1_has_couple and not t2_has_couple then
		if train2_is_backpos then
			train2.couple_eid_back=t1_has_couple
		else
			train2.couple_eid_front=t1_has_couple
		end
	elseif not t1_has_couple and t2_has_couple then
		if train1_is_backpos then
			train1.couple_eid_back=t2_has_couple
		else
			train1.couple_eid_front=t2_has_couple
		end]]
	else
		local pos=advtrains.pos_median(pos1, pos2)
		local obj=minetest.add_entity(pos, "advtrains:couple")
		if not obj then print("failed creating object") return end
		local le=obj:get_luaentity()
		le.train_id_1=tid1
		le.train_id_2=tid2
		le.train1_is_backpos=train1_is_backpos
		le.train2_is_backpos=train2_is_backpos
		--find in object_refs
		for aoi, compare in pairs(minetest.object_refs) do
			if compare==obj then
				if train1_is_backpos then
					train1.couple_eid_back=aoi
				else
					train1.couple_eid_front=aoi
				end
				if train2_is_backpos then
					train2.couple_eid_back=aoi
				else
					train2.couple_eid_front=aoi
				end
			end
		end
	end
end

function advtrains.do_connect_trains(first_id, second_id)
	local first_wagoncnt=#advtrains.trains[first_id].trainparts
	local second_wagoncnt=#advtrains.trains[second_id].trainparts
	
	for _,v in ipairs(advtrains.trains[second_id].trainparts) do
		table.insert(advtrains.trains[first_id].trainparts, v)
	end
	--kick it like physics (with mass being #wagons)
	local new_velocity=((advtrains.trains[first_id].velocity*first_wagoncnt)+(advtrains.trains[second_id].velocity*second_wagoncnt))/(first_wagoncnt+second_wagoncnt)
	advtrains.trains[second_id]=nil
	advtrains.update_trainpart_properties(first_id)
	advtrains.trains[first_id].velocity=new_velocity
	advtrains.trains[first_id].tarvelocity=0
end

function advtrains.invert_train(train_id)
	local train=advtrains.trains[train_id]
	
	local old_path=advtrains.get_or_create_path(train_id, train)
	train.path={}
	train.index= - advtrains.get_train_end_index(train)
	train.velocity=-train.velocity
	train.tarvelocity=-train.tarvelocity
	for k,v in pairs(old_path) do
		train.path[-k]=v
	end
	local old_trainparts=train.trainparts
	train.trainparts={}
	for k,v in ipairs(old_trainparts) do
		table.insert(train.trainparts, 1, v)--notice insertion at first place
	end
	advtrains.update_trainpart_properties(train_id, true)
end

function advtrains.is_train_at_pos(pos)
	--print("istrainat: pos "..minetest.pos_to_string(pos))
	local checked_trains={}
	local objrefs=minetest.get_objects_inside_radius(pos, 2)
	for _,v in pairs(objrefs) do
		local le=v:get_luaentity()
		if le and le.is_wagon and le.initialized and le.train_id and not checked_trains[le.train_id] then
			--print("istrainat: checking "..le.train_id)
			checked_trains[le.train_id]=true
			local path=advtrains.get_or_create_path(le.train_id, le:train())
			if path then
				--print("has path")
				for i=math.floor(advtrains.get_train_end_index(le:train())+0.5),math.floor(le:train().index+0.5) do
					if path[i] then
						--print("has pathitem "..i.." "..minetest.pos_to_string(path[i]))
						if vector.equals(advtrains.round_vector_floor_y(path[i]), pos) then
							return true
						end
					end
				end
			end
		end
	end
	return false
end
function advtrains.invalidate_all_paths()
	--print("invalidating all paths")
	for k,v in pairs(advtrains.trains) do
		if v.index then
			v.restore_add_index=v.index-math.floor(v.index+0.5)
		end
		v.path=nil
		v.index=nil
		v.min_index_on_track=nil
		v.max_index_on_track=nil
	end
end

--not blocking trains group
function advtrains.train_collides(node)
	if node and minetest.registered_nodes[node.name] and minetest.registered_nodes[node.name].walkable then
		if not minetest.registered_nodes[node.name].groups.not_blocking_trains then
			return true
		end
	end
	return false
end

local nonblocknodes={
	"default:fence_wood",
	"default:torch",
	
	"default:sign_wall",
	"signs:sign_wall",
	"signs:sign_wall_blue",
	"signs:sign_wall_brown",
	"signs:sign_wall_orange",
	"signs:sign_wall_green",
	"signs:sign_yard",
	"signs:sign_wall_white_black",
	"signs:sign_wall_red",
	"signs:sign_wall_white_red",
	"signs:sign_wall_yellow",
	"signs:sign_post",
	"signs:sign_hanging",
	
	
}
minetest.after(0, function()
	for _,name in ipairs(nonblocknodes) do
		if minetest.registered_nodes[name] then
			minetest.registered_nodes[name].groups.not_blocking_trains=1
		end
	end
end)
.695906 vt 0.413238 0.652830 vt 0.351562 0.820312 vt 0.351562 0.773438 vt 0.414062 0.773438 vt 0.414062 0.820312 vt 0.320312 0.453125 vt 0.359375 0.500000 vt 0.406250 0.453125 vt 0.432817 0.714395 vt 0.432817 0.652830 vt 0.609725 0.922911 vt 0.609725 0.879804 vt 0.390625 0.593750 vt 0.390625 0.406250 vt 0.437500 0.406250 vt 0.437500 0.562500 vt 0.328125 0.539062 vt 0.328125 0.335938 vt 0.375000 0.375000 vt 0.375000 0.539062 vt 0.414062 0.812500 vt 0.414062 0.593750 vt 0.382812 0.593750 vt 0.382812 0.812500 vt 0.367188 0.671875 vt 0.367188 0.328125 vt 0.414062 0.328125 vt 0.414062 0.671875 vt 0.414062 0.921875 vt 0.429688 0.898438 vt 0.415551 0.896734 vt 0.414062 0.896563 vt 0.413238 0.922911 vt 0.413238 0.652830 vt 0.432817 0.652830 vt 0.432816 0.922911 vt 0.569094 0.652830 vt 0.569094 0.922911 vt 0.537803 0.922911 vt 0.537803 0.652830 vt 0.341316 0.652830 vt 0.381947 0.652830 vt 0.381947 0.922911 vt 0.341316 0.922911 vt 0.609375 0.898438 vt 0.570312 0.898438 vt 0.570312 0.664062 vt 0.589844 0.683594 vt 0.609375 0.703125 vt 0.502578 0.922911 vt 0.448461 0.922911 vt 0.448462 0.652830 vt 0.502579 0.652830 vt 0.518224 0.652830 vt 0.518224 0.922911 vt 0.367188 0.625000 vt 0.367188 0.898438 vt 0.406250 0.898438 vt 0.406250 0.656250 vt 0.320312 0.453125 vt 0.406250 0.453125 vt 0.359375 0.500000 vt 0.609725 0.922911 vt 0.609725 0.879804 vt 0.569094 0.879867 vt 0.569094 0.922911 vt 0.502579 0.652830 vt 0.518224 0.652830 vt 0.518224 0.922911 vt 0.502578 0.922911 vt 0.382812 0.953107 vt 0.363281 0.953125 vt 0.382812 0.984375 vt 0.537803 0.879867 vt 0.518224 0.861217 vt 0.537803 0.922911 vt 0.413238 0.897174 vt 0.381947 0.897174 vt 0.381947 0.922911 vt 0.413238 0.922911 vt 0.445312 0.429688 vt 0.507812 0.375000 vt 0.507812 0.429688 vt 0.476562 0.273438 vt 0.390625 0.273438 vt 0.390625 0.257812 vt 0.476562 0.257812 vt 0.570312 0.664062 vt 0.609375 0.664062 vt 0.390625 0.304688 vt 0.359375 0.445312 vt 0.359375 0.382812 vt 0.468750 0.382812 vt 0.460938 0.414062 vt 0.460938 0.445312 vt 0.453125 0.500000 vt 0.453125 0.562500 vt 0.507812 0.562500 vt 0.507812 0.546875 vt 0.500000 0.539062 vt 0.500000 0.507812 vt 0.500000 0.460938 vt 0.500000 0.429688 vt 0.500000 0.382812 vt 0.484375 0.359375 vt 0.453125 0.476562 vt 0.382812 0.476562 vt 0.382812 0.539062 vt 0.453125 0.539062 vt 0.453125 0.382812 vt 0.382812 0.382812 vt 0.382812 0.414062 vt 0.453125 0.414062 vt 0.500000 0.539062 vt 0.570312 0.539062 vt 0.570312 0.523438 vt 0.500000 0.523438 vt 0.500000 0.398438 vt 0.570312 0.398438 vt 0.570312 0.343750 vt 0.500000 0.343750 vt 0.570312 0.500000 vt 0.500000 0.500000 vt 0.570312 0.257812 vt 0.500000 0.257812 vt 0.453125 0.320312 vt 0.382812 0.320312 vt 0.382812 0.343750 vt 0.453125 0.343750 vt 0.570312 0.460938 vt 0.500000 0.460938 vt 0.609375 0.335938 vt 0.609375 0.335938 vt 0.343750 0.343750 vt 0.343750 0.343750 vt 0.453125 0.351562 vt 0.382812 0.351562 vt 0.382812 0.367188 vt 0.453125 0.367188 vt 0.414062 0.921875 vt 0.414062 0.896563 vt 0.415551 0.896734 vt 0.429688 0.898438 vt 0.432817 0.652830 vt 0.413238 0.652830 vt 0.569094 0.652830 vt 0.537803 0.652830 vt 0.341316 0.652830 vt 0.381947 0.652830 vt 0.609375 0.703125 vt 0.589844 0.683594 vt 0.570312 0.664062 vt 0.502579 0.652830 vt 0.448462 0.652830 vt 0.518224 0.652830 vt 0.367188 0.625000 vt 0.406250 0.656250 vt 0.320312 0.453125 vt 0.359375 0.500000 vt 0.406250 0.453125 vt 0.609725 0.922911 vt 0.569094 0.922911 vt 0.569094 0.879867 vt 0.609725 0.879804 vt 0.502578 0.922911 vt 0.518224 0.922911 vt 0.382812 0.953107 vt 0.382812 0.984375 vt 0.363281 0.953125 vt 0.537803 0.879867 vt 0.537803 0.922911 vt 0.518224 0.861217 vt 0.413238 0.897174 vt 0.413238 0.922911 vt 0.381947 0.922911 vt 0.381947 0.897174 vt 0.445312 0.429688 vt 0.507812 0.429688 vt 0.507812 0.375000 vt 0.476562 0.273438 vt 0.476562 0.257812 vt 0.390625 0.257812 vt 0.390625 0.273438 vt 0.609375 0.664062 vt 0.570312 0.664062 vt 0.390625 0.304688 vt 0.359375 0.382812 vt 0.359375 0.445312 vt 0.468750 0.382812 vt 0.484375 0.359375 vt 0.500000 0.382812 vt 0.500000 0.429688 vt 0.500000 0.460938 vt 0.500000 0.507812 vt 0.500000 0.539062 vt 0.507812 0.546875 vt 0.507812 0.562500 vt 0.453125 0.562500 vt 0.453125 0.500000 vt 0.460938 0.445312 vt 0.460938 0.414062 vt 0.453125 0.476562 vt 0.453125 0.539062 vt 0.382812 0.539062 vt 0.382812 0.476562 vt 0.453125 0.382812 vt 0.453125 0.414062 vt 0.382812 0.414062 vt 0.382812 0.382812 vt 0.500000 0.539062 vt 0.500000 0.523438 vt 0.570312 0.523438 vt 0.570312 0.539062 vt 0.500000 0.398438 vt 0.500000 0.343750 vt 0.570312 0.343750 vt 0.570312 0.398438 vt 0.500000 0.500000 vt 0.570312 0.500000 vt 0.500000 0.257812 vt 0.570312 0.257812 vt 0.453125 0.320312 vt 0.453125 0.343750 vt 0.382812 0.343750 vt 0.382812 0.320312 vt 0.500000 0.460938 vt 0.570312 0.460938 vt 0.609375 0.335938 vt 0.343750 0.343750 vt 0.343750 0.343750 vt 0.609375 0.335938 vt 0.453125 0.351562 vt 0.453125 0.367188 vt 0.382812 0.367188 vt 0.382812 0.351562 vt 0.414062 0.921875 vt 0.429688 0.898438 vt 0.415551 0.896734 vt 0.414062 0.896563 vt 0.413238 0.922911 vt 0.413238 0.652830 vt 0.432817 0.652830 vt 0.432816 0.922911 vt 0.569094 0.652830 vt 0.569094 0.922911 vt 0.537803 0.922911 vt 0.537803 0.652830 vt 0.341316 0.652830 vt 0.381947 0.652830 vt 0.381947 0.922911 vt 0.341316 0.922911 vt 0.609375 0.898438 vt 0.570312 0.898438 vt 0.570312 0.664062 vt 0.589844 0.683594 vt 0.609375 0.703125 vt 0.502578 0.922911 vt 0.448461 0.922911 vt 0.448462 0.652830 vt 0.502579 0.652830 vt 0.518224 0.652830 vt 0.518224 0.922911 vt 0.367188 0.625000 vt 0.367188 0.898438 vt 0.406250 0.898438 vt 0.406250 0.656250 vt 0.320312 0.453125 vt 0.406250 0.453125 vt 0.359375 0.500000 vt 0.609725 0.922911 vt 0.609725 0.879804 vt 0.569094 0.879867 vt 0.569094 0.922911 vt 0.502579 0.652830 vt 0.518224 0.652830 vt 0.518224 0.922911 vt 0.502578 0.922911 vt 0.382812 0.953107 vt 0.363281 0.953125 vt 0.382812 0.984375 vt 0.537803 0.879867 vt 0.518224 0.861217 vt 0.537803 0.922911 vt 0.413238 0.897174 vt 0.381947 0.897174 vt 0.381947 0.922911 vt 0.413238 0.922911 vt 0.445312 0.429688 vt 0.507812 0.375000 vt 0.507812 0.429688 vt 0.476562 0.273438 vt 0.390625 0.273438 vt 0.390625 0.257812 vt 0.476562 0.257812 vt 0.570312 0.664062 vt 0.609375 0.664062 vt 0.390625 0.304688 vt 0.359375 0.445312 vt 0.359375 0.382812 vt 0.468750 0.382812 vt 0.460938 0.414062 vt 0.460938 0.445312 vt 0.453125 0.500000 vt 0.453125 0.562500 vt 0.507812 0.562500 vt 0.507812 0.546875 vt 0.500000 0.539062 vt 0.500000 0.507812 vt 0.500000 0.460938 vt 0.500000 0.429688 vt 0.500000 0.382812 vt 0.484375 0.359375 vt 0.453125 0.476562 vt 0.382812 0.476562 vt 0.382812 0.539062 vt 0.453125 0.539062 vt 0.453125 0.382812 vt 0.382812 0.382812 vt 0.382812 0.414062 vt 0.453125 0.414062 vt 0.500000 0.539062 vt 0.570312 0.539062 vt 0.570312 0.523438 vt 0.500000 0.523438 vt 0.500000 0.398438 vt 0.570312 0.398438 vt 0.570312 0.343750 vt 0.500000 0.343750 vt 0.570312 0.500000 vt 0.500000 0.500000 vt 0.570312 0.257812 vt 0.500000 0.257812 vt 0.453125 0.320312 vt 0.382812 0.320312 vt 0.382812 0.343750 vt 0.453125 0.343750 vt 0.570312 0.460938 vt 0.500000 0.460938 vt 0.609375 0.335938 vt 0.609375 0.335938 vt 0.343750 0.343750 vt 0.343750 0.343750 vt 0.453125 0.351562 vt 0.382812 0.351562 vt 0.382812 0.367188 vt 0.453125 0.367188 vt 0.414062 0.921875 vt 0.414062 0.896563 vt 0.415551 0.896734 vt 0.429688 0.898438 vt 0.432817 0.652830 vt 0.413238 0.652830 vt 0.569094 0.652830 vt 0.537803 0.652830 vt 0.341316 0.652830 vt 0.381947 0.652830 vt 0.609375 0.703125 vt 0.589844 0.683594 vt 0.570312 0.664062 vt 0.502579 0.652830 vt 0.448462 0.652830 vt 0.518224 0.652830 vt 0.367188 0.625000 vt 0.406250 0.656250 vt 0.320312 0.453125 vt 0.359375 0.500000 vt 0.406250 0.453125 vt 0.609725 0.922911 vt 0.569094 0.922911 vt 0.569094 0.879867 vt 0.609725 0.879804 vt 0.502578 0.922911 vt 0.518224 0.922911 vt 0.382812 0.953107 vt 0.382812 0.984375 vt 0.363281 0.953125 vt 0.537803 0.879867 vt 0.537803 0.922911 vt 0.518224 0.861217 vt 0.413238 0.897174 vt 0.413238 0.922911 vt 0.381947 0.922911 vt 0.381947 0.897174 vt 0.445312 0.429688 vt 0.507812 0.429688 vt 0.507812 0.375000 vt 0.476562 0.273438 vt 0.476562 0.257812 vt 0.390625 0.257812 vt 0.390625 0.273438 vt 0.609375 0.664062 vt 0.570312 0.664062 vt 0.390625 0.304688 vt 0.359375 0.382812 vt 0.359375 0.445312 vt 0.468750 0.382812 vt 0.484375 0.359375 vt 0.500000 0.382812 vt 0.500000 0.429688 vt 0.500000 0.460938 vt 0.500000 0.507812 vt 0.500000 0.539062 vt 0.507812 0.546875 vt 0.507812 0.562500 vt 0.453125 0.562500 vt 0.453125 0.500000 vt 0.460938 0.445312 vt 0.460938 0.414062 vt 0.453125 0.476562 vt 0.453125 0.539062 vt 0.382812 0.539062 vt 0.382812 0.476562 vt 0.453125 0.382812 vt 0.453125 0.414062 vt 0.382812 0.414062 vt 0.382812 0.382812 vt 0.500000 0.539062 vt 0.500000 0.523438 vt 0.570312 0.523438 vt 0.570312 0.539062 vt 0.500000 0.398438 vt 0.500000 0.343750 vt 0.570312 0.343750 vt 0.570312 0.398438 vt 0.500000 0.500000 vt 0.570312 0.500000 vt 0.500000 0.257812 vt 0.570312 0.257812 vt 0.453125 0.320312 vt 0.453125 0.343750 vt 0.382812 0.343750 vt 0.382812 0.320312 vt 0.500000 0.460938 vt 0.570312 0.460938 vt 0.609375 0.335938 vt 0.343750 0.343750 vt 0.343750 0.343750 vt 0.609375 0.335938 vt 0.453125 0.351562 vt 0.453125 0.367188 vt 0.382812 0.367188 vt 0.382812 0.351562 vt 0.414062 0.921875 vt 0.429688 0.898438 vt 0.415551 0.896734 vt 0.414062 0.896563 vt 0.413238 0.922911 vt 0.413238 0.652830 vt 0.432817 0.652830 vt 0.432816 0.922911 vt 0.569094 0.652830 vt 0.569094 0.922911 vt 0.537803 0.922911 vt 0.537803 0.652830 vt 0.341316 0.652830 vt 0.381947 0.652830 vt 0.381947 0.922911 vt 0.341316 0.922911 vt 0.609375 0.898438 vt 0.570312 0.898438 vt 0.570312 0.664062 vt 0.589844 0.683594 vt 0.609375 0.703125 vt 0.502578 0.922911 vt 0.448461 0.922911 vt 0.448462 0.652830 vt 0.502579 0.652830 vt 0.518224 0.652830 vt 0.518224 0.922911 vt 0.367188 0.625000 vt 0.367188 0.898438 vt 0.406250 0.898438 vt 0.406250 0.656250 vt 0.320312 0.453125 vt 0.406250 0.453125 vt 0.359375 0.500000 vt 0.609725 0.922911 vt 0.609725 0.879804 vt 0.569094 0.879867 vt 0.569094 0.922911 vt 0.502579 0.652830 vt 0.518224 0.652830 vt 0.518224 0.922911 vt 0.502578 0.922911 vt 0.382812 0.953107 vt 0.363281 0.953125 vt 0.382812 0.984375 vt 0.537803 0.879867 vt 0.518224 0.861217 vt 0.537803 0.922911 vt 0.413238 0.897174 vt 0.381947 0.897174 vt 0.381947 0.922911 vt 0.413238 0.922911 vt 0.445312 0.429688 vt 0.507812 0.375000 vt 0.507812 0.429688 vt 0.476562 0.273438 vt 0.390625 0.273438 vt 0.390625 0.257812 vt 0.476562 0.257812 vt 0.570312 0.664062 vt 0.609375 0.664062 vt 0.390625 0.304688 vt 0.359375 0.445312 vt 0.359375 0.382812 vt 0.468750 0.382812 vt 0.460938 0.414062 vt 0.460938 0.445312 vt 0.453125 0.500000 vt 0.453125 0.562500 vt 0.507812 0.562500 vt 0.507812 0.546875 vt 0.500000 0.539062 vt 0.500000 0.507812 vt 0.500000 0.460938 vt 0.500000 0.429688 vt 0.500000 0.382812 vt 0.484375 0.359375 vt 0.453125 0.476562 vt 0.382812 0.476562 vt 0.382812 0.539062 vt 0.453125 0.539062 vt 0.453125 0.382812 vt 0.382812 0.382812 vt 0.382812 0.414062 vt 0.453125 0.414062 vt 0.500000 0.539062 vt 0.570312 0.539062 vt 0.570312 0.523438 vt 0.500000 0.523438 vt 0.500000 0.398438 vt 0.570312 0.398438 vt 0.570312 0.343750 vt 0.500000 0.343750 vt 0.570312 0.500000 vt 0.500000 0.500000 vt 0.570312 0.257812 vt 0.500000 0.257812 vt 0.453125 0.320312 vt 0.382812 0.320312 vt 0.382812 0.343750 vt 0.453125 0.343750 vt 0.570312 0.460938 vt 0.500000 0.460938 vt 0.609375 0.335938 vt 0.609375 0.335938 vt 0.343750 0.343750 vt 0.343750 0.343750 vt 0.453125 0.351562 vt 0.382812 0.351562 vt 0.382812 0.367188 vt 0.453125 0.367188 vt 0.414062 0.921875 vt 0.414062 0.896563 vt 0.415551 0.896734 vt 0.429688 0.898438 vt 0.432817 0.652830 vt 0.413238 0.652830 vt 0.569094 0.652830 vt 0.537803 0.652830 vt 0.341316 0.652830 vt 0.381947 0.652830 vt 0.609375 0.703125 vt 0.589844 0.683594 vt 0.570312 0.664062 vt 0.502579 0.652830 vt 0.448462 0.652830 vt 0.518224 0.652830 vt 0.367188 0.625000 vt 0.406250 0.656250 vt 0.320312 0.453125 vt 0.359375 0.500000 vt 0.406250 0.453125 vt 0.609725 0.922911 vt 0.569094 0.922911 vt 0.569094 0.879867 vt 0.609725 0.879804 vt 0.502578 0.922911 vt 0.518224 0.922911 vt 0.382812 0.953107 vt 0.382812 0.984375 vt 0.363281 0.953125 vt 0.537803 0.879867 vt 0.537803 0.922911 vt 0.518224 0.861217 vt 0.413238 0.897174 vt 0.413238 0.922911 vt 0.381947 0.922911 vt 0.381947 0.897174 vt 0.445312 0.429688 vt 0.507812 0.429688 vt 0.507812 0.375000 vt 0.476562 0.273438 vt 0.476562 0.257812 vt 0.390625 0.257812 vt 0.390625 0.273438 vt 0.609375 0.664062 vt 0.570312 0.664062 vt 0.390625 0.304688 vt 0.359375 0.382812 vt 0.359375 0.445312 vt 0.351562 0.820312 vt 0.351562 0.773438 vt 0.414062 0.773438 vt 0.414062 0.820312 vt 0.381947 0.652830 vt 0.381947 0.695800 vt 0.413238 0.652830 vt 0.609375 0.703125 vt 0.589844 0.683594 vt 0.570312 0.664062 vt 0.502578 0.787870 vt 0.502579 0.652830 vt 0.448462 0.714206 vt 0.448461 0.818559 vt 0.320312 0.453125 vt 0.359375 0.500000 vt 0.406250 0.453125 vt 0.609725 0.922911 vt 0.569094 0.922911 vt 0.569094 0.879867 vt 0.609725 0.879804 vt 0.502578 0.757182 vt 0.502578 0.861534 vt 0.518224 0.861345 vt 0.518224 0.757088 vt 0.382812 0.953107 vt 0.382812 0.984375 vt 0.363281 0.953125 vt 0.537803 0.879867 vt 0.537803 0.922911 vt 0.518224 0.922911 vt 0.518224 0.861217 vt 0.413238 0.897174 vt 0.413238 0.922911 vt 0.381947 0.922911 vt 0.381947 0.897174 vt 0.445312 0.429688 vt 0.507812 0.429688 vt 0.507812 0.375000 vt 0.453125 0.921875 vt 0.453125 0.859375 vt 0.430830 0.859613 vt 0.430830 0.922113 vt 0.609375 0.664062 vt 0.570312 0.664062 vt 0.390625 0.304688 vt 0.359375 0.382812 vt 0.359375 0.445312 vt 0.429688 0.398438 vt 0.429688 0.460938 vt 0.398438 0.429688 vt 0.518224 0.652830 vt 0.518224 0.922911 vt 0.502578 0.922911 vt 0.502579 0.652830 vt 0.453125 0.656250 vt 0.500000 0.656250 vt 0.500000 0.843750 vt 0.453125 0.921875 vt 0.432816 0.922911 vt 0.432817 0.652830 vt 0.448462 0.652830 vt 0.448461 0.922911 vt 0.609725 0.922911 vt 0.609725 0.652830 vt 0.390625 0.593750 vt 0.390625 0.406250 vt 0.437500 0.406250 vt 0.437500 0.562500 vt 0.328125 0.539062 vt 0.328125 0.335938 vt 0.375000 0.375000 vt 0.375000 0.539062 vt 0.414062 0.812500 vt 0.414062 0.593750 vt 0.382812 0.593750 vt 0.382812 0.812500 vt 0.367188 0.671875 vt 0.367188 0.328125 vt 0.414062 0.328125 vt 0.414062 0.671875 vt 0.429688 0.398438 vt 0.429688 0.460938 vt 0.398438 0.429688 vt 0.609725 0.591144 vt 0.569094 0.591144 vt 0.569095 0.297086 vt 0.609725 0.297086 vt 0.432817 0.591144 vt 0.432817 0.297086 vt 0.448463 0.297086 vt 0.448462 0.591144 vt 0.453125 0.593750 vt 0.453125 0.296875 vt 0.500000 0.375000 vt 0.500000 0.593750 vt 0.518225 0.297086 vt 0.518224 0.591144 vt 0.502579 0.591144 vt 0.502580 0.297086 vt 0.537803 0.591144 vt 0.537804 0.297086 vt 0.569094 0.652830 vt 0.569094 0.922911 vt 0.537803 0.922911 vt 0.537803 0.652830 vt 0.518224 0.652830 vt 0.518224 0.922911 vt 0.502578 0.922911 vt 0.502579 0.652830 vt 0.453125 0.656250 vt 0.500000 0.656250 vt 0.500000 0.843750 vt 0.453125 0.921875 vt 0.432816 0.922911 vt 0.432817 0.652830 vt 0.448462 0.652830 vt 0.448461 0.922911 vt 0.609725 0.922911 vt 0.609725 0.652830 vt 0.390625 0.593750 vt 0.390625 0.406250 vt 0.437500 0.406250 vt 0.437500 0.562500 vt 0.328125 0.539062 vt 0.328125 0.335938 vt 0.375000 0.375000 vt 0.375000 0.539062 vt 0.414062 0.812500 vt 0.414062 0.593750 vt 0.382812 0.593750 vt 0.382812 0.812500 vt 0.367188 0.671875 vt 0.367188 0.328125 vt 0.414062 0.328125 vt 0.414062 0.671875 vt 0.429688 0.398438 vt 0.429688 0.460938 vt 0.398438 0.429688 vt 0.468750 0.382812 vt 0.484375 0.359375 vt 0.500000 0.382812 vt 0.500000 0.429688 vt 0.500000 0.460938 vt 0.500000 0.507812 vt 0.500000 0.539062 vt 0.507812 0.546875 vt 0.507812 0.562500 vt 0.453125 0.562500 vt 0.453125 0.500000 vt 0.460938 0.445312 vt 0.460938 0.414062 vt 0.453125 0.476562 vt 0.453125 0.539062 vt 0.382812 0.539062 vt 0.382812 0.476562 vt 0.453125 0.382812 vt 0.453125 0.414062 vt 0.382812 0.414062 vt 0.382812 0.382812 vt 0.500000 0.343750 vt 0.570312 0.343750 vt 0.500000 0.257812 vt 0.570312 0.257812 vt 0.453125 0.320312 vt 0.453125 0.343750 vt 0.382812 0.343750 vt 0.382812 0.320312 vt 0.453125 0.351562 vt 0.453125 0.367188 vt 0.382812 0.367188 vt 0.382812 0.351562 vt 0.448462 0.652830 vt 0.502578 0.922911 vt 0.367188 0.625000 vt 0.406250 0.656250 vt 0.406250 0.777344 vt 0.367188 0.761719 vt 0.518224 0.652830 vt 0.518224 0.787870 vt 0.569094 0.652830 vt 0.537803 0.652830 vt 0.537803 0.787871 vt 0.569094 0.787871 vt 0.432817 0.652830 vt 0.351562 0.492188 vt 0.414062 0.492188 vt 0.414062 0.773438 vt 0.351562 0.773438 vt 0.351562 0.820312 vt 0.351562 0.773438 vt 0.414062 0.773438 vt 0.414062 0.820312 vt 0.381947 0.652830 vt 0.381947 0.695800 vt 0.413238 0.695906 vt 0.413238 0.652830 vt 0.320312 0.453125 vt 0.359375 0.500000 vt 0.406250 0.453125 vt 0.609725 0.922911 vt 0.569094 0.922911 vt 0.569094 0.879867 vt 0.609725 0.879804 vt 0.537803 0.879867 vt 0.537803 0.922911 vt 0.518224 0.922911 vt 0.518224 0.861217 vt 0.445312 0.429688 vt 0.507812 0.429688 vt 0.507812 0.375000 vt 0.453125 0.921875 vt 0.453125 0.859375 vt 0.430830 0.859613 vt 0.430830 0.922113 vt 0.448462 0.714206 vt 0.502579 0.652830 vt 0.448462 0.652830 vt 0.518224 0.861345 vt 0.502578 0.861534 vt 0.502578 0.922911 vt 0.432817 0.714395 vt 0.432817 0.652830 vt 0.467919 0.511296 vt 0.467919 0.475200 vt 0.508050 0.460761 vt 0.485616 0.511239 vt 0.445140 0.533083 vt 0.445172 0.460270 vt 0.508050 0.532954 vt 0.445438 0.532954 vt 0.445438 0.514906 vt 0.423327 0.460761 vt 0.530590 0.460270 vt 0.485616 0.474833 vt 0.508103 0.514880 vt 0.508103 0.533083 vt 0.351562 0.820312 vt 0.351562 0.773438 vt 0.414062 0.773438 vt 0.414062 0.820312 vt 0.381947 0.652830 vt 0.381947 0.695800 vt 0.413238 0.695906 vt 0.413238 0.652830 vt 0.320312 0.453125 vt 0.359375 0.500000 vt 0.406250 0.453125 vt 0.609725 0.922911 vt 0.569094 0.922911 vt 0.569094 0.879867 vt 0.609725 0.879804 vt 0.537803 0.879867 vt 0.537803 0.922911 vt 0.518224 0.922911 vt 0.518224 0.861217 vt 0.445312 0.429688 vt 0.507812 0.429688 vt 0.507812 0.375000 vt 0.453125 0.921875 vt 0.453125 0.859375 vt 0.430830 0.859613 vt 0.430830 0.922113 vt 0.448462 0.714206 vt 0.502579 0.652830 vt 0.448462 0.652830 vt 0.518224 0.861345 vt 0.502578 0.861534 vt 0.502578 0.922911 vt 0.432817 0.714395 vt 0.432817 0.652830 vt 0.467919 0.511296 vt 0.467919 0.475200 vt 0.508050 0.460761 vt 0.485616 0.511239 vt 0.445140 0.533083 vt 0.445172 0.460270 vt 0.508050 0.532954 vt 0.445438 0.532954 vt 0.445438 0.514906 vt 0.423327 0.460761 vt 0.530590 0.460270 vt 0.485616 0.474833 vt 0.508103 0.514880 vt 0.508103 0.533083 vt 0.485616 0.511239 vt 0.508103 0.533083 vt 0.445140 0.533083 vt 0.445172 0.460270 vt 0.485616 0.474833 vt 0.508050 0.532954 vt 0.467919 0.511296 vt 0.508050 0.460761 vt 0.467919 0.475200 vt 0.423327 0.460761 vt 0.530590 0.460270 vt 0.508103 0.514880 vt 0.445438 0.532954 vt 0.445438 0.514906 vt 0.453125 0.921875 vt 0.453125 0.859375 vt 0.430830 0.859613 vt 0.430830 0.922113 vt 0.448462 0.714206 vt 0.502579 0.652830 vt 0.448462 0.652830 vt 0.569094 0.879867 vt 0.569094 0.922911 vt 0.537803 0.922911 vt 0.537803 0.879867 vt 0.445312 0.429688 vt 0.507812 0.429688 vt 0.507812 0.375000 vt 0.518224 0.861345 vt 0.502578 0.861534 vt 0.502578 0.922911 vt 0.518224 0.922911 vt 0.518224 0.861217 vt 0.381947 0.652830 vt 0.381947 0.695800 vt 0.413238 0.695906 vt 0.413238 0.652830 vt 0.351562 0.820312 vt 0.351562 0.773438 vt 0.414062 0.773438 vt 0.414062 0.820312 vt 0.320312 0.453125 vt 0.359375 0.500000 vt 0.406250 0.453125 vt 0.432817 0.714395 vt 0.432817 0.652830 vt 0.609725 0.922911 vt 0.609725 0.879804 vn 1.0000 0.0000 0.0000 vn -1.0000 0.0000 -0.0000 vn 0.0000 0.0000 -1.0000 vn 0.0000 1.0000 0.0000 vn 0.0000 0.0000 1.0000 vn -0.9847 0.0000 -0.1745 vn -0.9885 0.0000 -0.1514 vn -0.9984 0.0000 -0.0572 vn -0.0097 0.0104 0.9999 vn -0.9981 0.0000 -0.0623 vn 0.9999 0.0104 -0.0097 vn 0.1592 -0.9873 -0.0001 vn -0.0000 -0.9871 -0.1598 vn -0.9979 0.0000 -0.0642 vn -0.2731 0.0000 0.9620 vn -0.3075 0.0000 0.9516 vn -0.1498 0.0000 -0.9887 vn -0.0572 0.0000 -0.9984 vn -0.1979 0.0000 0.9802 vn -0.1745 0.0000 -0.9847 vn -0.0977 0.0000 -0.9952 vn -0.1514 0.0000 -0.9885 vn -0.0627 0.0000 0.9980 vn -0.0623 0.0000 -0.9981 vn -0.0006 -0.0018 1.0000 vn -0.2620 0.9638 0.0501 vn 0.2945 0.9093 -0.2940 vn -0.0000 0.9514 -0.3081 vn -0.3081 0.9514 -0.0000 vn 1.0000 0.0000 0.0009 vn -0.0000 0.9514 0.3081 vn -0.9773 -0.2015 0.0652 vn -0.2944 0.9093 0.2942 vn 0.3081 0.9514 0.0000 vn 0.3079 0.9514 -0.0000 vn -0.1600 -0.9871 0.0000 vn -1.0000 -0.0014 0.0001 vn -0.3082 0.9513 0.0000 vn 0.0000 -0.9871 0.1598 vn 0.1590 -0.9873 0.0001 vn -0.9979 0.0000 0.0642 vn -0.0623 0.0000 0.9981 vn -0.1498 0.0000 0.9887 vn -0.2731 0.0000 -0.9620 vn 0.9999 0.0104 0.0097 vn -0.0572 0.0000 0.9984 vn -0.3074 0.0000 -0.9516 vn -0.1745 0.0000 0.9847 vn -0.1979 0.0000 -0.9802 vn -0.0977 0.0000 0.9952 vn -0.0006 -0.0018 -1.0000 vn -0.1514 0.0000 0.9885 vn -0.0627 0.0000 -0.9980 vn 1.0000 -0.0004 -0.0012 vn 1.0000 0.0011 0.0004 vn 1.0000 0.0055 0.0020 vn 0.9999 0.0106 -0.0030 vn 0.0009 0.0000 1.0000 vn 1.0000 -0.0027 0.0017 vn -0.1598 -0.9871 -0.0000 vn -0.2940 0.9093 0.2945 vn 0.0001 -0.9874 0.1584 vn -0.0001 -0.9873 0.1590 vn 0.0000 0.9514 0.3079 vn -0.0000 0.9513 -0.3082 vn -0.0001 -0.0014 -1.0000 vn -0.0000 -0.9871 -0.1600 vn 0.2940 0.9093 0.2945 vn -0.0009 0.0000 1.0000 vn 0.1598 -0.9871 0.0000 vn -0.0501 0.9638 -0.2620 vn -0.0652 -0.2015 -0.9773 vn -1.0000 -0.0018 -0.0006 vn -0.9802 0.0000 -0.1979 vn 0.9847 0.0000 -0.1745 vn 0.9952 0.0000 -0.0977 vn 0.9885 0.0000 -0.1514 vn 0.9887 0.0000 -0.1498 vn -0.9516 0.0000 -0.3074 vn 0.9984 0.0000 -0.0572 vn -0.9980 0.0000 -0.0627 vn 0.0097 0.0104 0.9999 vn -0.9620 0.0000 -0.2731 vn 0.0642 0.0000 -0.9979 vn 0.9981 0.0000 -0.0623 vn 0.0001 -0.9873 0.1590 vn 0.0001 -0.0014 -1.0000 vn 0.0501 0.9638 -0.2620 vn 0.0652 -0.2015 -0.9773 vn -1.0000 -0.0018 0.0006 vn -0.9802 0.0000 0.1979 vn 0.9847 0.0000 0.1745 vn 0.9952 0.0000 0.0977 vn 0.9885 0.0000 0.1514 vn 0.9887 0.0000 0.1498 vn -0.9516 0.0000 0.3074 vn 0.9984 0.0000 0.0572 vn -0.9980 0.0000 0.0627 vn 0.0097 0.0104 -0.9999 vn -0.9620 0.0000 0.2731 vn 0.0642 0.0000 0.9979 vn 0.9981 0.0000 0.0623 vn 0.0001 -0.9873 -0.1590 vn -0.0000 0.9514 -0.3079 vn 0.0000 0.9513 0.3082 vn 0.0001 -0.0014 1.0000 vn 0.0000 -0.9871 0.1600 vn -0.2940 0.9093 -0.2945 vn 0.0009 0.0000 -1.0000 vn 0.0501 0.9638 0.2620 vn 0.0652 -0.2015 0.9773 vn 1.0000 -0.0018 0.0006 vn 0.9802 0.0000 0.1979 vn -0.9847 0.0000 0.1745 vn -0.9952 0.0000 0.0977 vn -0.9885 0.0000 0.1514 vn -0.9887 0.0000 0.1498 vn 0.9516 0.0000 0.3074 vn -0.9984 0.0000 0.0572 vn 0.9980 0.0000 0.0627 vn -0.0097 0.0104 -0.9999 vn 0.9620 0.0000 0.2731 vn -0.0642 0.0000 0.9979 vn -0.9981 0.0000 0.0623 vn -0.0001 -0.9873 -0.1590 vn -0.0001 -0.0014 1.0000 vn 0.2940 0.9093 -0.2945 vn -0.0009 0.0000 -1.0000 vn -0.0501 0.9638 0.2620 vn -0.0652 -0.2015 0.9773 vn 0.0006 -0.0018 1.0000 vn 0.1979 0.0000 0.9802 vn 0.1745 0.0000 -0.9847 vn 0.0977 0.0000 -0.9952 vn 0.1514 0.0000 -0.9885 vn 0.1498 0.0000 -0.9887 vn 0.3075 0.0000 0.9516 vn 0.0572 0.0000 -0.9984 vn 0.0627 0.0000 0.9980 vn -0.9999 0.0104 -0.0097 vn 0.2731 0.0000 0.9620 vn 0.9979 0.0000 -0.0642 vn 0.0623 0.0000 -0.9981 vn -0.1590 -0.9873 -0.0001 vn -0.3079 0.9514 0.0000 vn 0.3082 0.9513 -0.0000 vn 1.0000 -0.0014 -0.0001 vn 0.1600 -0.9871 -0.0000 vn -0.2945 0.9093 0.2940 vn -1.0000 0.0000 -0.0009 vn 0.2620 0.9638 -0.0501 vn 0.9773 -0.2015 -0.0652 vn 0.0006 -0.0018 -1.0000 vn 0.1979 0.0000 -0.9802 vn 0.1745 0.0000 0.9847 vn 0.0977 0.0000 0.9952 vn 0.1514 0.0000 0.9885 vn 0.1498 0.0000 0.9887 vn 0.3074 0.0000 -0.9516 vn 0.0572 0.0000 0.9984 vn 0.0627 0.0000 -0.9980 vn -0.9999 0.0104 0.0097 vn 0.2731 0.0000 -0.9620 vn 0.9979 0.0000 0.0642 vn 0.0623 0.0000 0.9981 vn -0.1590 -0.9873 0.0001 vn 1.0000 -0.0014 0.0001 vn -0.2945 0.9093 -0.2940 vn -1.0000 0.0000 0.0009 vn 0.2620 0.9638 0.0501 vn 0.9773 -0.2015 0.0652 vn 0.2945 0.9093 0.2940 vn 1.0000 -0.0000 -0.0009 vn -0.2620 0.9638 -0.0501 vn -0.9773 -0.2015 -0.0652 vn 0.2944 0.9093 -0.2942 vn 0.2942 0.9093 0.2944 vn -0.2942 0.9093 -0.2944 vn 1.0000 -0.0018 -0.0006 vn 0.9802 0.0000 -0.1979 vn -0.9952 0.0000 -0.0977 vn -0.9887 0.0000 -0.1498 vn 0.9516 0.0000 -0.3074 vn 0.9980 0.0000 -0.0627 vn 0.9620 0.0000 -0.2731 vn -0.0642 0.0000 -0.9979 vn -1.0000 -0.0014 -0.0001 vn 0.1584 -0.9874 -0.0001 vn -0.0001 -0.9874 -0.1584 vn -1.0000 -0.0027 -0.0017 vn -1.0000 0.0055 -0.0020 vn -0.9999 0.0106 0.0030 vn -1.0000 0.0011 -0.0004 vn -1.0000 -0.0004 0.0012 vn 0.0017 -0.0027 -1.0000 vn 0.0020 0.0055 -1.0000 vn -0.0030 0.0106 -0.9999 vn 0.0004 0.0011 -1.0000 vn -0.0012 -0.0004 -1.0000 vn 0.0012 -0.0004 1.0000 vn -0.0004 0.0011 1.0000 vn -0.0020 0.0055 1.0000 vn 0.0030 0.0106 0.9999 vn -0.0017 -0.0027 1.0000 vn -0.1584 -0.9874 0.0001 usemtl Track_equipment s off f 115/53/29 116/54/29 89/55/29 90/56/29 f 115/53/29 98/57/29 97/58/29 116/54/29 f 209/59/30 151/60/30 150/61/30 210/62/30 f 151/60/31 153/63/31 152/64/31 150/65/31 f 211/66/32 153/63/32 151/60/32 209/59/32 f 209/59/30 210/62/30 168/67/30 169/68/30 f 169/68/33 168/69/33 170/70/33 171/71/33 f 211/66/32 209/59/32 169/68/32 171/71/32 usemtl Rails f 613/72/34 600/73/34 82/74/34 81/75/34 f 600/73/35 606/76/35 83/77/35 82/74/35 f 606/76/36 79/78/36 84/79/36 83/77/36 f 599/80/37 613/81/37 81/82/37 617/83/37 f 79/78/38 601/84/38 605/85/38 84/79/38 f 559/86/39 522/87/39 523/88/39 510/89/39 f 539/90/40 542/91/40 621/92/40 623/93/40 f 535/94/41 552/95/41 551/96/41 536/97/41 f 516/98/42 529/99/42 517/100/42 505/101/42 f 506/102/43 518/103/43 519/104/43 507/105/43 f 505/106/44 517/107/44 518/103/44 506/102/44 f 515/108/45 528/109/45 529/110/45 516/111/45 f 512/112/46 525/113/46 526/114/46 513/115/46 f 507/105/47 519/104/47 520/116/47 508/117/47 f 510/118/48 523/119/48 524/120/48 511/121/48 f 514/122/49 527/123/49 528/109/49 515/108/49 f 511/121/50 524/120/50 525/113/50 512/112/50 f 508/117/51 520/116/51 521/124/51 509/125/51 f 513/115/52 526/114/52 527/123/52 514/122/52 f 111/126/31 112/127/31 95/128/31 144/129/31 f 509/125/53 521/124/53 522/130/53 559/131/53 f 506/132/32 507/133/32 508/134/32 509/135/32 559/136/32 510/137/32 511/138/32 512/139/32 513/140/32 514/141/32 515/142/32 516/143/32 505/144/32 f 113/145/54 87/146/54 129/147/54 f 93/148/33 88/149/33 124/150/33 122/151/33 f 96/152/41 95/153/41 112/154/41 117/155/41 f 100/156/31 96/152/31 117/155/31 123/157/31 f 119/158/55 114/159/55 123/160/55 f 114/161/56 92/162/56 100/156/56 123/157/56 f 108/163/57 105/164/57 206/165/57 585/166/57 f 575/167/56 563/168/56 562/169/56 574/170/56 f 568/171/32 109/172/32 597/173/32 567/174/32 f 598/175/32 573/176/32 597/177/32 109/178/32 f 588/179/30 205/180/30 597/181/30 573/182/30 f 103/183/29 572/184/29 598/185/29 109/186/29 f 540/187/58 542/188/58 112/154/58 111/189/58 f 88/190/59 87/191/59 124/192/59 f 120/193/32 111/194/32 144/195/32 f 100/196/60 92/197/60 86/198/60 f 576/199/31 564/200/31 563/201/31 575/202/31 f 203/203/59 107/204/59 105/205/59 104/206/59 f 586/207/29 576/208/29 575/209/29 106/210/29 f 206/165/30 105/164/30 207/211/30 587/212/30 f 108/213/61 104/214/61 105/215/61 f 205/216/33 565/217/33 567/218/33 597/219/33 f 566/220/31 103/221/31 109/222/31 568/223/31 f 105/205/33 107/204/33 204/224/33 207/225/33 f 106/226/62 575/227/62 574/228/62 101/229/62 f 119/230/63 123/231/63 538/232/63 532/233/63 f 122/234/64 547/235/64 530/236/64 121/237/64 f 121/238/65 530/239/65 118/240/65 120/241/65 f 531/242/66 546/243/66 124/244/66 87/245/66 113/145/66 f 123/231/29 117/246/29 539/90/29 538/232/29 f 122/247/67 121/248/67 94/249/67 93/250/67 f 539/90/68 117/246/68 112/251/68 542/252/68 f 137/253/69 149/254/69 136/255/69 125/256/69 f 140/257/70 139/258/70 127/259/70 128/260/70 f 124/261/30 546/262/30 547/263/30 122/264/30 f 118/240/32 540/265/32 111/266/32 120/241/32 f 138/267/71 137/268/71 125/269/71 126/270/71 f 148/271/72 147/272/72 134/273/72 135/274/72 f 144/275/73 143/276/73 131/277/73 86/278/73 f 141/279/74 140/257/74 128/260/74 129/280/74 f 149/281/75 148/271/75 135/274/75 136/282/75 f 143/283/76 142/284/76 130/285/76 131/286/76 f 147/272/77 146/287/77 133/288/77 134/273/77 f 139/258/78 138/267/78 126/270/78 127/259/78 f 148/289/32 149/290/32 137/291/32 138/292/32 139/293/32 140/294/32 141/295/32 142/296/32 143/297/32 144/298/32 145/299/32 146/300/32 147/301/32 f 145/302/79 144/303/79 86/304/79 132/305/79 f 142/284/80 141/279/80 129/280/80 130/285/80 f 146/287/81 145/302/81 132/305/81 133/288/81 f 162/306/56 590/307/56 160/308/56 154/309/56 f 166/310/33 156/311/33 158/312/33 592/313/33 f 592/314/32 158/315/32 157/316/32 167/317/32 f 155/318/31 165/319/31 167/320/31 157/321/31 f 160/308/31 590/307/31 591/322/31 161/323/31 f 196/324/31 191/325/31 201/326/31 f 214/327/29 160/328/29 161/329/29 216/330/29 f 560/331/29 155/332/29 157/333/29 561/334/29 f 218/335/32 561/336/32 157/337/32 158/338/32 f 156/339/30 217/340/30 218/341/30 158/342/30 f 159/343/62 160/328/62 214/327/62 213/344/62 f 172/345/31 192/346/31 196/324/31 f 201/347/82 184/348/82 172/349/82 f 174/350/83 173/351/83 172/349/83 f 172/345/31 194/352/31 192/346/31 f 196/324/31 195/353/31 191/325/31 f 201/347/84 190/354/84 184/348/84 f 190/354/85 189/355/85 184/348/85 f 196/324/31 201/326/31 172/345/31 f 193/356/30 191/357/30 195/358/30 197/359/30 f 190/360/32 201/361/32 193/362/32 f 213/363/62 214/364/62 182/365/62 183/366/62 f 218/367/32 186/368/32 187/369/32 561/370/32 f 182/365/29 214/364/29 216/371/29 180/372/29 f 192/373/30 202/374/30 199/375/30 196/376/30 f 201/377/32 191/378/32 193/379/32 f 189/380/86 190/381/86 193/382/86 197/383/86 f 184/348/87 174/350/87 172/349/87 f 107/384/33 182/385/33 180/386/33 204/387/33 f 217/388/30 188/389/30 186/390/30 218/391/30 f 181/392/29 560/393/29 561/394/29 187/395/29 f 196/376/88 199/375/88 197/383/88 195/396/88 f 202/397/33 174/398/33 184/399/33 199/400/33 f 200/401/59 173/402/59 174/403/59 202/404/59 f 200/405/89 202/406/89 198/407/89 f 184/399/90 189/408/90 197/409/90 199/400/90 f 198/410/57 202/374/57 192/373/57 194/411/57 f 220/412/59 163/413/59 589/414/59 219/415/59 f 178/416/57 220/417/57 219/418/57 212/419/57 f 221/420/33 164/421/33 163/422/33 220/423/33 f 215/424/30 221/425/30 220/426/30 178/427/30 f 224/428/88 225/429/88 241/430/88 242/431/88 f 228/432/91 231/433/91 235/434/91 279/435/91 f 222/436/31 283/437/31 234/438/31 224/439/31 f 229/440/92 223/441/92 227/442/92 271/443/92 f 223/441/33 231/433/33 228/432/33 227/442/33 f 270/444/93 283/445/93 222/446/93 244/447/93 233/448/93 f 230/449/32 277/450/32 240/451/32 226/452/32 f 225/453/94 85/454/94 230/449/94 226/452/94 f 224/455/95 234/456/95 85/457/95 225/458/95 f 229/459/96 232/460/96 223/461/96 f 232/462/62 239/463/62 243/464/62 223/465/62 f 277/466/97 279/467/97 235/468/97 240/469/97 f 237/470/57 244/471/57 222/472/57 f 238/473/98 245/474/98 235/468/98 231/475/98 f 242/476/30 237/477/30 222/478/30 224/479/30 f 243/464/29 238/473/29 231/475/29 223/465/29 f 226/480/32 240/481/32 599/482/32 f 240/483/29 235/484/29 245/485/29 599/486/29 f 233/448/99 244/487/99 83/488/99 f 243/489/100 239/490/100 617/491/100 f 247/492/32 248/493/32 249/494/32 250/495/32 294/496/32 251/497/32 252/498/32 253/499/32 254/500/32 255/501/32 256/502/32 257/503/32 246/504/32 f 250/505/101 262/506/101 296/507/101 294/508/101 f 248/509/102 260/510/102 261/511/102 249/512/102 f 251/513/103 263/514/103 264/515/103 252/516/103 f 255/517/104 267/518/104 268/519/104 256/520/104 f 252/516/105 264/515/105 265/521/105 253/522/105 f 256/520/106 268/519/106 269/523/106 257/524/106 f 246/525/107 258/526/107 259/527/107 247/528/107 f 253/522/108 265/521/108 266/529/108 254/530/108 f 249/512/109 261/511/109 262/506/109 250/505/109 f 294/531/110 296/532/110 263/533/110 251/534/110 f 247/528/111 259/527/111 260/510/111 248/509/111 f 257/535/112 269/536/112 258/537/112 246/538/112 f 254/530/113 266/529/113 267/518/113 255/517/113 f 274/539/98 291/540/98 290/541/98 275/542/98 f 228/432/114 279/435/114 284/543/114 280/544/114 f 272/545/31 274/546/31 234/438/31 283/437/31 f 278/547/92 271/443/92 227/442/92 273/548/92 f 273/548/33 227/442/33 228/432/33 280/544/33 f 270/444/93 282/549/93 293/550/93 272/551/93 283/445/93 f 230/449/32 276/552/32 289/553/32 277/450/32 f 275/554/115 276/552/115 230/449/115 85/454/115 f 274/555/95 275/556/95 85/457/95 234/456/95 f 278/557/89 273/558/89 281/559/89 f 281/560/57 273/561/57 286/562/57 288/563/57 f 277/466/86 289/564/86 284/565/86 279/467/86 f 292/566/62 272/567/62 293/568/62 f 287/569/88 280/570/88 284/565/88 295/571/88 f 291/572/29 274/573/29 272/574/29 292/575/29 f 286/562/30 273/561/30 280/570/30 287/569/30 f 276/576/32 294/577/32 289/578/32 f 289/579/30 294/580/30 295/581/30 284/582/30 f 282/549/116 265/583/116 293/584/116 f 286/585/117 296/586/117 288/587/117 f 299/588/32 298/589/32 309/590/32 308/591/32 307/592/32 306/593/32 305/594/32 304/595/32 303/596/32 341/597/32 302/598/32 301/599/32 300/600/32 f 302/601/118 341/602/118 348/603/118 314/604/118 f 300/605/119 301/606/119 313/607/119 312/608/119 f 303/609/120 304/610/120 316/611/120 315/612/120 f 307/613/121 308/614/121 320/615/121 319/616/121 f 304/610/122 305/617/122 317/618/122 316/611/122 f 308/614/123 309/619/123 321/620/123 320/615/123 f 298/621/124 299/622/124 311/623/124 310/624/124 f 305/617/125 306/625/125 318/626/125 317/618/125 f 301/606/126 302/601/126 314/604/126 313/607/126 f 341/627/127 303/628/127 315/629/127 348/630/127 f 299/622/128 300/605/128 312/608/128 311/623/128 f 309/631/129 298/632/129 310/633/129 321/634/129 f 306/625/130 307/613/130 319/616/130 318/626/130 f 326/635/98 327/636/98 343/637/98 344/638/98 f 381/639/131 332/640/131 336/641/131 384/642/131 f 324/643/33 335/644/33 388/645/33 326/646/33 f 330/647/132 325/648/132 329/649/132 375/650/132 f 325/648/31 332/640/31 381/639/31 329/649/31 f 323/651/133 335/652/133 324/653/133 347/654/133 334/655/133 f 331/656/32 382/657/32 342/658/32 328/659/32 f 327/660/134 322/661/134 331/656/134 328/659/134 f 326/662/135 388/663/135 322/664/135 327/665/135 f 330/666/136 333/667/136 325/668/136 f 333/669/57 346/670/57 339/671/57 325/672/57 f 382/673/137 384/674/137 336/675/137 342/676/137 f 338/677/62 347/678/62 324/679/62 f 340/680/88 345/681/88 336/675/88 332/682/88 f 344/683/29 338/684/29 324/685/29 326/686/29 f 339/671/30 340/680/30 332/682/30 325/672/30 f 328/687/32 342/688/32 341/689/32 f 342/690/30 336/691/30 345/692/30 341/693/30 f 334/655/138 347/694/138 317/695/138 f 339/696/139 346/697/139 348/698/139 f 351/699/32 352/700/32 353/701/32 354/702/32 400/703/32 355/704/32 356/705/32 357/706/32 358/707/32 359/708/32 360/709/32 361/710/32 350/711/32 f 354/712/140 366/713/140 367/714/140 400/715/140 f 352/716/141 364/717/141 365/718/141 353/719/141 f 355/720/142 368/721/142 369/722/142 356/723/142 f 359/724/143 372/725/143 373/726/143 360/727/143 f 356/723/144 369/722/144 370/728/144 357/729/144 f 360/727/145 373/726/145 374/730/145 361/731/145 f 350/732/146 362/733/146 363/734/146 351/735/146 f 357/729/147 370/728/147 371/736/147 358/737/147 f 353/719/148 365/718/148 366/713/148 354/712/148 f 400/738/149 367/739/149 368/740/149 355/741/149 f 351/735/150 363/734/150 364/717/150 352/716/150 f 361/742/151 374/743/151 362/744/151 350/745/151 f 358/737/152 371/736/152 372/725/152 359/724/152 f 378/746/88 395/747/88 394/748/88 379/749/88 f 381/639/153 384/642/153 389/750/153 385/751/153 f 376/752/33 378/753/33 388/645/33 335/644/33 f 383/754/132 375/650/132 329/649/132 377/755/132 f 377/755/31 329/649/31 381/639/31 385/751/31 f 323/651/133 387/756/133 399/757/133 376/758/133 335/652/133 f 331/656/32 380/759/32 391/760/32 382/657/32 f 379/761/154 380/759/154 331/656/154 322/661/154 f 378/762/135 379/763/135 322/664/135 388/663/135 f 383/764/155 377/765/155 386/766/155 f 386/767/62 377/768/62 397/769/62 396/770/62 f 382/673/156 391/771/156 389/772/156 384/674/156 f 398/773/57 376/774/57 399/775/57 f 392/776/98 385/777/98 389/772/98 393/778/98 f 395/779/30 378/780/30 376/781/30 398/782/30 f 397/769/29 377/768/29 385/777/29 392/776/29 f 380/783/32 400/784/32 391/785/32 f 391/786/29 400/787/29 393/788/29 389/789/29 f 387/756/157 370/790/157 399/791/157 f 397/792/158 367/793/158 396/794/158 f 403/795/32 402/796/32 414/797/32 413/798/32 412/799/32 411/800/32 410/801/32 409/802/32 408/803/32 407/804/32 406/805/32 405/806/32 404/807/32 f 406/808/159 407/809/159 453/810/159 419/811/159 f 404/812/160 405/813/160 418/814/160 417/815/160 f 408/816/161 409/817/161 421/818/161 420/819/161 f 412/820/162 413/821/162 425/822/162 424/823/162 f 409/817/163 410/824/163 422/825/163 421/818/163 f 413/821/164 414/826/164 426/827/164 425/822/164 f 402/828/165 403/829/165 416/830/165 415/831/165 f 410/824/166 411/832/166 423/833/166 422/825/166 f 405/813/167 406/808/167 419/811/167 418/814/167 f 407/834/168 408/835/168 420/836/168 453/837/168 f 403/829/169 404/812/169 417/815/169 416/830/169 f 414/838/170 402/839/170 415/840/170 426/841/170 f 411/832/171 412/820/171 424/823/171 423/833/171 f 432/842/41 433/843/41 447/844/41 448/845/41 f 484/846/172 439/847/172 451/848/172 438/849/172 f 430/850/29 490/851/29 491/852/29 432/853/29 f 437/854/173 431/855/173 435/856/173 429/857/173 f 431/855/30 439/847/30 484/846/30 435/856/30 f 428/858/174 490/859/174 430/860/174 452/861/174 441/862/174 f 486/863/32 436/864/32 442/865/32 434/866/32 f 433/867/175 427/868/175 486/863/175 434/866/175 f 432/869/176 491/870/176 427/871/176 433/872/176 f 437/873/177 440/874/177 431/875/177 f 440/876/59 449/877/59 444/878/59 431/879/59 f 436/880/178 438/881/178 451/882/178 442/883/178 f 450/884/56 452/885/56 430/886/56 f 445/887/67 446/888/67 451/882/67 439/889/67 f 448/890/31 450/891/31 430/892/31 432/893/31 f 444/878/33 445/887/33 439/889/33 431/879/33 f 434/894/32 442/895/32 407/896/32 f 442/897/33 451/898/33 446/899/33 407/900/33 f 441/862/179 452/901/179 422/902/179 f 444/903/180 449/904/180 453/905/180 f 455/906/32 456/907/32 457/908/32 458/909/32 503/910/32 459/911/32 460/912/32 461/913/32 462/914/32 463/915/32 464/916/32 465/917/32 454/918/32 f 458/919/181 470/920/181 471/921/181 503/922/181 f 456/923/182 468/924/182 469/925/182 457/926/182 f 459/927/183 472/928/183 473/929/183 460/930/183 f 463/931/184 476/932/184 477/933/184 464/934/184 f 460/930/185 473/929/185 474/935/185 461/936/185 f 464/934/186 477/933/186 478/937/186 465/938/186 f 454/939/187 466/940/187 467/941/187 455/942/187 f 461/936/188 474/935/188 475/943/188 462/944/188 f 457/926/189 469/925/189 470/920/189 458/919/189 f 503/945/190 471/946/190 472/947/190 459/948/190 f 455/942/191 467/941/191 468/924/191 456/923/191 f 465/949/192 478/950/192 466/951/192 454/952/192 f 462/944/193 475/943/193 476/932/193 463/931/193 f 481/953/67 497/954/67 496/955/67 482/956/67 f 484/846/194 438/849/194 492/957/194 487/958/194 f 479/959/29 481/960/29 491/852/29 490/851/29 f 485/961/173 429/857/173 435/856/173 480/962/173 f 480/962/30 435/856/30 484/846/30 487/958/30 f 428/858/174 489/963/174 501/964/174 479/965/174 490/859/174 f 486/863/32 483/966/32 499/967/32 436/864/32 f 482/968/195 483/966/195 486/863/195 427/868/195 f 481/969/176 482/970/176 427/871/176 491/870/176 f 485/971/196 480/972/196 488/973/196 f 488/974/56 480/975/56 494/976/56 498/977/56 f 436/880/197 499/978/197 492/979/197 438/881/197 f 500/980/59 479/981/59 501/982/59 f 495/983/41 487/984/41 492/979/41 502/985/41 f 497/986/33 481/987/33 479/988/33 500/989/33 f 494/976/31 480/975/31 487/984/31 495/983/31 f 483/990/32 503/991/32 499/992/32 f 499/993/31 503/994/31 502/995/31 492/996/31 f 489/963/198 474/997/198 501/998/198 f 494/999/199 471/1000/199 498/1001/199 f 541/1002/62 626/1003/62 624/1004/62 534/1005/62 f 534/1006/29 624/1007/29 623/93/29 543/1008/29 f 531/242/66 545/1009/66 558/1010/66 533/1011/66 546/243/66 f 118/1012/32 537/1013/32 619/1014/32 540/1015/32 f 541/1016/200 534/1017/200 544/1018/200 f 544/1019/59 534/1020/59 556/1021/59 554/1022/59 f 540/1023/201 619/1024/201 621/1025/201 542/1026/201 f 557/1027/56 533/1028/56 558/1029/56 f 550/1030/67 543/1031/67 548/1032/67 553/1033/67 f 552/1034/31 535/1035/31 533/1036/31 557/1037/31 f 556/1021/33 534/1020/33 543/1031/33 550/1030/33 f 537/1038/32 559/1039/32 555/1040/32 f 555/1041/33 559/1042/33 553/1043/33 548/1044/33 f 545/1009/202 525/1045/202 558/1046/202 f 556/1047/203 522/1048/203 554/1049/203 f 159/1050/204 154/1051/204 160/1052/204 f 565/1053/33 181/1054/33 187/1055/33 567/1056/33 f 568/1057/32 567/1058/32 187/1059/32 186/1060/32 f 188/1061/31 566/1062/31 568/1063/31 186/1064/31 f 185/1065/59 182/385/59 107/384/59 203/1066/59 f 570/1067/57 178/1068/57 212/1069/57 569/1070/57 f 563/1071/56 570/1072/56 569/1073/56 562/1074/56 f 571/1075/30 215/1076/30 178/1077/30 570/1078/30 f 564/1079/31 571/1080/31 570/1081/31 563/1082/31 f 185/1083/205 183/1084/205 182/1085/205 f 585/1086/57 206/1087/57 583/1088/57 577/1089/57 f 572/1090/29 579/1091/29 581/1092/29 598/1093/29 f 598/1094/32 581/1095/32 580/1096/32 573/1097/32 f 578/1098/30 588/1099/30 573/1100/30 580/1101/30 f 583/1088/30 206/1087/30 587/1102/30 584/1103/30 f 590/1104/31 583/1105/31 584/1106/31 591/1107/31 f 165/1108/31 578/1109/31 580/1110/31 167/1111/31 f 592/1112/32 167/1113/32 580/1114/32 581/1115/32 f 579/1116/33 166/1117/33 592/1118/33 581/1119/33 f 582/1120/56 583/1105/56 590/1104/56 162/1121/56 f 594/1122/62 106/1123/62 101/1124/62 593/1125/62 f 163/1126/59 594/1127/59 593/1128/59 589/1129/59 f 595/1130/29 586/1131/29 106/1132/29 594/1133/29 f 164/1134/33 595/1135/33 594/1136/33 163/1137/33 f 582/1138/206 577/1139/206 583/1140/206 f 609/1141/32 608/1142/32 616/1143/32 615/1144/32 601/1145/32 79/1146/32 606/1147/32 600/1148/32 613/1149/32 599/1150/32 612/1151/32 611/1152/32 610/1153/32 f 612/1154/207 599/1155/207 617/1156/207 604/1157/207 f 610/1158/208 611/1159/208 607/1160/208 603/1161/208 f 601/84/209 615/1162/209 614/1163/209 605/85/209 f 615/1162/210 616/1164/210 618/1165/210 614/1163/210 f 608/1166/211 609/1167/211 80/1168/211 602/1169/211 f 611/1159/212 612/1154/212 604/1157/212 607/1160/212 f 609/1167/213 610/1158/213 603/1161/213 80/1168/213 f 616/1170/214 608/1171/214 602/1172/214 618/1173/214 f 619/1014/32 537/1013/32 555/1174/32 f 621/1025/201 619/1024/201 555/1175/201 548/1032/201 f 535/1176/64 536/1177/64 530/1178/64 547/1179/64 f 536/1180/215 537/1013/215 118/1012/215 530/1181/215 f 533/1182/30 535/1183/30 547/1184/30 546/1185/30 f 623/93/216 621/92/216 548/1186/216 543/1008/216 f 623/93/29 624/1007/29 538/232/29 539/90/29 f 624/1187/63 626/1188/63 532/1189/63 538/1190/63 f 629/1191/56 643/1192/56 642/1193/56 627/1194/56 f 627/1195/31 642/1196/31 641/1197/31 630/1198/31 f 629/1199/155 627/1200/155 631/1201/155 f 631/1202/62 627/1203/62 637/1204/62 635/1205/62 f 633/1206/98 630/1207/98 632/1208/98 634/1209/98 f 637/1204/29 627/1203/29 630/1207/29 633/1206/29 f 628/1210/32 638/1211/32 636/1212/32 f 636/1213/29 638/1214/29 634/1215/29 632/1216/29 f 639/1217/32 628/1218/32 636/1219/32 f 640/1220/156 639/1221/156 636/1222/156 632/1208/156 f 641/1197/217 640/1223/217 632/1224/217 630/1198/217 f 641/1225/218 642/1226/218 644/1227/218 f 633/1228/33 628/1229/33 644/1230/33 f 628/1231/219 639/1232/219 641/1225/219 f 639/1232/220 640/1233/220 641/1225/220 f 642/1226/221 643/1234/221 644/1227/221 f 628/1231/222 641/1225/222 644/1227/222 f 644/1230/33 635/1235/33 637/1236/33 f 633/1228/33 634/1237/33 638/1238/33 f 644/1230/33 637/1236/33 633/1228/33 f 633/1228/33 638/1238/33 628/1229/33 f 647/1239/62 661/1240/62 660/1241/62 645/1242/62 f 645/1243/29 660/1244/29 659/1245/29 648/1246/29 f 647/1247/200 645/1248/200 649/1249/200 f 649/1250/59 645/1251/59 655/1252/59 653/1253/59 f 651/1254/67 648/1255/67 650/1256/67 652/1257/67 f 655/1252/33 645/1251/33 648/1255/33 651/1254/33 f 646/1258/32 656/1259/32 654/1260/32 f 654/1261/33 656/1262/33 652/1263/33 650/1264/33 f 657/1265/32 646/1266/32 654/1267/32 f 658/1268/201 657/1269/201 654/1270/201 650/1256/201 f 659/1245/216 658/1271/216 650/1272/216 648/1246/216 f 659/1273/223 660/1274/223 662/1275/223 f 651/1276/30 646/1277/30 662/1278/30 f 646/1279/224 657/1280/224 659/1273/224 f 657/1280/225 658/1281/225 659/1273/225 f 660/1274/226 661/1282/226 662/1275/226 f 646/1279/227 659/1273/227 662/1275/227 f 662/1278/30 653/1283/30 655/1284/30 f 651/1276/30 652/1285/30 656/1286/30 f 662/1278/30 655/1284/30 651/1276/30 f 651/1276/30 656/1286/30 646/1277/30 f 674/1287/29 669/1288/29 679/1289/29 f 663/1290/29 670/1291/29 674/1287/29 f 679/1292/228 666/1293/228 663/1294/228 f 665/1295/229 664/1296/229 663/1294/229 f 663/1290/29 672/1297/29 670/1291/29 f 674/1287/29 673/1298/29 669/1288/29 f 679/1292/230 668/1299/230 666/1293/230 f 668/1299/231 667/1300/231 666/1293/231 f 674/1287/29 679/1289/29 663/1290/29 f 671/1301/31 669/1302/31 673/1303/31 675/1304/31 f 668/1305/32 679/1306/32 671/1307/32 f 670/1308/31 680/1309/31 677/1310/31 674/1311/31 f 679/1312/32 669/1313/32 671/1314/32 f 667/1315/197 668/1316/197 671/1317/197 675/1318/197 f 666/1293/232 665/1295/232 663/1294/232 f 674/1311/41 677/1310/41 675/1318/41 673/1319/41 f 680/1320/30 665/1321/30 666/1322/30 677/1323/30 f 678/1324/57 664/1325/57 665/1326/57 680/1327/57 f 678/1328/196 680/1329/196 676/1330/196 f 666/1322/233 667/1331/233 675/1332/233 677/1323/233 f 676/1333/56 680/1309/56 670/1308/56 672/1334/56 l 91 89 l 99 97 l 204 102 l 271 270 l 397 398 l 429 428 l 532 531 l 556 557 l 100 88 l 203 176 l 175 562 l 243 237 l 286 292 l 375 323 l 339 338 l 444 450 l 494 500 o dtrack_xing_st.001_BezierCurve.005 v -0.500000 2.379186 -0.011732 v -0.500000 2.400814 -0.011732 v -0.500000 2.379186 -0.000000 v 0.011733 2.379186 -0.500000 v 0.011733 2.400814 -0.500000 v 0.500000 2.379186 -0.011732 v 0.500000 2.400814 -0.011732 v 0.000000 2.379186 -0.500000 v -0.000000 2.379186 -0.011732 v -0.000000 2.400814 -0.011732 v 0.011732 2.379186 0.500000 v 0.011732 2.400814 0.500000 v -0.000000 2.379186 0.500000 v 0.011732 2.379186 -0.000000 v 0.011732 2.400814 -0.000000 v 0.500000 2.379186 0.000000 v -0.000000 2.379186 -0.000000 vt 0.704530 0.362679 vt 0.697187 0.362679 vt 0.697188 0.675589 vt 0.704530 0.675589 vt 0.704530 0.362679 vt 0.697187 0.362679 vt 0.655433 0.362679 vt 0.668968 0.362679 vt 0.668968 0.675589 vt 0.655432 0.675589 vt 0.711873 0.362679 vt 0.711873 0.675589 vt 0.704530 0.362679 vt 0.655433 0.362679 vt 0.668968 0.362679 vt 0.711873 0.362679 vt 0.704530 0.362679 vt 0.683653 0.362679 vt 0.683653 0.675589 vt 0.683653 0.362679 vn 0.0000 -1.0000 0.0000 vn 1.0000 0.0000 0.0000 vn 0.0000 0.0000 -1.0000 usemtl Track_equipment s off f 683/1335/234 681/1336/234 689/1337/234 697/1338/234 f 696/1339/234 697/1338/234 689/1337/234 686/1340/234 f 684/1341/235 685/1342/235 695/1343/235 694/1344/235 f 684/1345/234 694/1346/234 697/1338/234 688/1347/234 f 691/1348/235 694/1344/235 695/1343/235 692/1349/235 f 691/1350/234 693/1351/234 697/1338/234 694/1346/234 usemtl Invisible_Bar f 689/1337/236 681/1336/236 682/1352/236 690/1353/236 f 689/1337/236 690/1353/236 687/1354/236 686/1340/236 o dtrack_xing_st.002_BezierCurve.006 v -0.521194 -0.510000 -0.434999 v 0.521194 -0.510000 -0.435000 v 0.521194 -0.510000 -0.315000 v -0.521194 -0.510000 -0.314999 v -0.521193 -0.460000 -0.434999 v 0.521194 -0.460000 -0.435000 v 0.521194 -0.460000 -0.315001 v -0.521194 -0.460000 -0.314999 v 0.521194 -0.510001 0.435000 v -0.521194 -0.510000 0.435000 v -0.521194 -0.510000 0.315000 v 0.521194 -0.510001 0.315000 v 0.521194 -0.460001 0.435000 v -0.521194 -0.460000 0.435000 v -0.521194 -0.460000 0.315000 v 0.521194 -0.460001 0.315000 v -0.521194 -0.510000 -0.187861 v 0.521194 -0.510000 -0.187863 v 0.521194 -0.510000 -0.067863 v -0.521194 -0.510000 -0.067861 v -0.521193 -0.460000 -0.187861 v 0.521194 -0.460000 -0.187862 v 0.521194 -0.460000 -0.067862 v -0.521194 -0.460000 -0.067861 v 0.521194 -0.510000 0.187862 v -0.521194 -0.510000 0.187862 v -0.521194 -0.510000 0.067862 v 0.521194 -0.510000 0.067861 v 0.521193 -0.460000 0.187862 v -0.521194 -0.460000 0.187862 v -0.521194 -0.460000 0.067862 v 0.521194 -0.460000 0.067861 vt 0.958794 0.823362 vt 0.883696 0.823362 vt 0.883694 0.173968 vt 0.958793 0.173968 vt 0.990085 0.823362 vt 0.990085 0.173968 vt 0.852403 0.173968 vt 0.852404 0.823363 vt 0.958794 0.823362 vt 0.883696 0.823362 vt 0.883694 0.173968 vt 0.958793 0.173968 vt 0.990085 0.823362 vt 0.990085 0.173968 vt 0.852403 0.173968 vt 0.852404 0.823363 vt 0.958794 0.823362 vt 0.883696 0.823362 vt 0.883694 0.173968 vt 0.958793 0.173968 vt 0.990085 0.823362 vt 0.990085 0.173968 vt 0.852403 0.173968 vt 0.852404 0.823363 vt 0.958794 0.823362 vt 0.883696 0.823362 vt 0.883694 0.173968 vt 0.958793 0.173968 vt 0.990085 0.823362 vt 0.990085 0.173968 vt 0.852403 0.173968 vt 0.852404 0.823363 vt 0.958794 0.845266 vt 0.883696 0.845266 vt 0.958793 0.152064 vt 0.883694 0.152064 vt 0.958793 0.152064 vt 0.883694 0.152064 vt 0.958794 0.845266 vt 0.883696 0.845266 vt 0.958794 0.845266 vt 0.883696 0.845266 vt 0.958793 0.152064 vt 0.883694 0.152064 vt 0.958794 0.845266 vt 0.883696 0.845266 vt 0.958793 0.152064 vt 0.883694 0.152064 vn -0.0000 1.0000 0.0000 vn -0.0000 0.0000 -1.0000 vn 0.0000 0.0000 1.0000 vn 1.0000 0.0000 0.0000 vn -1.0000 0.0000 -0.0000 usemtl Sleepers s off f 702/1355/237 705/1356/237 704/1357/237 703/1358/237 f 698/1359/238 702/1355/238 703/1358/238 699/1360/238 f 700/1361/239 704/1357/239 705/1356/239 701/1362/239 f 710/1363/237 713/1364/237 712/1365/237 711/1366/237 f 706/1367/239 710/1363/239 711/1366/239 707/1368/239 f 708/1369/238 712/1365/238 713/1364/238 709/1370/238 f 718/1371/237 721/1372/237 720/1373/237 719/1374/237 f 714/1375/238 718/1371/238 719/1374/238 715/1376/238 f 716/1377/239 720/1373/239 721/1372/239 717/1378/239 f 726/1379/237 729/1380/237 728/1381/237 727/1382/237 f 722/1383/239 726/1379/239 727/1382/239 723/1384/239 f 724/1385/238 728/1381/238 729/1380/238 725/1386/238 f 710/1363/240 706/1387/240 709/1388/240 713/1364/240 f 699/1389/240 703/1358/240 704/1357/240 700/1390/240 f 715/1391/240 719/1374/240 720/1373/240 716/1392/240 f 726/1379/240 722/1393/240 725/1394/240 729/1380/240 f 702/1355/241 698/1395/241 701/1396/241 705/1356/241 f 707/1397/241 711/1366/241 712/1365/241 708/1398/241 f 718/1371/241 714/1399/241 717/1400/241 721/1372/241 f 723/1401/241 727/1382/241 728/1381/241 724/1402/241