RCT remaining tasks

For discussion of specific patterns or specific families of patterns, both newly-discovered and well-known.
User avatar
dvgrn
Moderator
Posts: 10612
Joined: May 17th, 2009, 11:00 pm
Location: Madison, WI
Contact:

Re: RCT remaining tasks

Post by dvgrn » November 5th, 2022, 9:18 am

Pavgran wrote:
November 4th, 2022, 10:24 pm
... here's current semilator. It includes working SE and SW cleanup.
This is totally awesome. The cleanup problem is down to a single long diagonal line of ... miscellaneous stuff. And my claimed task of a NW Corderfleet recipe seems to be one of the next things that needs to be added (technically _before_ the SW cleanup, but it will be easy to patch that in).

In case anyone isn't aware that these "rct16" partial patterns can all easily be run by Golly

(!)

... here's a helper script to allow for looking at some of the interesting parts of the RCT's evolution a little more easily.

As the comments say, open Pavgran's November 4-5 "rct16.mc.gz" pattern in (preferably) a newly opened instance of Golly, then run the script.

Code: Select all

# rct16-5Nov2022-viewer.py
# This viewer is full of magic numbers that are completely specific to the
#   4-5 November 2022 version of the rc16.mc.gz pattern that Pavgran posted here:
#     https://conwaylife.com/forums/viewtopic.php?p=153121#p153121
# Open that pattern in an instance of Golly with only one layer,
#   then run this "viewer" script.

import golly as g
from time import sleep

if g.numlayers() > 1:
  g.exit("Please open an instance of Golly with the 5 November rct16.mc.gz file open in a single layer.")
oldtile = g.setoption("tilelayers", True)

g.setbase(2)
g.setstep(30)
g.setpos("0","0")
g.setmag(-29)
g.setpos("870","870")

g.autoupdate(True)

def dosteps(i):
  while i>0:
    i-=1
    g.step()
    
def zoomin(n,delay):
  if g.getmag()>n:
    g.note("zoomin called incorrectly")
  else:
    while g.getmag()<n:
      g.setmag(g.getmag()+1)
      sleep(delay)

def zoomout(n,delay):
  if g.getmag()<n:
    g.note("zoomout called incorrectly")
  else:
    while g.getmag()>n:
      g.setmag(g.getmag()-1)
      sleep(delay)

def panzoomto(n,strx,stry,delay):
  # eventually implement a gradual pan/zoom combination here?
  g.setmag(n)
  g.setpos(strx,stry)

g.setname("Reverse Caber Tosser")
g.clone()
g.setname("The Far Southeast Corner")
g.setpos('103050796138', '103050796138')
g.setmag(0)
g.setlayer(0)

g.show("Fast-forwarding to first collision of gliders from GPSEs...")
dosteps(383)
zoomin(-20, .2)
g.setstep(24)
dosteps(57)
zoomin(-12, .2)
g.setstep(18)
dosteps(14)
zoomin(-7, .2)
g.setstep(12)
dosteps(23)
g.setpos("1000","-925")
zoomin(-2, .2)
g.setstep(8)
dosteps(27)
panzoomto(1,"1530","-1530",.2)
g.setstep(4)
dosteps(50)

# initial RCT elbow has been placed
g.setstep(30)
g.show("Fast-forwarding to the first Bit-Reading Glider return...")
dosteps(383)
g.show("")
panzoomto(1,"1530","-1530",.2)

# could slow down to show the Bit-Reading Glider coming back from the southeast
# -- the glider arrives at the elbow around T = 824,406,377,504, and
# one more "real" RCT glider arrives 206,101,592,832 ticks later, 
# before the simulated semilator gliders start arriving --
# but for now, just show the build process
g.step()
sleep(1)
g.show("Fast-forwarding to the next Bit-Reading Glider return...")
g.setstep(28)
zoomout(-3, .2)
panzoomto(-3,"1000","-925",.2)
dosteps(767)
g.show("Building the DBCA...")
dosteps(307)
# here the DBCA is almost ready to be activated -- could slow down to show that in detail,
# or anyone can just uncomment the following line to stop at this point
# g.exit()
g.show("Building the ECCA (much more efficiently) using the DBCA...")
dosteps(45)
g.show("N-glider absorber is in action -- construction recipe for SE Corderabsorbers is going out...")
dosteps(91)  # not sure exactly how long this should be really
g.show("Construction recipe for SE Corderabsorbers is traveling to the far southeast...")
dosteps(1400)
g.show("SE Corderabsorber / pseudo-BSRD recipe is about to arrive in the far southeast")
dosteps(48)
g.show("SE Corderabsorber / pseudo-BSRD construction complete.")
sleep(5)
g.show("Fast-forwarding to pseudo-BSRD gliders returning to epicentre -- this will be slow until T=1.544 trillion ticks...")
dosteps(1534)
g.show("ECCA is about to be activated.")
g.setoption("tilelayers", oldtile)
while g.numlayers()>1:
  g.dellayer()
g.setname("Reverse Caber Tosser")
panzoomto(-3,"1000","-925",.2)
Watch the status bar for a short description of what's happening at each stage.

The "Fast-forwarding to pseudo-BSRD gliders returning to epicentre" stage is initially slow because the gliders bouncing through the pseudo-BSRD get folded back and are traveling next to each other in two opposite directions for a while. Not to worry -- at T=1.544 trillion ticks, the boustrophedonic gliders will all have passed each other and Golly will shift back to Ludicrous Speed.

I didn't animate anything after the point where the ECCA is about to get activated by returning gliders from the pseudo-BSRD, but the settings that the script leaves the RCT in should be a good starting point for watching the SE and SW Corderfleet launches -- not too many speed changes are needed after that point.

Script Improvements Wanted
I don't plan on doing any more work on this script, so if someone wants to take it over and set it up to show off more of the action at the various stages, that would be much appreciated! I've left comments at various points where it would be good to slow down a bit and zoom in and show what's happening in a little more detail.

Failing that, if there's a point that you're interested in that goes by too quickly , just add a "g.exit()" to the script at that point, and use Golly to explore from there.

This script will _only_ work properly for the November 4-5 rct16.mc.gz pattern. As soon as someone recompiles a new rct16 pattern and adds even a single extra bit to the RCT recipe, most of the script won't work right any more -- all the magic numbers will have to change.

It seemed like it was worth showing off what a Golly script could do at this point, anyway. It won't be too terribly difficult to replace all the magic numbers with formulas, such that the script will work for any size rct16 pattern.

User avatar
calcyman
Moderator
Posts: 2932
Joined: June 1st, 2009, 4:32 pm

Re: RCT remaining tasks

Post by calcyman » November 5th, 2022, 10:14 am

dvgrn wrote:
November 5th, 2022, 9:18 am
Script Improvements Wanted
I don't plan on doing any more work on this script, so if someone wants to take it over and set it up to show off more of the action at the various stages, that would be much appreciated! I've left comments at various points where it would be good to slow down a bit and zoom in and show what's happening in a little more details.
I think that this is something that can be added to the current repository with a modicum of effort:
  • The construction arm compiler functions in make_binary.py will need to be modified to be stateful and streaming, so that you can input source gliders into the function and it produces the equivalent binary, instead of the current functions which expect everything at once.
  • Then, we can add a 'tagging' system: at various points in the recipe we can insert a 'tag' (this will go into a separate file) containing the spatial location (in parsec coordinates, so (0, 0) for the epicentre, (1, 1) for the BSRD, etc.), temporal offset (number of aeons that the gliders from the RCT have spent travelling since they first arrived at the epicentre), and metadata (descriptive comment, recommended step size, zoom scale, etc.). Adding a tag will be as simple as calling a function in make_binary.py interleaved in the various function calls to the recipe compilers.
  • Finally, semilate.py reads the tag file and computes actual spacetime locations (Golly coordinates) of the various tags, sorting them in increasing chronological order (not necessarily the same as recipe order, owing to delays as gliders and/or Corderships travel around), outputting a Golly Python script for running the rct16.mc pattern.
As an example, the SW-travelling Corderships entering the Corderabsorber seed could be tagged with a spatial location of (-1, 1) and a temporal offset of 20 (because it takes 4 aeons to reach the BSRD, 4 aeons to return to the epicentre, and 12 aeons for the Corderships to travel that last parsec). Then make_binary.py determines the position in the binary recipe, and semilate.py converts all of that information to actual spacetime coordinates.
What do you do with ill crystallographers? Take them to the mono-clinic!

AlbertArmStain
Posts: 1233
Joined: January 28th, 2022, 7:18 pm
Location: Planet Z

Re: RCT remaining tasks

Post by AlbertArmStain » November 5th, 2022, 7:17 pm

AlbertArmStain wrote:
November 3rd, 2022, 5:38 pm

Here's a suboptimal 17 seed:

Code: Select all

x = 2804, y = 3285, rule = LifeHistory
995.2D$994.B2D$993.4B$992.7B$991.4B.4B$990.4B2.5B$989.4B5.4B$988.4B7.
4B$987.4B9.4B$986.4B11.4B$985.4B13.4B$984.4B15.4B$983.4B17.4B$982.4B19.
4B$981.4B21.4B$980.4B23.4B$979.4B25.4B$978.4B27.4B$977.4B29.4B$976.4B
31.4B$975.4B33.4B$974.4B35.4B$973.4B37.4B$972.4B39.4B$971.4B41.4B$970.
4B43.4B$969.4B45.4B$968.4B47.4B$967.4B49.4B$966.4B51.4B$965.4B53.4B$964.
4B55.4B$963.4B57.4B$962.4B59.4B$961.4B61.4B$960.4B63.4B$959.4B65.4B$958.
4B67.4B$957.4B69.4B$956.4B71.4B$955.4B73.4B$954.4B75.4B$953.4B77.4B$952.
4B79.4B$951.4B81.4B$950.4B83.4B$949.4B85.4B$948.4B87.4B$947.4B89.4B$946.
4B91.4B$945.4B93.4B$944.4B95.4B$943.4B97.4B$942.4B99.4B$941.4B101.4B$
940.4B103.4B$939.4B105.4B$938.4B107.4B$937.4B109.4B$936.4B111.4B$935.
4B113.4B$934.4B115.4B$933.4B117.4B$932.4B119.4B$931.4B121.4B$930.4B123.
4B$929.4B125.4B$928.4B127.4B$927.4B129.4B$926.4B131.4B$925.4B133.4B$924.
4B135.4B$923.4B137.4B$922.4B139.4B$921.4B141.4B$920.4B143.4B$919.4B145.
4B$918.4B147.4B$917.4B149.4B$916.4B151.4B$915.4B153.4B$914.4B155.4B$913.
4B157.4B$912.4B159.4B$911.4B161.4B$910.4B163.4B$909.4B165.4B$908.4B167.
4B$907.4B169.4B$906.4B171.4B$905.4B173.4B$904.4B175.4B$903.4B177.4B$902.
4B179.4B$901.4B181.4B$900.4B183.4B$899.4B185.4B$898.4B187.4B$897.4B189.
4B$896.4B191.4B$895.4B193.4B$894.4B195.4B$893.4B197.4B$892.4B199.4B$891.
4B201.4B$890.4B203.4B$889.4B205.4B$888.4B207.4B$887.4B209.4B$886.4B211.
4B$885.4B213.4B$884.4B215.4B$883.4B217.4B$882.4B219.4B$881.4B221.4B$880.
4B223.4B$879.4B225.4B$878.4B227.4B$877.4B229.4B$876.4B231.4B$875.4B233.
4B$874.4B235.4B$873.4B237.4B$872.4B239.4B$871.4B241.4B$870.4B243.4B$869.
4B245.4B$868.4B247.4B$867.4B249.4B$866.4B251.4B$865.4B253.4B$864.4B255.
4B$863.4B257.4B$862.4B259.4B$861.4B261.4B$860.4B263.4B$859.4B265.4B$858.
4B267.4B$857.4B269.4B$856.4B271.4B$855.4B273.4B$854.4B275.4B$853.4B277.
4B$852.4B279.4B$851.4B281.4B$850.4B283.4B$849.4B285.4B$848.4B287.4B$847.
4B289.4B$846.4B291.4B$845.4B293.4B$844.4B295.4B$843.4B297.4B$842.4B299.
4B$841.4B301.4B$840.4B303.4B$839.4B305.4B$838.4B307.4B$837.4B309.4B$836.
4B311.4B$835.4B313.4B$834.4B315.4B$833.4B317.4B$832.4B319.4B$831.4B321.
4B$830.4B323.4B$829.4B325.4B$828.4B327.4B$827.4B329.4B$826.4B331.4B$825.
4B333.4B$824.4B335.4B$823.4B337.4B$822.4B339.4B$821.4B341.4B$820.4B343.
4B$819.4B345.4B$818.4B347.4B$817.4B349.4B$816.4B351.4B$815.4B353.4B$814.
4B355.4B$813.4B357.4B$812.4B359.4B$811.4B361.4B$810.4B363.4B$809.4B365.
4B$808.4B367.4B$807.4B369.4B$806.4B371.4B$805.4B373.4B$804.4B375.4B$803.
4B377.4B$802.4B379.4B$801.4B381.4B$800.4B383.4B$799.4B385.4B$798.4B387.
4B$797.4B389.4B$796.4B391.4B$795.4B393.4B$794.4B395.4B$793.4B397.4B$792.
4B399.4B$791.4B401.4B$790.4B403.4B$789.4B405.4B$788.4B407.4B$787.4B409.
4B$786.4B411.4B$785.4B413.4B$784.4B415.4B$783.4B417.4B$782.4B419.4B$781.
4B421.4B$780.4B423.4B$779.4B425.4B$778.4B427.4B$777.4B429.4B$776.4B431.
4B$775.4B433.4B$774.4B435.4B$773.4B437.4B$772.4B439.4B$771.4B441.4B$770.
4B443.4B$769.4B445.4B$768.4B447.4B$767.4B449.4B$766.4B451.4B$765.4B453.
4B$764.4B455.4B$763.4B457.4B$762.4B459.4B$761.4B461.4B$760.4B463.4B$759.
4B465.4B$758.4B467.4B$757.4B469.4B$756.4B471.4B$755.4B473.4B$754.4B475.
4B$753.4B477.4B$752.4B479.4B$751.4B481.4B$750.4B483.4B$749.4B485.4B$748.
4B487.4B$747.4B489.4B$746.4B491.4B$745.4B493.4B$744.4B495.4B$743.4B497.
4B$742.4B499.4B$741.4B501.4B$740.4B503.4B$739.4B505.4B$738.4B507.4B$737.
4B509.4B$736.4B511.4B$735.4B513.4B$734.4B515.4B$733.4B517.4B$732.4B519.
4B$731.4B521.4B$730.4B523.4B$729.4B525.4B$728.4B527.4B$727.4B529.4B$726.
4B531.4B$725.4B533.4B$724.4B535.4B$723.4B537.4B$722.4B539.4B$721.4B541.
4B$720.4B543.4B$719.4B545.4B$718.4B547.4B$717.4B549.4B$716.4B551.4B$715.
4B553.4B$714.4B555.4B$713.4B557.4B$712.4B559.4B$711.4B561.4B$710.4B563.
4B$709.4B565.4B$708.4B567.4B$707.4B569.4B$706.4B571.4B$705.4B573.4B$704.
4B575.4B$703.4B577.4B$702.4B579.4B$701.4B581.4B$700.4B583.4B$699.4B585.
4B$698.4B587.4B$697.4B589.4B$696.4B591.4B$695.4B593.4B$694.4B595.4B$693.
4B597.4B$692.4B599.4B$691.4B601.4B$690.4B603.4B$689.4B605.4B$688.4B607.
4B$687.4B609.4B$686.4B611.4B$685.4B613.4B$684.4B615.4B$683.4B617.4B$682.
4B619.4B$681.4B621.4B$680.4B623.4B$679.4B625.4B$678.4B627.4B$677.4B629.
4B$676.4B631.4B$675.4B633.4B$674.4B635.4B$673.4B637.4B$672.4B639.4B$671.
4B641.4B$670.4B643.4B$669.4B645.4B$668.4B647.4B$667.4B649.4B$666.4B651.
4B$665.4B653.4B$664.4B655.4B$663.4B657.4B$662.4B659.4B$661.4B661.4B$660.
4B663.4B$659.4B665.4B$658.4B667.4B$657.4B669.4B$656.4B671.4B$655.4B673.
4B$654.4B675.4B$653.4B677.4B$652.4B679.4B$651.4B681.4B$650.4B683.4B$649.
4B685.4B$648.4B687.4B$647.4B689.4B$646.4B691.4B$645.4B693.4B$644.4B695.
4B$643.4B697.4B$642.4B699.4B$641.4B701.4B$640.4B703.4B$639.4B705.4B$638.
4B707.4B$637.4B709.4B$636.4B711.4B$635.4B713.4B$634.4B715.4B$633.4B717.
4B$632.4B719.4B$631.4B721.4B$630.4B723.4B$629.4B725.4B$628.4B727.4B$627.
4B729.4B$626.4B731.4B$625.4B733.4B$624.4B735.4B$623.4B737.4B$622.4B739.
4B$621.4B741.4B$620.4B743.4B$619.4B745.4B$618.4B747.4B$617.4B749.4B$616.
4B751.4B$615.4B753.4B$614.4B755.4B$613.4B757.4B$612.4B759.4B$611.4B761.
4B$610.4B763.4B$609.4B765.4B$608.4B767.4B$607.4B769.4B$606.4B771.4B$605.
4B773.4B$604.4B775.4B$603.4B777.4B$602.4B779.4B$601.4B781.4B$600.4B783.
4B$599.4B785.4B$598.4B787.4B$597.4B789.4B$596.4B791.4B$595.4B793.4B$594.
4B795.4B$593.4B797.4B$592.4B799.4B$591.4B801.4B$590.4B803.4B$589.4B805.
4B$588.4B807.4B$587.4B809.4B$586.4B811.4B$585.4B813.4B$584.4B815.4B$583.
4B817.4B$582.4B819.4B$581.4B821.4B$580.4B823.4B$579.4B825.4B$578.4B827.
4B$577.4B829.4B$576.4B831.4B$575.4B833.4B$574.4B835.4B$573.4B837.4B$572.
4B839.4B$571.4B841.4B$570.4B843.4B$569.4B845.4B$568.4B847.4B$567.4B849.
4B$566.4B851.4B$565.4B853.4B$564.4B855.4B$563.4B857.4B$562.4B859.4B$561.
4B861.4B$560.4B863.4B$559.4B865.4B$558.4B867.4B$557.4B869.4B$556.4B871.
4B$555.4B873.4B$554.4B875.4B$553.4B877.4B$552.4B879.4B$551.4B881.4B$550.
4B883.4B$549.4B885.4B$548.4B887.4B$547.4B889.4B$546.4B891.4B$545.4B893.
4B$544.4B895.4B$543.4B897.4B$542.4B899.4B$541.4B901.4B$540.4B903.4B$539.
4B905.4B$538.4B907.4B$537.4B909.4B$536.4B911.4B$535.4B913.4B$534.4B915.
4B$533.4B917.4B$532.4B919.4B$531.4B921.4B$530.4B923.4B$529.4B925.4B$528.
4B927.4B$527.4B929.4B$526.4B931.4B$525.4B933.4B$524.4B935.4B$523.4B937.
4B$522.4B939.4B$521.4B941.4B$520.4B943.4B$519.4B945.4B$518.4B947.4B$517.
4B949.4B$516.4B951.4B$515.4B953.4B$514.4B955.4B$513.4B957.4B$512.4B959.
4B$511.4B961.4B$510.4B963.4B$509.4B965.4B$508.4B967.4B$507.4B969.4B$506.
4B971.4B$505.4B973.4B$504.4B975.4B$503.4B977.4B$502.4B979.4B$501.4B981.
4B$500.4B983.4B$499.4B985.4B$498.4B987.4B$497.4B989.4B$496.4B991.4B$495.
4B993.4B$494.4B995.4B$493.4B997.4B$492.4B999.4B$491.4B1001.4B$490.4B1003.
4B$489.4B1005.4B$488.4B1007.4B$487.4B1009.4B$486.4B1011.4B$485.4B1013.
4B$484.4B1015.4B$483.4B1017.4B$482.4B1019.4B$481.4B1021.4B$480.4B1023.
4B$479.4B1025.4B$478.4B1027.4B$477.4B1029.4B$476.4B1031.4B$475.4B1033.
4B$474.4B1035.4B$473.4B1037.4B$472.4B1039.4B$471.4B1041.4B$470.4B1043.
4B$469.4B1045.4B$468.4B1047.4B$467.4B1049.4B$466.4B1051.4B$465.4B1053.
4B$464.4B1055.4B$463.4B1057.4B$462.4B1059.4B$461.4B1061.4B$460.4B1063.
4B$459.4B1065.4B$458.4B1067.4B$457.4B1069.4B$456.4B1071.4B$455.4B1073.
4B$454.4B1075.4B$453.4B1077.4B$452.4B1079.4B$451.4B1081.4B$450.4B1083.
4B$449.4B1085.4B$448.4B1087.4B$447.4B1089.4B$446.4B1091.4B$445.4B1093.
4B$444.4B1095.4B$443.4B1097.4B$442.4B1099.4B$441.4B1101.4B$440.4B1103.
4B$439.4B1105.4B$438.4B1107.4B$437.4B1109.4B$436.4B1111.4B$435.4B1113.
4B$434.4B1115.4B$433.4B1117.4B$432.4B1119.4B$431.4B1121.4B$430.4B1123.
4B$429.4B1125.4B$428.4B1127.4B$427.4B1129.4B$426.4B1131.4B$425.4B1133.
4B$424.4B1135.4B$423.4B1137.4B$422.4B1139.4B$421.4B1141.4B$420.4B1143.
4B$419.4B1145.4B$418.4B1147.4B$417.4B1149.4B$416.4B1151.4B$415.4B1153.
4B$414.4B1155.4B$413.4B1157.4B$412.4B1159.4B$411.4B1161.4B$410.4B1163.
4B$409.4B1165.4B$408.4B1167.4B$407.4B1169.4B$406.4B1171.4B$405.4B1173.
4B$404.4B1175.4B$403.4B1177.4B$402.4B1179.4B$401.4B1181.4B$400.4B1183.
4B$399.4B1185.4B$398.4B1187.4B$397.4B1189.4B$396.4B1191.4B$395.4B1193.
4B$394.4B1195.4B$393.4B1197.4B$392.4B1199.4B$391.4B1201.4B$390.4B1203.
4B$389.4B1205.4B$388.4B1207.4B$387.4B1209.4B$386.4B1211.4B$385.4B1213.
4B$384.4B1215.4B$383.4B1217.4B$382.4B1219.4B$381.4B1221.4B$380.4B1223.
4B$379.4B1225.4B$378.4B1227.4B$377.4B1229.4B$376.4B1231.4B$375.4B1233.
4B$374.4B1235.4B$373.4B1237.4B$372.4B1239.4B$371.4B1241.4B$370.4B1243.
4B$369.4B1245.4B$368.4B1247.4B$367.4B1249.4B$366.4B1251.4B$365.4B1253.
4B$364.4B1255.4B$363.4B1257.4B$362.4B1259.4B$361.4B1261.4B$360.4B1263.
4B$359.4B1265.4B$358.4B1267.4B$357.4B1269.4B$356.4B1271.4B$355.4B1273.
4B$354.4B1275.4B$353.4B1277.4B$352.4B1279.4B$351.4B1281.4B$350.4B1283.
4B$349.4B1285.4B$348.4B1287.4B$347.4B1289.4B$346.4B1291.4B$345.4B1293.
4B$344.4B1295.4B$343.4B1297.4B$342.4B1299.4B$341.4B1301.4B$340.4B1303.
4B$339.4B1305.4B$338.4B1307.4B$337.4B1309.4B$336.4B1311.4B$335.4B1313.
4B$334.4B1315.4B$333.4B1317.4B$332.4B1319.4B$331.4B1321.4B$330.4B1323.
4B$329.4B1325.4B$328.4B1327.4B$327.4B1329.4B$326.4B1331.4B$325.4B1333.
4B$324.4B1335.4B$323.4B1337.4B$322.4B1339.4B$321.4B1341.4B$320.4B1343.
4B$319.4B1345.4B$318.4B1347.4B$317.4B1349.4B$316.4B1351.4B$315.4B1353.
4B$314.4B1355.4B$313.4B1357.4B$312.4B1359.4B$311.4B1361.4B$310.4B1363.
4B$309.4B1365.4B$308.4B1367.4B$307.4B1369.4B$306.4B1371.4B$305.4B1373.
4B$304.4B1375.4B$303.4B1377.4B$302.4B1379.4B$301.4B1381.4B$300.4B1383.
4B$299.4B1385.4B$298.4B1387.4B$297.4B1389.4B$296.4B1391.4B$295.4B1393.
4B$294.4B1395.4B$293.4B1397.4B$292.4B1399.4B$291.4B1401.4B$290.4B1403.
4B$289.4B1405.4B$288.4B1407.4B$287.4B1409.4B$286.4B1411.4B$285.4B1413.
4B$284.4B1415.4B$283.4B1417.4B$282.4B1419.4B$281.4B1421.4B$280.4B1423.
4B$279.4B1425.4B$278.4B1427.4B$277.4B1429.4B$276.4B1431.4B$275.4B1433.
4B$274.4B1435.4B$273.4B1437.4B$272.4B1439.4B$271.4B1441.4B$270.4B1443.
4B$269.4B1445.4B$268.4B1447.4B$267.4B1449.4B$266.4B1451.4B$265.4B1453.
4B$264.4B1455.4B$263.4B1457.4B$262.4B1459.4B$261.4B1461.4B$260.4B1463.
4B$259.4B1465.4B$258.4B1467.4B$257.4B1469.4B$256.4B1471.4B$255.4B1473.
4B$254.4B1475.4B$253.4B1477.4B$252.4B1479.4B$251.4B1481.4B$250.4B1483.
4B$249.4B1485.4B$248.4B1487.4B$247.4B1489.4B$246.4B1491.4B$245.4B1493.
4B$244.4B1495.4B$243.4B1497.4B$242.4B1499.4B$241.4B1501.4B$240.4B1503.
4B$239.4B1505.4B$238.4B1507.4B$237.4B1509.4B$236.4B1511.4B$235.4B1513.
4B$234.4B1515.4B$233.4B1517.4B$232.4B1519.4B$231.4B1521.4B$230.4B1523.
4B$229.4B1525.4B$228.4B1527.4B$227.4B1529.4B$226.4B1531.4B$225.4B1533.
4B$224.4B1535.4B$223.4B1537.4B$222.4B1539.4B$221.4B1541.4B$220.4B1543.
4B$219.4B1545.4B$218.4B1547.4B$217.4B1549.4B$216.4B1551.4B$215.4B1553.
4B$214.4B1555.4B$213.4B1557.4B$212.4B1559.4B$211.4B1561.4B$210.4B1563.
4B$209.4B1565.4B$208.4B1567.4B$207.4B1569.4B$206.4B1571.4B$205.4B1573.
4B$204.4B1575.4B$203.4B1577.4B$202.4B1579.4B$201.4B1581.4B$200.4B1583.
4B$199.4B1585.4B$198.4B1587.4B$197.4B1589.4B$196.4B1591.4B$195.4B1593.
4B$194.4B1595.4B$193.4B1597.4B$192.4B1599.4B$191.4B1601.4B$190.4B1603.
4B$189.4B1605.4B$188.4B1607.4B$187.4B1609.4B$186.4B1611.4B$185.4B1613.
4B$184.4B1615.4B$183.4B1617.4B$182.4B1619.4B$181.4B1621.4B$180.4B1623.
4B$179.4B1625.4B$178.4B1627.4B$177.4B1629.4B$176.4B1631.4B$175.4B1633.
4B$174.4B1635.4B$173.4B1637.4B$172.4B1639.4B$171.4B1641.4B$170.4B1643.
4B$169.4B1645.4B$168.4B1647.4B$167.4B1649.4B$166.4B1651.4B$165.4B1653.
4B$164.4B1655.4B$163.4B1657.4B$162.4B1659.4B$161.4B1661.4B$160.4B1663.
4B$159.4B1665.4B$158.4B1667.4B$157.4B1669.4B$156.4B1671.4B$155.4B1673.
4B$154.4B1675.4B$153.4B1677.4B$152.4B1679.4B$151.4B1681.4B$150.4B1683.
4B$149.4B1685.4B$148.4B1687.4B$147.4B1689.4B$146.4B1691.4B$145.4B1693.
4B$144.4B1695.4B$143.4B1697.4B$142.4B1699.4B$141.4B1701.4B$140.4B1703.
4B$139.4B1705.4B$138.4B1707.4B$137.4B1709.4B$136.4B1711.4B$135.4B1713.
4B$134.4B1715.4B$133.4B1717.4B$132.4B1719.4B$131.4B1721.4B$130.4B1723.
4B$129.4B1725.4B$128.4B1727.4B$127.4B1729.4B$126.4B1731.4B$125.4B1733.
4B$124.4B1735.4B$123.4B1737.4B$122.4B1739.4B$121.4B1741.4B$120.4B1743.
4B$119.4B1745.4B$118.4B1747.4B$117.4B1749.4B$116.4B1751.4B$115.4B1753.
4B$114.4B1755.4B$113.4B1757.4B$112.4B1759.4B$111.4B1761.4B$110.4B1763.
4B$109.4B1765.4B$108.4B1767.4B$107.4B1769.4B$106.4B1771.4B$105.4B1773.
4B$104.4B1775.4B$103.4B1777.4B$102.4B1779.4B$101.4B1781.4B$100.4B1783.
4B$99.4B1785.4B$98.4B1787.4B$97.4B1789.4B$96.4B1791.4B$95.4B1793.4B$94.
4B1795.4B$93.4B1797.4B$92.4B1799.4B$91.4B1801.4B$90.4B1803.4B$89.4B1805.
4B$88.4B1807.4B$87.4B1809.4B$86.4B1811.4B$85.4B1813.4B$84.4B1815.4B$83.
4B1817.4B$82.4B1819.4B$81.4B1821.4B$80.4B1823.4B$79.4B1825.4B$78.4B1827.
4B$77.4B1829.4B$76.4B1831.4B$75.4B1833.4B$61.2A11.4B1835.4B$60.A.A10.
4B1837.4B$60.2A10.4B1839.4B$71.4B1841.4B$70.4B1843.4B$69.4B1845.4B$68.
4B1847.4B$67.4B1849.4B$66.4B1851.4B$65.4B1853.4B$64.4B1855.4B$63.4B3.
2A1852.4B$62.4B4.2A1853.4B$61.4B1861.4B$60.4B1863.4B$59.4B1865.4B$58.
4B1867.4B$57.4B1869.4B$56.4B1871.4B$55.4B7.2A1864.4B$54.4B8.2A1865.4B
$53.4B1877.4B$22.B29.4B1879.4B$21.3A27.4B1881.4B$22.B27.4B1883.4B$25.
A23.4B1885.4B$24.BAB21.4B1887.4B$25.A21.4B1889.4B$46.4B1891.4B$45.4B1893.
4B$44.4B1895.4B$43.4B1897.4B$42.4B12.2A33.2A1850.4B$41.4B13.2A32.A.A1851.
4B$40.4B48.2A1853.4B$37.2E4B18.B1886.4B$37.2E3B18.3A1886.4B$37.6B18.B
1888.4B$36.8B20.A1886.4B$35.11B17.BAB1886.4B$34.12B18.A1888.4B$33.4B.
8B14.2A1892.4B$32.4B.8B14.A2.A1892.4B$31.4B2.8B15.2A40.2A1852.4B$30.4B
.3B2E6B56.2A1853.4B$29.8BE2BE6B1911.4B$7.2D19.10BEBE7B1911.4B$6.D.D18.
12BE9B1911.4B$5.D.D18.18B2D2B1913.4B$6.D18.7B2E10B2D1916.4B$24.4B.3B2E
10B1919.4B$23.4B3.15B53.2A1864.4B$2.2D18.4B5.10B2D3B52.2A1865.4B$.D2.
D16.4B6.2B3D4B.2D4B1919.4B$2.2D16.4B8.8B4.4B13.2A1904.4B$19.4B9.8B5.4B
11.A.A1905.4B$18.4B12.7B5.4B11.A1907.4B$17.2D2B13.6B7.4B21.B1897.4B$16.
D2BD14.6B8.4B19.3A1897.4B$15.2B2D15.6B9.4B19.B1899.4B$14.4B16.6B10.4B
1919.4B$13.4B17.7B10.4B1916.7B$.3B8.4B18.6B12.4B24.A1888.9B$.4B6.4B19.
2B2E2B13.4B22.BAB1886.11B$2B2CB5.3B2D20.B2E16.4B22.A9.2A33.2A1842.13B
$BCBC2B3.3BD2.D39.4B31.2A32.A.A1842.14B$2BC4B.4B.2D15.2A24.4B64.2A1842.
16B$.10B18.A2.A24.4B32.B1873.17B$.9B19.A2.A25.4B30.3A1872.18B$.9B20.2A
27.4B30.B1872.19B$.10B49.4B32.A1869.20B$.6B.4B49.4B30.BAB1869.20B$2.4B
3.4B49.4B30.A1868.21B.B2E$10.4B49.4B25.2A1871.23BECD$11.4B49.4B23.A2.
A1870.24B2D.2B$12.4B49.4B23.2A40.2A1830.29B$13.4B49.4B64.2A1829.31B$14.
4B49.4B1892.28B2.4B$15.4B49.4B1879.2B3.2B2.32B2.4B$16.4B49.4B1869.2B3.
B3.42B2.4B$17.4B41.2A6.4B1868.B2A.5B2A27B3.17B$18.4B39.A2.A6.4B1865.3B
2A7BA26B6.16B$19.4B39.A.A7.4B1863.10B3A27B6.12B.4B$20.4B39.A9.4B53.2A
1807.10BA29B6.12B2.4B$21.4B49.4B52.2A1807.14B.11B.13B7.12B2.4B$22.4B49.
4B1861.11B6.12B4.6B8.12B2.4B$23.4B49.4B13.2A1844.9B9.2BA9B.10B8.7B.4B
2.4B$24.4B49.4B11.A.A1843.7B11.2BABA18B10.7B.4B2.4B$25.4B49.4B11.A1843.
8B11.2BABA17B11.8B.4B2.4B$26.4B49.4B21.B1831.4B2.2B14.BA18B10.10B.4B2.
4B$27.4B49.4B19.3A1829.4B19.2B.6B2.10B8.4B.7B.4B2.4B$28.4B49.4B19.B1829.
4B23.19B6.4B3.7B.4B2.4B$29.4B23.2A24.4B1847.4B25.4B.13B5.4B5.7B.4B2.4B
$30.4B21.A2.A24.4B1845.4B28.B.13B5.4B7.7B.4B2.4B$31.4B21.2A26.4B24.A1818.
4B32.5B2A8B.4B9.7B.4B2.4B$32.4B49.4B22.BAB1816.4B33.5B2A12B11.7B.2B2A
2.4B$33.4B49.4B22.A9.2A33.2A1770.4B35.17B13.7B.BABA2.3BA$34.4B49.4B31.
2A32.A.A1769.4B36.16B15.7B.A2B3.B2AB$35.4B49.4B64.2A1769.4B37.2AB.11B
17.7B7.ABA$36.4B49.4B32.B1800.4B38.2A12B19.7B7.B$37.4B49.4B30.3A1798.
4B40.12B21.7B$38.4B49.4B30.B1798.4B39.13B23.7B$39.4B49.4B32.A1794.4B39.
13B25.7B$40.4B49.4B30.BAB1792.4B41.13B25.7B$41.4B49.4B30.A1792.4B44.11B
26.7B$42.4B49.4B25.2A1794.4B47.7B29.7B$43.4B49.4B23.A2.A1792.4B48.5B32.
3BA3B$44.4B49.4B23.2A40.2A1750.4B48.4B35.B2A4B$45.4B49.4B64.2A1749.4B
48.4B37.ABA4B$46.4B49.4B1813.4B48.4B39.B2.4B$47.4B49.4B1811.4B48.4B44.
4B$48.4B49.4B1809.4B48.4B46.4B$49.4B41.2A6.4B1807.4B48.4B48.2B2A$50.4B
39.A2.A6.4B1805.4B48.4B50.BABA$51.4B39.A.A7.4B1803.4B48.4B52.A2B$52.4B
39.A9.4B53.2A1746.4B48.4B$53.4B49.4B52.2A1745.4B48.4B$54.4B49.4B1797.
4B48.4B$55.4B49.4B13.2A1780.4B48.4B$56.4B49.4B11.A.A1779.4B48.4B$57.4B
49.4B11.A1779.4B48.4B$58.4B49.4B21.B1767.4B48.4B$59.4B49.4B19.3A1765.
4B48.4B$60.4B49.4B19.B1765.4B48.4B$61.4B23.2A24.4B1783.4B48.4B$62.4B21.
A2.A24.4B1781.4B48.4B$63.4B21.2A26.4B24.A1754.4B48.4B$64.4B49.4B22.BA
B1752.4B48.4B$65.4B49.4B22.A9.2A33.2A1706.4B48.4B$66.4B49.4B31.2A32.A
.A1705.4B48.4B$67.4B49.4B64.2A1705.4B48.4B$68.4B49.4B32.B1736.4B48.4B
$69.4B49.4B30.3A1734.4B48.4B$70.4B49.4B30.B1734.4B48.4B$71.4B49.4B32.
A1730.4B48.4B$72.4B49.4B30.BAB1728.4B48.4B$73.4B49.4B30.A1728.4B48.4B
$74.4B49.4B25.2A1730.4B48.4B$75.4B49.4B23.A2.A1728.4B48.4B$76.4B49.4B
23.2A40.2A1686.4B48.4B$77.4B49.4B64.2A1685.4B48.4B$78.4B49.4B1749.4B48.
4B$79.4B49.4B1747.4B48.4B$80.4B49.4B1745.4B48.4B$81.4B41.2A6.4B1743.4B
48.4B$82.4B39.A2.A6.4B1741.4B48.4B$83.4B39.A.A7.4B1739.4B48.4B$84.4B39.
A9.4B53.2A1682.4B48.4B$85.4B49.4B52.2A1681.4B48.4B$86.4B49.4B1733.4B48.
4B$87.4B49.4B13.2A1716.4B48.4B$88.4B49.4B11.A.A1715.4B48.4B$89.4B49.4B
11.A1715.4B48.4B$90.4B49.4B21.B1703.4B48.4B$91.4B49.4B19.3A1701.4B48.
4B$92.4B49.4B19.B1701.4B48.4B$93.4B23.2A24.4B1719.4B48.4B$94.4B21.A2.
A24.4B1717.4B48.4B$95.4B21.2A26.4B24.A1690.4B48.4B$96.4B49.4B22.BAB1688.
4B48.4B$97.4B49.4B22.A9.2A33.2A1642.4B48.4B$98.4B49.4B31.2A32.A.A1641.
4B48.4B$99.4B49.4B64.2A1641.4B48.4B$100.4B49.4B32.B1672.4B48.4B$101.4B
49.4B30.3A1670.4B48.4B$102.4B49.4B30.B1670.4B48.4B$103.4B49.4B32.A1666.
4B48.4B$104.4B49.4B30.BAB1664.4B48.4B$105.4B49.4B30.A1664.4B48.4B$106.
4B49.4B25.2A1666.4B48.4B$107.4B49.4B23.A2.A1664.4B48.4B$108.4B49.4B23.
2A40.2A1622.4B48.4B$109.4B49.4B64.2A1621.4B48.4B$110.4B49.4B1685.4B48.
4B$111.4B49.4B1683.4B48.4B$112.4B49.4B1681.4B48.4B$113.4B41.2A6.4B1679.
4B48.4B$114.4B39.A2.A6.4B1677.4B48.4B$115.4B39.A.A7.4B1675.4B48.4B$116.
4B39.A9.4B53.2A1618.4B48.4B$117.4B49.4B52.2A1617.4B48.4B$118.4B49.4B1669.
4B48.4B$119.4B49.4B13.2A1652.4B48.4B$120.4B49.4B11.A.A1651.4B48.4B$121.
4B49.4B11.A1651.4B48.4B$122.4B49.4B21.B1639.4B48.4B$123.4B49.4B19.3A1637.
4B48.4B$124.4B49.4B19.B1637.4B48.4B$125.4B23.2A24.4B1655.4B48.4B$126.
4B21.A2.A24.4B1653.4B48.4B$127.4B21.2A26.4B24.A1626.4B48.4B$128.4B49.
4B22.BAB1624.4B48.4B$129.4B49.4B22.A9.2A33.2A1578.4B48.4B$130.4B49.4B
31.2A32.A.A1577.4B48.4B$131.4B49.4B64.2A1577.4B48.4B$132.4B49.4B32.B1608.
4B48.4B$133.4B49.4B30.3A1606.4B48.4B$134.4B49.4B30.B1606.4B48.4B$135.
4B49.4B32.A1602.4B48.4B$136.4B49.4B30.BAB1600.4B48.4B$137.4B49.4B30.A
1600.4B48.4B$138.4B49.4B25.2A1602.4B48.4B$139.4B49.4B23.A2.A1600.4B48.
4B$140.4B49.4B23.2A40.2A1558.4B48.4B$141.4B49.4B64.2A1557.4B48.4B$142.
4B49.4B1621.4B48.4B$143.4B49.4B1619.4B48.4B$144.4B49.4B1617.4B48.4B$145.
4B41.2A6.4B1615.4B48.4B$146.4B39.A2.A6.4B1613.4B48.4B$147.4B39.A.A7.4B
1611.4B48.4B$148.4B39.A9.4B53.2A1554.4B48.4B$149.4B49.4B52.2A1553.4B48.
4B$150.4B49.4B1605.4B48.4B$151.4B49.4B13.2A1588.4B48.4B$152.4B49.4B11.
A.A1587.4B48.4B$153.4B49.4B11.A1587.4B48.4B$154.4B49.4B21.B1575.4B48.
4B$155.4B49.4B19.3A1573.4B48.4B$156.4B49.4B19.B1573.4B48.4B$157.4B23.
2A24.4B1591.4B48.4B$158.4B21.A2.A24.4B1589.4B48.4B$159.4B21.2A26.4B24.
A1562.4B48.4B$160.4B49.4B22.BAB1560.4B48.4B$161.4B49.4B22.A9.2A33.2A1514.
4B48.4B$162.4B49.4B31.2A32.A.A1513.4B48.4B$163.4B49.4B64.2A1513.4B48.
4B$164.4B49.4B32.B1544.4B48.4B$165.4B49.4B30.3A1542.4B48.4B$166.4B49.
4B30.B1542.4B48.4B$167.4B49.4B32.A1538.4B48.4B$168.4B49.4B30.BAB1536.
4B48.4B$169.4B49.4B30.A1536.4B48.4B$170.4B49.4B25.2A1538.4B48.4B$171.
4B49.4B23.A2.A1536.4B48.4B$172.4B49.4B23.2A40.2A1494.4B48.4B$173.4B49.
4B64.2A1493.4B48.4B$174.4B49.4B1557.4B48.4B$175.4B49.4B1555.4B48.4B$176.
4B49.4B1553.4B48.4B$177.4B41.2A6.4B1551.4B48.4B$178.4B39.A2.A6.4B1549.
4B48.4B$179.4B39.A.A7.4B1547.4B48.4B$180.4B39.A9.4B53.2A1490.4B48.4B$
181.4B49.4B52.2A1489.4B48.4B$182.4B49.4B1541.4B48.4B$183.4B49.4B13.2A
1524.4B48.4B$184.4B49.4B11.A.A1523.4B48.4B$185.4B49.4B11.A1523.4B48.4B
$186.4B49.4B21.B1511.4B48.4B$187.4B49.4B19.3A1509.4B48.4B$188.4B49.4B
19.B1509.4B48.4B$189.4B23.2A24.4B1527.4B48.4B$190.4B21.A2.A24.4B1525.
4B48.4B$191.4B21.2A26.4B24.A1498.4B48.4B$192.4B49.4B22.BAB1496.4B48.4B
$193.4B49.4B22.A9.2A33.2A1450.4B48.4B$194.4B49.4B31.2A32.A.A1449.4B48.
4B$195.4B49.4B64.2A1449.4B48.4B$196.4B49.4B32.B1480.4B48.4B$197.4B49.
4B30.3A1478.4B48.4B$198.4B49.4B30.B1478.4B48.4B$199.4B49.4B32.A1474.4B
48.4B$200.4B49.4B30.BAB1472.4B48.4B$201.4B49.4B30.A1472.4B48.4B$202.4B
49.4B25.2A1474.4B48.4B$203.4B49.4B23.A2.A1472.4B48.4B$204.4B49.4B23.2A
40.2A1430.4B48.4B$205.4B49.4B64.2A1429.4B48.4B$206.4B49.4B1493.4B48.4B
$207.4B49.4B1491.4B48.4B$208.4B49.4B1489.4B48.4B$209.4B41.2A6.4B1487.
4B48.4B$210.4B39.A2.A6.4B1485.4B48.4B$211.4B39.A.A7.4B1483.4B48.4B$212.
4B39.A9.4B53.2A1426.4B48.4B$213.4B49.4B52.2A1425.4B48.4B$214.4B49.4B1477.
4B48.4B$215.4B49.4B13.2A1460.4B48.4B$216.4B49.4B11.A.A1459.4B48.4B$217.
4B49.4B11.A1459.4B48.4B$218.4B49.4B21.B1447.4B48.4B$219.4B49.4B19.3A1445.
4B48.4B$220.4B49.4B19.B1445.4B48.4B$221.4B23.2A24.4B1463.4B48.4B$222.
4B21.A2.A24.4B1461.4B48.4B$223.4B21.2A26.4B24.A1434.4B48.4B$224.4B49.
4B22.BAB1432.4B48.4B$225.4B49.4B22.A9.2A33.2A1386.4B48.4B$226.4B49.4B
31.2A32.A.A1385.4B48.4B$227.4B49.4B64.2A1385.4B48.4B$228.4B49.4B32.B1416.
4B48.4B$229.4B49.4B30.3A1414.4B48.4B$230.4B49.4B30.B1414.4B48.4B$231.
4B49.4B32.A1410.4B48.4B$232.4B49.4B30.BAB1408.4B48.4B$233.4B49.4B30.A
1408.4B48.4B$234.4B49.4B25.2A1410.4B48.4B$235.4B49.4B23.A2.A1408.4B48.
4B$236.4B49.4B23.2A40.2A1366.4B48.4B$237.4B49.4B64.2A1365.4B48.4B$238.
4B49.4B1429.4B48.4B$239.4B49.4B1427.4B48.4B$240.4B49.4B1425.4B48.4B$241.
4B41.2A6.4B1423.4B48.4B$242.4B39.A2.A6.4B1421.4B48.4B$243.4B39.A.A7.4B
1419.4B48.4B$244.4B39.A9.4B53.2A1362.4B48.4B$245.4B49.4B52.2A1361.4B48.
4B$246.4B49.4B1413.4B48.4B$247.4B49.4B13.2A1396.4B48.4B$248.4B49.4B11.
A.A1395.4B48.4B$249.4B49.4B11.A1395.4B48.4B$250.4B49.4B21.B1383.4B48.
4B$251.4B49.4B19.3A1381.4B48.4B$252.4B49.4B19.B1381.4B48.4B$253.4B23.
2A24.4B1399.4B48.4B$254.4B21.A2.A24.4B1397.4B48.4B$255.4B21.2A26.4B24.
A1370.4B48.4B$256.4B49.4B22.BAB1368.4B48.4B$257.4B49.4B22.A9.2A33.2A1322.
4B48.4B$258.4B49.4B31.2A32.A.A1321.4B48.4B$259.4B49.4B64.2A1321.4B48.
4B$260.4B49.4B32.B1352.4B48.4B$261.4B49.4B30.3A1350.4B48.4B$262.4B49.
4B30.B1350.4B48.4B$263.4B49.4B32.A79.2A1265.4B48.4B$264.4B49.4B30.BAB
77.A2.A1263.4B48.4B$265.4B49.4B30.A79.2A1263.4B48.4B$266.4B49.4B25.2A
1346.4B48.4B$267.4B49.4B23.A2.A1344.4B48.4B$268.4B49.4B23.2A40.2A1302.
4B48.4B$269.4B49.4B64.2A1301.4B48.4B$270.4B49.4B1365.4B48.4B$271.4B49.
4B122.B1240.4B48.4B450.A$272.4B49.4B120.3A1238.4B48.4B449.3A$273.4B41.
2A6.4B120.B1238.4B48.4B449.A$274.4B39.A2.A6.4B1357.4B48.4B450.2A$275.
4B39.A.A7.4B1355.4B48.4B$276.4B39.A9.4B53.2A1298.4B48.4B$277.4B49.4B52.
2A1297.4B48.4B430.2A4.2A$278.4B49.4B1349.4B48.4B431.2A3.A2.A$279.4B49.
4B13.2A1332.4B48.4B438.2A$280.4B49.4B11.A.A1331.4B48.4B459.2A$281.4B49.
4B11.A73.2A1256.4B48.4B460.2A$282.4B49.4B21.B62.2A1255.4B48.4B$283.4B
49.4B19.3A57.2A1258.4B48.4B$284.4B49.4B19.B58.2A1257.4B48.4B$285.4B23.
2A24.4B1335.4B48.4B$286.4B21.A2.A24.4B1333.4B48.4B440.2A$287.4B21.2A26.
4B24.A66.A1239.4B48.4B441.2A$288.4B49.4B22.BAB64.BAB1237.4B48.4B477.2A
6.2A$289.4B49.4B22.A9.2A55.A1237.4B48.4B479.A7.A$290.4B49.4B31.2A1292.
4B48.4B469.A7.3A5.3A$291.4B49.4B1323.4B48.4B441.2A26.A.A6.A7.A$292.4B
49.4B32.B44.A5.A9.2A1226.4B48.4B443.A26.A2.A$293.4B49.4B30.3A42.BAB3.
BAB8.2A1225.4B48.4B444.A.A25.2A$294.4B49.4B30.B44.A5.A20.2A1213.4B48.
4B446.2A$295.4B49.4B32.A25.2A17.B23.2A1212.4B48.4B500.2A$296.4B49.4B30.
BAB24.2A16.3A1235.4B48.4B496.2A3.2A$297.4B49.4B30.A44.B10.2A1223.4B48.
4B463.2A32.2A$298.4B49.4B25.2A58.2A1222.4B48.4B464.A.A8.A5.2A$299.4B49.
4B23.A2.A32.B1247.4B48.4B433.2A32.A7.A.A3.A2.A$300.4B49.4B23.2A32.3A1245.
4B48.4B433.A2.A31.2A6.2A5.A.A13.2A12.2A$301.4B49.4B57.B1245.4B48.4B435.
2A48.A15.A5.2A5.A$302.4B49.4B92.2A1207.4B48.4B499.3A6.2A6.3A8.2A$303.
4B49.4B91.2A1206.4B48.4B500.A18.A8.2A$304.4B49.4B65.A1231.4B48.4B$305.
4B41.2A6.4B63.BAB1229.4B48.4B$306.4B39.A2.A6.4B63.A1229.4B48.4B450.2A
$307.4B39.A.A7.4B1291.4B48.4B450.A.A17.2A$308.4B39.A9.4B1289.4B48.4B452.
A18.A26.2A$309.4B49.4B74.2A10.A1200.4B48.4B473.3A22.A2.A$310.4B49.4B73.
2A9.A.A1198.4B48.4B476.A23.A.A$311.4B49.4B13.2A68.2A1198.4B48.4B502.A
$312.4B49.4B11.A.A1267.4B48.4B$313.4B49.4B11.A1267.4B48.4B510.2A$314.
4B49.4B21.B1255.4B48.4B461.2A47.A2.A$315.4B49.4B19.3A1253.4B48.4B461.
A.A48.A.A38.2A$316.4B49.4B19.B37.2A1214.4B48.4B462.A25.2A24.A12.A27.A
$317.4B23.2A24.4B56.2A1213.4B48.4B462.2A25.A37.A.A26.A.A$318.4B21.A2.
A24.4B1269.4B48.4B471.2A15.A.A37.2A13.2A13.2A$319.4B21.2A26.4B24.A1242.
4B48.4B472.2A15.2A53.2A$320.4B49.4B22.BAB1240.4B48.4B$321.4B49.4B22.A
9.2A21.2A1206.4B48.4B518.2A$322.4B49.4B31.2A21.2A2.2A1201.4B48.4B519.
2A20.2A40.2A$323.4B49.4B57.2A1200.4B48.4B542.2A40.2A$324.4B49.4B32.B1224.
4B48.4B547.2A$325.4B49.4B30.3A1222.4B48.4B548.2A$326.4B49.4B30.B1222.
4B48.4B468.2A$327.4B49.4B32.A1218.4B48.4B468.A2.A$328.4B49.4B30.BAB1216.
4B48.4B470.A.A$329.4B49.4B30.A1216.4B48.4B472.A74.2A39.2A$330.4B49.4B
25.2A1218.4B48.4B548.2A39.2A$331.4B49.4B23.A2.A1216.4B48.4B483.2A$332.
4B49.4B23.2A40.2A1174.4B48.4B483.A.A$333.4B49.4B64.2A1173.4B48.4B484.
A$334.4B49.4B1237.4B48.4B484.2A$335.4B49.4B1235.4B48.4B$336.4B49.4B1233.
4B48.4B$337.4B41.2A6.4B1231.4B48.4B588.2A$338.4B39.A2.A6.4B1229.4B48.
4B589.2A$339.4B39.A.A7.4B1227.4B48.4B596.2A$340.4B39.A9.4B53.2A1170.4B
48.4B596.A2.A$341.4B49.4B39.2A11.2A1169.4B48.4B598.A.A$342.4B49.4B38.
2A2.2A1177.4B48.4B600.A$343.4B49.4B13.2A26.2A1176.4B48.4B$344.4B49.4B
11.A.A1203.4B48.4B$345.4B49.4B11.A1203.4B48.4B583.2A$346.4B49.4B21.B1191.
4B48.4B584.A.A7.A$347.4B49.4B19.3A1189.4B48.4B587.A6.A.A$348.4B49.4B19.
B1189.4B48.4B588.2A5.A2.A$349.4B23.2A24.4B1207.4B48.4B509.2A86.2A$350.
4B21.A2.A24.4B1205.4B48.4B501.2A7.2A$351.4B21.2A26.4B24.A1178.4B48.4B
503.A$352.4B49.4B22.BAB1176.4B48.4B504.A.A$353.4B49.4B22.A9.2A33.2A1130.
4B48.4B506.2A$354.4B49.4B31.2A32.A.A1129.4B48.4B614.A$355.4B49.4B64.2A
1129.4B48.4B585.2A27.A.A$356.4B49.4B32.B1160.4B48.4B523.2A6.A45.2A7.2A
26.A2.A$357.4B49.4B30.3A1158.4B48.4B524.A.A4.A.A45.A36.2A$358.4B49.4B
30.B1158.4B48.4B495.2A30.A4.A2.A44.A.A$359.4B49.4B32.A1154.4B48.4B496.
2A30.2A4.2A46.2A$360.4B49.4B30.BAB1152.4B48.4B600.2A15.2A18.A$361.4B49.
4B30.A1152.4B48.4B601.2A15.2A17.A.A3.2A$362.4B49.4B25.2A1154.4B48.4B504.
A47.2A58.2A24.A2.A2.2A$363.4B49.4B23.A2.A1152.4B48.4B504.A.A46.A59.A26.
2A$364.4B49.4B23.2A40.2A1110.4B48.4B458.2A45.A2.A46.3A54.A.A$365.4B49.
4B64.2A1109.4B48.4B458.A.A46.2A50.A53.2A$366.4B49.4B1173.4B48.4B458.A
.A3.2A93.2A$367.4B49.4B1171.4B48.4B460.A4.A.A107.2A$368.4B49.4B1169.4B
48.4B467.A51.2A55.A55.2A$369.4B41.2A6.4B1167.4B48.4B519.A.A52.2A.A55.
2A$370.4B39.A2.A6.4B1165.4B48.4B520.A53.A2.A$371.4B39.A.A7.4B1163.4B48.
4B520.2A54.2A77.A$372.4B39.A9.4B53.2A1106.4B48.4B547.2A13.2A90.3A$373.
4B49.4B52.2A1105.4B48.4B548.2A13.2A89.A$374.4B49.4B1157.4B48.4B618.2A
35.2A$375.4B49.4B13.2A1140.4B48.4B619.A.A$376.4B49.4B11.A.A1139.4B48.
4B622.A$377.4B49.4B11.A1139.4B48.4B623.2A10.2A4.2A$378.4B49.4B21.B1127.
4B48.4B529.2A100.2A3.2A3.A2.A$379.4B49.4B19.3A1125.4B48.4B530.2A100.2A
9.2A$380.4B49.4B19.B1125.4B48.4B557.2A6.A.2A95.2A$381.4B23.2A24.4B1143.
4B48.4B558.A.A3.3A.2A59.A35.2A$382.4B21.A2.A24.4B1141.4B48.4B561.A2.A
64.A.A$383.4B21.2A26.4B24.A1114.4B48.4B534.2A26.2A2.3A.2A40.2A17.2A$384.
4B49.4B22.BAB1112.4B48.4B535.2A32.A.A41.2A$385.4B49.4B22.A9.2A33.2A1066.
4B48.4B550.2A18.A.A10.2A37.2A$386.4B49.4B31.2A32.A.A1065.4B48.4B551.A
.A18.A11.2A37.A21.2A$387.4B49.4B64.2A1065.4B48.4B554.A70.3A18.2A$388.
4B49.4B32.B1096.4B48.4B545.2A8.2A40.2A29.A53.2A6.2A$389.4B49.4B30.3A1094.
4B48.4B547.A50.2A84.A7.A$390.4B49.4B30.B1094.4B48.4B545.3A81.A52.3A5.
3A$391.4B49.4B32.A1090.4B48.4B546.A50.2A30.A.A14.2A35.A7.A$392.4B49.4B
30.BAB1088.4B48.4B511.A85.A2.A29.A.A15.A$393.4B49.4B30.A1088.4B48.4B506.
A4.A.A85.2A29.2A.3A13.A.A$394.4B49.4B25.2A1090.4B48.4B506.A.A3.2A123.
A13.2A$395.4B49.4B23.A2.A1088.4B48.4B508.A.A79.2A40.2A.3A67.2A$396.4B
49.4B23.2A40.2A1046.4B48.4B510.2A79.2A40.2A.A64.2A3.2A14.2A7.A$397.4B
49.4B64.2A1045.4B48.4B600.2A66.2A32.2A19.2A6.A.A$398.4B49.4B1109.4B48.
4B601.2A24.2A40.A.A60.A.A$399.4B49.4B1107.4B48.4B597.2A20.2A7.2A42.A10.
2A49.A$400.4B49.4B1105.4B48.4B598.2A21.A51.2A9.2A18.2A12.2A8.2A$401.4B
41.2A6.4B1103.4B48.4B622.A.A81.A5.2A5.A8.A2.A$402.4B39.A2.A6.4B1101.4B
48.4B624.2A78.3A6.2A6.3A6.2A$403.4B39.A.A7.4B1099.4B48.4B705.A18.A$404.
4B39.A9.4B53.2A1042.4B48.4B$405.4B49.4B52.2A1041.4B48.4B$406.4B49.4B1093.
4B48.4B648.2A$407.4B49.4B13.2A1076.4B48.4B649.2A24.2A$408.4B49.4B11.A
.A1075.4B48.4B676.A45.2A$409.4B49.4B11.A1075.4B48.4B678.3A41.A.A$410.
4B49.4B21.B1063.4B48.4B681.A42.A14.2A$411.4B49.4B19.3A1061.4B48.4B707.
2A30.A.A$412.4B49.4B19.B1061.4B48.4B639.A67.A.A31.A$413.4B23.2A24.4B1079.
4B48.4B639.A.A67.A$414.4B21.A2.A24.4B1077.4B48.4B640.A.A9.A13.2A$415.
4B21.2A26.4B24.A1050.4B48.4B642.A9.A.A11.A.A$416.4B49.4B22.BAB1048.4B
48.4B640.3A10.2A12.A25.2A63.2A$417.4B49.4B22.A9.2A33.2A1002.4B48.4B641.
A25.2A25.A65.A$418.4B49.4B31.2A32.A.A1001.4B48.4B676.2A15.A.A37.A27.A
.A$419.4B49.4B64.2A1001.4B48.4B677.2A15.2A37.A.A12.2A13.2A$420.4B49.4B
32.B1032.4B48.4B734.2A13.2A$421.4B49.4B30.3A1030.4B48.4B$422.4B49.4B30.
B1030.4B48.4B$423.4B49.4B32.A1026.4B48.4B746.2A40.2A$424.4B49.4B30.BA
B1024.4B48.4B747.2A40.2A$425.4B49.4B30.A1024.4B48.4B752.2A$426.4B49.4B
25.2A1026.4B48.4B618.2A133.2A$427.4B49.4B23.A2.A1024.4B48.4B619.2A20.
A$428.4B49.4B23.2A40.2A982.4B48.4B641.A.A$429.4B49.4B64.2A981.4B48.4B
637.2A3.2A$430.4B49.4B1045.4B48.4B608.2A27.A2.A22.A88.2A$431.4B49.4B1043.
4B48.4B610.A28.2A22.A.A15.A6.2A63.2A$432.4B49.4B1041.4B48.4B611.A.A50.
A2.A13.A.A4.A.A$433.4B41.2A6.4B1039.4B48.4B613.2A33.2A16.2A13.A2.A4.A
$434.4B39.A2.A6.4B1037.4B48.4B648.A2.A31.2A4.2A$435.4B39.A.A7.4B1035.
4B48.4B649.A.A$436.4B39.A9.4B53.2A978.4B48.4B651.A$437.4B49.4B52.2A977.
4B48.4B$438.4B49.4B1029.4B48.4B642.2A149.2A$439.4B49.4B13.2A1012.4B48.
4B643.2A149.2A$440.4B49.4B11.A.A1011.4B48.4B$441.4B49.4B11.A1011.4B48.
4B$442.4B49.4B21.B999.4B48.4B620.A.2A$443.4B49.4B19.3A997.4B48.4B619.
3A.2A$444.4B49.4B19.B997.4B48.4B619.A$445.4B23.2A24.4B1015.4B48.4B621.
3A.2A$446.4B21.A2.A24.4B1013.4B48.4B624.A.A31.A129.2A$447.4B21.2A26.4B
24.A986.4B48.4B625.A.A30.A.A128.A.A$448.4B49.4B22.BAB984.4B48.4B627.A
31.A2.A129.A$449.4B49.4B22.A9.2A33.2A938.4B48.4B642.2A17.2A51.2A77.2A
$450.4B49.4B31.2A32.A.A937.4B48.4B643.2A61.2A7.2A$451.4B49.4B64.2A937.
4B48.4B708.A$452.4B49.4B32.B968.4B48.4B709.A.A94.2A$453.4B49.4B30.3A966.
4B48.4B711.2A94.2A$454.4B49.4B30.B966.4B48.4B$455.4B49.4B32.A962.4B48.
4B$456.4B49.4B30.BAB960.4B48.4B640.A87.2A6.A53.2A$457.4B49.4B30.A960.
4B48.4B640.A.A86.A.A4.A.A43.2A7.2A$458.4B49.4B25.2A962.4B48.4B641.A.A
56.2A30.A4.A2.A43.A$459.4B49.4B23.A2.A960.4B48.4B640.3A.2A55.2A30.2A4.
2A44.A.A$460.4B49.4B23.2A40.2A918.4B48.4B640.A146.2A$461.4B49.4B64.2A
917.4B48.4B642.3A.2A157.2A$462.4B49.4B981.4B48.4B645.A.2A60.A47.2A47.
2A$463.4B49.4B979.4B48.4B709.A.A46.A58.2A$464.4B49.4B977.4B48.4B657.2A
51.A2.A46.3A55.A$465.4B41.2A6.4B975.4B48.4B658.2A7.2A43.2A50.A52.A.A$
466.4B39.A2.A6.4B973.4B48.4B668.A95.2A52.2A$467.4B39.A.A7.4B971.4B48.
4B667.A.A110.2A$468.4B39.A9.4B53.2A914.4B48.4B668.2A54.2A55.A$469.4B49.
4B52.2A913.4B48.4B623.A100.A.A52.2A.A$470.4B49.4B965.4B48.4B623.A.A99.
A53.A2.A$471.4B49.4B13.2A948.4B48.4B623.A.A99.2A54.2A$472.4B49.4B11.A
.A947.4B48.4B624.2A26.2A98.2A13.2A$473.4B49.4B11.A947.4B48.4B653.2A98.
2A13.2A60.2A$474.4B49.4B21.B935.4B48.4B685.2A143.A2.A$475.4B49.4B19.3A
933.4B48.4B629.2A54.A.A135.2A7.A.A$476.4B49.4B19.B933.4B48.4B630.A.A54.
A136.A.A7.A$477.4B23.2A24.4B951.4B48.4B632.A194.A68.2A$478.4B21.A2.A24.
4B949.4B48.4B674.A59.2A92.2A67.2A$479.4B21.2A26.4B24.A922.4B48.4B674.
A.A58.2A102.2A$480.4B49.4B22.BAB920.4B48.4B675.A.A84.2A6.A.2A62.A3.A.
A$481.4B49.4B22.A9.2A33.2A874.4B48.4B677.A85.A.A3.3A.2A61.A.A3.A$482.
4B49.4B31.2A32.A.A873.4B48.4B679.3A84.A2.A67.2A$483.4B49.4B64.2A873.4B
48.4B682.A56.2A26.2A2.3A.2A99.A$484.4B49.4B32.B904.4B48.4B740.2A32.A.
A40.2A57.A.A23.2A$485.4B49.4B30.3A902.4B48.4B755.2A18.A.A10.2A28.2A58.
2A24.A$486.4B49.4B30.B902.4B48.4B633.A122.A.A18.A11.2A36.2A13.2A61.A.
A$487.4B49.4B32.A898.4B48.4B633.A.A3.2A118.A68.A13.A2.A46.2A13.2A$488.
4B49.4B30.BAB896.4B48.4B635.2A3.A.A107.2A8.2A40.2A26.3A11.A.A46.2A$489.
4B49.4B30.A896.4B48.4B642.2A108.A50.2A28.A12.A$490.4B49.4B25.2A898.4B
48.4B750.3A123.A$491.4B49.4B23.A2.A896.4B48.4B751.A50.2A30.A41.A.A11.
2A40.2A$492.4B49.4B23.2A40.2A854.4B48.4B802.A2.A28.A.A41.2A11.2A40.2A
$493.4B49.4B64.2A853.4B48.4B804.2A29.A.A58.2A$494.4B49.4B917.4B48.4B835.
2A.3A56.2A$495.4B49.4B915.4B48.4B795.2A45.A$496.4B49.4B913.4B48.4B796.
2A39.2A.3A$497.4B41.2A6.4B911.4B48.4B805.2A31.2A.A$498.4B39.A2.A6.4B909.
4B48.4B806.2A88.2A$499.4B39.A.A7.4B907.4B48.4B802.2A28.2A63.2A$500.4B
39.A9.4B53.2A850.4B48.4B803.2A19.2A7.2A$501.4B49.4B52.2A849.4B48.4B826.
A$502.4B49.4B901.4B48.4B827.A.A60.A$503.4B49.4B13.2A884.4B48.4B829.2A
58.3A$504.4B49.4B11.A.A883.4B48.4B889.A$505.4B49.4B11.A883.4B48.4B672.
A209.2A6.2A$506.4B49.4B21.B871.4B48.4B672.A.A208.A.A51.2A$507.4B49.4B
19.3A869.4B48.4B656.2A15.2A178.2A4.A25.A52.2A$508.4B49.4B19.B869.4B48.
4B651.2A3.A.A23.A27.2A142.2A3.A.A$509.4B23.2A24.4B887.4B48.4B651.A.A3.
2A23.A.A6.A19.2A147.2A30.2A$510.4B21.A2.A24.4B885.4B48.4B653.A28.A2.A
5.A.A199.2A5.2A12.2A30.A$511.4B21.2A26.4B24.A858.4B48.4B684.2A6.2A207.
2A11.A.A29.A.A$512.4B49.4B22.BAB856.4B48.4B709.2A204.A31.A2.A$513.4B49.
4B22.A9.2A33.2A810.4B48.4B710.2A132.A13.2A55.2A32.2A$514.4B49.4B31.2A
32.A.A809.4B48.4B844.A.A11.A2.A25.2A43.2A$515.4B49.4B64.2A809.4B48.4B
845.A.A12.A.A25.2A43.A.A$516.4B49.4B32.B840.4B48.4B847.A14.A73.A$517.
4B49.4B30.3A838.4B48.4B845.3A57.2A30.2A6.2A$518.4B49.4B30.B838.4B48.4B
846.A59.A.A36.A2.A$519.4B49.4B32.A834.4B48.4B684.A224.A37.A.A$520.4B49.
4B30.BAB832.4B48.4B685.3A7.2A213.2A37.A$521.4B49.4B30.A832.4B48.4B689.
A6.A5.A$522.4B49.4B25.2A834.4B48.4B689.2A4.A.A3.3A$523.4B49.4B23.A2.A
832.4B48.4B696.2A3.A169.2A$524.4B49.4B23.2A40.2A790.4B48.4B702.2A167.
A2.A59.2A$525.4B49.4B64.2A789.4B48.4B873.2A51.2A7.2A$526.4B49.4B853.4B
48.4B680.A247.A$527.4B49.4B851.4B48.4B681.3A245.A.A$528.4B49.4B849.4B
48.4B685.A245.2A37.2A$529.4B41.2A6.4B847.4B48.4B685.2A262.2A20.2A$530.
4B39.A2.A6.4B845.4B48.4B950.2A$531.4B39.A.A7.4B843.4B48.4B961.2A$532.
4B39.A9.4B53.2A786.4B48.4B689.2A271.A$533.4B49.4B52.2A785.4B48.4B690.
2A269.A.A$534.4B49.4B837.4B48.4B962.2A$535.4B49.4B13.2A820.4B48.4B$536.
4B49.4B11.A.A819.4B48.4B$537.4B49.4B11.A819.4B48.4B$538.4B49.4B21.B807.
4B48.4B713.2A$539.4B49.4B19.3A805.4B48.4B714.A263.A$540.4B49.4B19.B805.
4B48.4B716.3A259.A.A$541.4B23.2A24.4B823.4B48.4B719.A259.A2.A$542.4B21.
A2.A24.4B821.4B48.4B981.2A$543.4B21.2A26.4B24.A794.4B48.4B967.2A$544.
4B49.4B22.BAB792.4B48.4B714.2A252.A.A$545.4B49.4B22.A9.2A33.2A746.4B48.
4B715.A255.A$546.4B49.4B31.2A32.A.A745.4B48.4B717.3A152.2A98.2A$547.4B
49.4B64.2A745.4B48.4B720.A152.2A107.A$548.4B49.4B32.B776.4B48.4B982.A
.A$549.4B49.4B30.3A774.4B48.4B982.A2.A$550.4B49.4B30.B774.4B48.4B958.
2A24.2A$551.4B49.4B32.A770.4B48.4B705.2A166.2A84.2A$552.4B49.4B30.BAB
768.4B48.4B705.A.A26.A139.2A$553.4B49.4B30.A768.4B48.4B706.A27.A.A$554.
4B49.4B25.2A770.4B48.4B706.2A27.2A234.2A$555.4B49.4B23.A2.A768.4B48.4B
700.A39.2A230.A$556.4B49.4B23.2A40.2A726.4B48.4B700.A.A38.A.A230.3A$557.
4B49.4B64.2A725.4B48.4B702.2A39.A233.A$558.4B49.4B789.4B48.4B458.2A237.
A298.A$559.4B49.4B787.4B48.4B458.A.A236.A.A50.A245.A.A$560.4B49.4B785.
4B48.4B458.A.A3.2A232.2A50.A.A245.2A$561.4B41.2A6.4B783.4B48.4B460.A4.
A.A255.2A26.2A23.A$562.4B39.A2.A6.4B781.4B48.4B467.A256.2A7.2A42.3A20.
2A$563.4B39.A.A7.4B779.4B48.4B734.A46.A19.2A$564.4B39.A9.4B53.2A722.4B
48.4B733.A.A16.2A27.A.A12.A$565.4B49.4B52.2A721.4B48.4B734.2A17.A.A26.
A.A11.A.A$566.4B49.4B773.4B48.4B718.2A35.A.A26.A11.A2.A$567.4B49.4B13.
2A756.4B48.4B719.2A36.A40.2A$568.4B49.4B11.A.A755.4B48.4B710.2A$569.4B
49.4B11.A755.4B48.4B712.A$570.4B49.4B21.B743.4B48.4B713.A.A$571.4B49.
4B19.3A741.4B48.4B715.2A87.2A$572.4B49.4B19.B741.4B48.4B805.2A283.A$573.
4B23.2A24.4B759.4B48.4B980.2A108.A.A$574.4B21.A2.A24.4B757.4B48.4B972.
2A7.2A80.A5.A22.2A$575.4B21.2A26.4B24.A730.4B48.4B974.A88.A.A3.A.A$576.
4B49.4B22.BAB728.4B48.4B789.2A184.A.A86.2A4.A2.A$577.4B49.4B22.A9.2A33.
2A682.4B48.4B710.2A77.A.A185.2A93.2A$578.4B49.4B31.2A32.A.A681.4B48.4B
711.A.A76.A$579.4B49.4B64.2A681.4B48.4B713.A76.2A7.2A$580.4B49.4B32.B
712.4B48.4B728.2A70.2A196.2A67.2A$581.4B49.4B30.3A710.4B48.4B728.A.A268.
A68.2A26.2A$582.4B49.4B30.B710.4B48.4B729.A80.2A.A184.A.A97.A$583.4B49.
4B32.A706.4B48.4B729.2A80.2A.3A182.2A98.A.A$584.4B49.4B30.BAB704.4B48.
4B792.2A24.A267.2A13.2A$585.4B49.4B30.A704.4B48.4B793.2A18.2A.3A268.2A
$586.4B49.4B25.2A706.4B48.4B815.A.A170.2A$587.4B49.4B23.A2.A704.4B48.
4B724.2A90.A.A169.A.A85.A$588.4B49.4B23.2A40.2A662.4B48.4B724.A.A72.2A
17.A170.A86.A.A5.2A40.2A$589.4B49.4B64.2A661.4B48.4B726.A25.2A46.2A187.
2A87.2A5.2A40.2A$590.4B49.4B725.4B48.4B753.2A66.A268.2A$591.4B49.4B723.
4B48.4B746.2A72.3A268.2A$592.4B49.4B721.4B48.4B748.A71.A$593.4B41.2A6.
4B719.4B48.4B729.A16.3A72.2A307.2A$594.4B39.A2.A6.4B717.4B48.4B729.A.
A15.A66.2A207.A107.A.A$595.4B39.A.A7.4B715.4B48.4B730.2A83.2A206.A.A64.
2A41.A$596.4B39.A9.4B53.2A658.4B48.4B750.A250.2A21.A2.A63.2A190.A$597.
4B49.4B52.2A657.4B48.4B750.A.A250.A22.2A45.2A208.A.A$598.4B49.4B709.4B
48.4B751.A.A46.2A199.3A69.A2.A208.2A$599.4B49.4B13.2A692.4B48.4B750.3A
.2A28.2A14.A2.A198.A34.2A35.A.A143.2A$600.4B49.4B11.A.A691.4B48.4B750.
A33.A2.A13.A.A233.A.A36.A144.2A68.2A$601.4B49.4B11.A691.4B48.4B752.3A
.2A27.A.A15.A6.2A30.A196.A251.A2.A$602.4B49.4B21.B679.4B48.4B755.A.2A
28.A24.A29.A.A448.A.A$603.4B49.4B19.3A677.4B48.4B813.A.A28.2A178.2A105.
2A50.A10.2A99.A$604.4B49.4B19.B677.4B48.4B767.2A46.2A208.A.A104.2A48.
3A10.A.A$605.4B23.2A24.4B695.4B48.4B768.2A7.2A249.A153.A14.A84.2A4.2A
$606.4B21.A2.A24.4B693.4B48.4B778.A67.2A154.A26.2A16.2A134.2A7.A9.A17.
A62.2A4.2A$607.4B21.2A26.4B24.A666.4B48.4B777.A.A6.2A25.2A31.A2.A152.
A.A42.A2.A57.2A81.3A8.A.A16.3A$608.4B49.4B22.BAB664.4B48.4B778.2A6.A.
A26.A32.A.A152.2A44.A.A56.A.A80.A11.2A20.A11.A63.A$609.4B49.4B22.A9.2A
33.2A618.4B48.4B788.A27.A.A31.A200.A57.A82.2A31.2A9.3A62.A.A$610.4B49.
4B31.2A32.A.A617.4B48.4B818.2A246.A42.2A125.A48.A16.2A$611.4B49.4B64.
2A617.4B48.4B458.2A606.A.A168.2A10.2A33.3A$612.4B49.4B32.B648.4B48.4B
458.A.A301.2A32.2A270.2A15.A8.2A154.A15.A17.A9.2A3.2A11.2A$613.4B49.4B
30.3A646.4B48.4B458.A.A3.2A297.2A27.2A2.A2.A226.2A58.3A6.2A152.A.A15.
3A15.2A8.2A3.2A11.2A$614.4B49.4B30.B646.4B48.4B460.A4.A.A324.A.A3.A.A
217.2A7.2A61.A159.2A19.A$615.4B49.4B32.A642.4B48.4B467.A326.A5.A43.2A
174.A52.2A15.2A13.2A121.2A41.2A$616.4B49.4B30.BAB640.4B48.4B845.A144.
2A29.A.A49.A.A30.A122.2A79.2A$617.4B49.4B30.A640.4B48.4B847.3A140.A.A
30.2A48.A.A29.A.A101.2A100.A$618.4B49.4B25.2A642.4B48.4B784.A65.A139.
A.A3.2A43.2A32.A30.2A102.2A98.A.A$619.4B49.4B23.A2.A640.4B48.4B784.A.
A205.A4.A.A42.2A267.2A$620.4B49.4B23.2A40.2A598.4B48.4B785.A.A211.A53.
2A46.2A$621.4B49.4B64.2A597.4B48.4B787.A266.A47.2A24.2A144.2A$622.4B49.
4B661.4B48.4B789.3A261.A.A64.2A7.2A144.2A$623.4B49.4B659.4B48.4B458.2A
332.A261.2A66.A$624.4B49.4B657.4B48.4B458.A.A650.A11.A.A112.A7.2A$625.
4B41.2A6.4B655.4B48.4B458.A.A3.2A603.A41.A.A11.2A92.2A17.A.A7.A$626.4B
39.A2.A6.4B653.4B48.4B460.A4.A.A601.A.A41.2A82.2A21.A.A15.A2.A4.3A66.
2A$627.4B39.A.A7.4B651.4B48.4B467.A602.2A125.A.A23.A16.2A5.A68.A$628.
4B39.A9.4B53.2A594.4B48.4B1142.2A54.A25.2A62.2A28.3A$629.4B49.4B52.2A
593.4B48.4B1107.2A34.A.A52.2A89.A31.A$630.4B49.4B645.4B48.4B1108.2A36.
A7.2A135.3A$631.4B49.4B13.2A628.4B48.4B1066.2A79.2A6.2A91.2A44.A$632.
4B49.4B11.A.A627.4B48.4B1059.2A5.A2.A178.A2.A$633.4B49.4B11.A627.4B48.
4B1060.A.A4.A.A175.2A3.A.A$634.4B49.4B21.B615.4B48.4B1063.A5.A91.A9.2A
73.2A4.A$635.4B49.4B19.3A613.4B48.4B1064.2A95.A.A8.A$636.4B49.4B19.B613.
4B48.4B1162.A.A9.3A135.2A$637.4B23.2A24.4B631.4B48.4B1164.A13.A134.2A
$638.4B21.A2.A24.4B629.4B48.4B1077.2A99.2A120.2A20.2A$639.4B21.2A26.4B
24.A602.4B48.4B1077.A2.A113.2A105.2A20.A$640.4B49.4B22.BAB600.4B48.4B
1079.A.A56.2A55.A111.2A16.3A$641.4B49.4B22.A9.2A33.2A554.4B48.4B1053.
2A26.A56.A.A52.2A.A110.A2.A17.A$642.4B49.4B31.2A32.A.A553.4B48.4B1054.
2A83.A53.A2.A112.2A$643.4B49.4B64.2A553.4B48.4B1063.2A74.2A54.2A132.A
$644.4B49.4B32.B584.4B48.4B1064.A101.2A13.2A146.A.A$645.4B49.4B30.3A582.
4B48.4B1066.3A67.2A29.2A13.2A146.A.A$646.4B49.4B30.B582.4B48.4B1069.A
67.2A191.2A.3A$647.4B49.4B32.A79.2A497.4B48.4B1337.A$648.4B49.4B30.BA
B77.A2.A495.4B48.4B1070.A201.A59.2A.3A$649.4B49.4B30.A79.2A495.4B48.4B
1070.A.A198.3A59.2A.A$650.4B49.4B25.2A578.4B48.4B1071.A.A74.2A121.A$651.
4B49.4B23.A2.A576.4B48.4B1071.2A.3A9.2A54.2A5.2A121.2A43.2A8.2A$652.4B
49.4B23.2A40.2A534.4B48.4B1078.A7.A2.A53.2A31.2A6.A.2A130.A.A7.2A$653.
4B49.4B64.2A533.4B48.4B1073.2A.3A8.A.A87.A.A3.3A.2A19.2A111.A$654.4B49.
4B597.4B48.4B1074.2A.A11.A47.A42.A2.A24.A.A111.A.A$655.4B49.4B122.B472.
4B48.4B1137.A.A13.2A26.2A2.3A.2A19.A113.2A$656.4B49.4B120.3A470.4B48.
4B1068.2A69.2A13.2A32.A.A$657.4B41.2A6.4B120.B470.4B48.4B1060.2A7.2A98.
2A18.A.A10.2A84.A$658.4B39.A2.A6.4B589.4B48.4B1062.A82.A24.A.A18.A11.
2A10.A71.3A$659.4B39.A.A7.4B587.4B48.4B1063.A.A79.A.A25.A41.A.A69.A60.
2A$660.4B39.A9.4B53.2A530.4B48.4B1065.2A79.A2.A5.2A7.2A8.2A40.A2.A68.
2A9.2A48.2A$661.4B49.4B52.2A529.4B48.4B1148.2A5.A.A8.A51.2A47.2A31.2A
$662.4B49.4B581.4B48.4B1157.A6.3A101.2A$663.4B49.4B13.2A564.4B48.4B1165.
A$664.4B49.4B11.A.A563.4B48.4B1089.2A$665.4B49.4B11.A73.2A488.4B48.4B
1090.2A247.A$666.4B49.4B21.B62.2A487.4B48.4B1339.A.A$667.4B49.4B19.3A
57.2A490.4B48.4B1340.A.A$668.4B49.4B19.B58.2A489.4B48.4B1166.2A118.2A
54.A11.A$669.4B23.2A24.4B567.4B48.4B1167.2A118.2A51.3A11.A.A$670.4B21.
A2.A24.4B565.4B48.4B1080.A260.A13.2A4.2A$671.4B21.2A26.4B24.A66.A471.
4B48.4B986.A93.A.A278.A2.A$672.4B49.4B22.BAB64.BAB469.4B48.4B986.A.A92.
A.A279.A.A$673.4B49.4B22.A9.2A55.A469.4B48.4B458.2A528.2A93.A189.A91.
A$674.4B49.4B31.2A524.4B48.4B458.A.A620.3A189.A.A$675.4B49.4B555.4B48.
4B458.A.A3.2A616.A191.A2.A$676.4B49.4B32.B44.A5.A9.2A458.4B48.4B460.A
4.A.A808.2A34.A$677.4B49.4B30.3A42.BAB3.BAB8.2A457.4B48.4B467.A844.A.
A$678.4B49.4B30.B44.A5.A20.2A445.4B48.4B1314.A$679.4B49.4B32.A25.2A17.
B23.2A444.4B48.4B$680.4B49.4B30.BAB24.2A16.3A467.4B48.4B990.2A$681.4B
49.4B30.A44.B10.2A455.4B48.4B990.A2.A$682.4B49.4B25.2A58.2A454.4B48.4B
992.A.A313.2A3.2A$683.4B49.4B23.A2.A32.B479.4B48.4B994.A314.2A3.2A5.2A
$684.4B49.4B23.2A32.3A477.4B48.4B1322.2A$685.4B49.4B57.B477.4B48.4B$686.
4B49.4B92.2A439.4B48.4B1304.A.2A$687.4B49.4B91.2A438.4B48.4B1290.A12.
3A.2A$688.4B49.4B65.A463.4B48.4B1290.A.A10.A11.2A$689.4B41.2A6.4B63.B
AB461.4B48.4B1291.2A12.3A.2A5.A$690.4B39.A2.A6.4B63.A461.4B48.4B1308.
A.A7.3A$691.4B39.A.A7.4B523.4B48.4B1309.A.A9.A$692.4B39.A9.4B521.4B48.
4B1311.A$693.4B49.4B74.2A10.A432.4B48.4B1296.2A$694.4B49.4B73.2A9.A.A
430.4B48.4B1297.2A$695.4B49.4B13.2A68.2A430.4B48.4B$696.4B49.4B11.A.A
499.4B48.4B$697.4B49.4B11.A499.4B48.4B$698.4B49.4B21.B487.4B48.4B$699.
4B49.4B19.3A485.4B48.4B$700.4B49.4B19.B37.2A446.4B48.4B$701.4B23.2A24.
4B56.2A445.4B48.4B$702.4B21.A2.A24.4B501.4B48.4B$703.4B21.2A26.4B24.A
474.4B48.4B$704.4B49.4B22.BAB472.4B48.4B$705.4B49.4B22.A9.2A21.2A438.
4B48.4B$706.4B49.4B31.2A21.2A2.2A433.4B48.4B$707.4B49.4B57.2A432.4B48.
4B$708.4B49.4B32.B456.4B48.4B$709.4B49.4B30.3A454.4B48.4B$710.4B49.4B
30.B454.4B48.4B471.A$711.4B49.4B32.A450.4B48.4B466.A4.A.A$712.4B49.4B
30.BAB448.4B48.4B466.A.A3.2A$713.4B49.4B30.A448.4B48.4B468.A.A$714.4B
49.4B25.2A450.4B48.4B470.2A588.A$715.4B49.4B23.A2.A448.4B48.4B1060.A.
A$716.4B49.4B23.2A40.2A406.4B48.4B1061.2A$717.4B49.4B64.2A405.4B48.4B
$718.4B49.4B469.4B48.4B$719.4B49.4B467.4B48.4B1062.2A$720.4B49.4B465.
4B48.4B1063.A.A$721.4B41.2A6.4B463.4B48.4B1065.A.A63.A$722.4B39.A2.A6.
4B461.4B48.4B1067.A64.3A$723.4B39.A.A7.4B459.4B48.4B1136.A$724.4B39.A
9.4B53.2A402.4B48.4B1136.2A$725.4B49.4B39.2A11.2A401.4B48.4B$726.4B49.
4B38.2A2.2A409.4B48.4B$727.4B49.4B13.2A26.2A408.4B48.4B$728.4B49.4B11.
A.A435.4B48.4B$729.4B49.4B11.A435.4B48.4B1162.2A$730.4B49.4B21.B423.4B
48.4B1163.A.A$731.4B49.4B19.3A421.4B48.4B1166.A$732.4B49.4B19.B421.4B
48.4B1167.2A$733.4B23.2A24.4B439.4B48.4B$734.4B21.A2.A24.4B437.4B48.4B
$735.4B21.2A26.4B24.A410.4B48.4B1165.2A$736.4B49.4B22.BAB408.4B48.4B1144.
2A20.A.A322.A$737.4B49.4B22.A9.2A33.2A362.4B48.4B1134.2A10.A22.A138.A
182.A.A$738.4B49.4B31.2A32.A.A361.4B48.4B1134.A2.A6.3A23.2A136.A.A180.
A2.A$739.4B49.4B64.2A361.4B48.4B1136.2A7.A163.A.A180.A.A$740.4B49.4B32.
B392.4B48.4B1311.A182.A$741.4B49.4B30.3A390.4B48.4B1005.2A$742.4B49.4B
30.B390.4B48.4B1006.A.A492.2A$743.4B49.4B32.A386.4B48.4B1008.A178.A314.
2A$744.4B49.4B30.BAB384.4B48.4B1165.2A20.A.A127.A$745.4B49.4B30.A384.
4B48.4B1000.2A145.2A17.2A20.A2.A125.A.A$746.4B49.4B25.2A386.4B48.4B1000.
A2.A143.A2.A8.2A29.2A125.A2.A$747.4B49.4B23.A2.A384.4B48.4B1002.A.A143.
A.A10.A157.2A$748.4B49.4B23.2A40.2A342.4B48.4B1004.A145.A8.3A$749.4B49.
4B64.2A341.4B48.4B1160.A$750.4B49.4B405.4B48.4B1183.A$751.4B49.4B403.
4B48.4B1183.A.A$752.4B49.4B401.4B48.4B1185.2A$753.4B41.2A6.4B399.4B48.
4B$754.4B39.A2.A6.4B397.4B48.4B$755.4B39.A.A7.4B395.4B48.4B$756.4B39.
A9.4B53.2A338.4B48.4B$757.4B49.4B52.2A337.4B48.4B$758.4B49.4B389.4B48.
4B1196.2A$759.4B49.4B13.2A372.4B48.4B1197.2A$760.4B49.4B11.A.A371.4B48.
4B1194.A$761.4B49.4B11.A371.4B48.4B1194.A.A$762.4B49.4B21.B359.4B48.4B
1195.2A$763.4B49.4B19.3A357.4B48.4B$764.4B49.4B19.B357.4B48.4B1266.2A
$765.4B23.2A24.4B375.4B48.4B1188.2A56.A20.2A$766.4B21.A2.A24.4B373.4B
48.4B1189.2A55.A.A$767.4B21.2A26.4B24.A346.4B48.4B1248.2A3.2A$768.4B49.
4B22.BAB344.4B48.4B1198.A54.A2.A27.2A$769.4B49.4B22.A9.2A33.2A298.4B48.
4B1199.3A53.2A28.A$770.4B49.4B31.2A32.A.A297.4B48.4B1203.A80.A.A19.A$
771.4B49.4B64.2A297.4B48.4B1203.2A45.2A33.2A19.A.A4.A$772.4B49.4B32.B
328.4B48.4B1188.2A60.A2.A54.2A3.A.A$773.4B49.4B30.3A326.4B48.4B1188.A
.A61.A.A58.A.A$774.4B49.4B30.B326.4B48.4B1189.A64.A59.2A$775.4B49.4B32.
A322.4B48.4B1189.2A$776.4B49.4B30.BAB320.4B48.4B1266.2A$777.4B49.4B30.
A320.4B48.4B1267.2A$778.4B49.4B25.2A322.4B48.4B$779.4B49.4B23.A2.A320.
4B48.4B1172.A$780.4B49.4B23.2A40.2A278.4B48.4B1171.3A120.2A.A$781.4B49.
4B64.2A277.4B48.4B1171.A123.2A.3A$782.4B49.4B341.4B48.4B777.2A393.2A128.
A$783.4B49.4B339.4B48.4B778.2A378.2A137.2A.3A$784.4B49.4B337.4B48.4B1160.
A55.2A49.A31.A.A$785.4B41.2A6.4B335.4B48.4B1161.A.2A52.A.A47.A.A30.A.
A176.A$786.4B39.A2.A6.4B333.4B48.4B1163.A2.A53.A46.A2.A31.A176.A.A$787.
4B39.A.A7.4B331.4B48.4B1165.2A54.2A46.2A17.2A191.2A$788.4B39.A9.4B53.
2A274.4B48.4B778.2A416.2A91.2A$789.4B49.4B52.2A273.4B48.4B780.A18.A357.
2A38.2A$790.4B49.4B325.4B48.4B781.A.A14.3A356.A.A$791.4B49.4B13.2A308.
4B48.4B783.2A13.A360.A$792.4B49.4B11.A.A307.4B48.4B799.2A$793.4B49.4B
11.A307.4B48.4B$794.4B49.4B21.B295.4B48.4B1226.2A77.A177.2A$795.4B49.
4B19.3A293.4B48.4B782.2A443.2A76.A.A175.A2.A$796.4B49.4B19.B293.4B48.
4B783.2A381.2A24.2A.A6.2A102.A.A176.A.A$797.4B23.2A24.4B311.4B48.4B1167.
2A24.2A.3A3.A.A101.2A.3A175.A$798.4B21.A2.A24.4B309.4B48.4B1200.A2.A109.
A$799.4B21.2A26.4B24.A282.4B48.4B1195.2A.3A2.2A26.2A75.2A.3A$800.4B49.
4B22.BAB280.4B48.4B1197.A.A32.2A75.2A.A$801.4B49.4B22.A9.2A33.2A234.4B
48.4B783.A402.2A10.A.A18.2A$802.4B49.4B31.2A32.A.A233.4B48.4B783.A.A401.
2A11.A18.A.A81.2A$803.4B49.4B64.2A233.4B48.4B784.A.A5.2A426.A74.2A7.2A
$804.4B49.4B32.B264.4B48.4B786.A5.A.A425.2A8.2A65.A$805.4B49.4B30.3A262.
4B48.4B793.A123.A11.2A300.A66.A.A$806.4B49.4B30.B262.4B48.4B793.2A122.
A.A10.2A301.3A64.2A$807.4B49.4B32.A258.4B48.4B885.2A31.A.A315.A$808.4B
49.4B30.BAB256.4B48.4B887.A25.2A2.3A.2A$809.4B49.4B30.A256.4B48.4B888.
A.A23.A2.A$810.4B49.4B25.2A258.4B48.4B890.2A21.A.A3.3A.2A277.2A120.2A
$811.4B49.4B23.A2.A256.4B48.4B914.2A6.A.2A276.A2.A6.A112.2A$812.4B49.
4B23.2A40.2A214.4B48.4B810.2A392.A.A5.A.A10.A7.2A60.2A$813.4B49.4B64.
2A213.4B48.4B811.2A393.A5.A2.A9.A.A5.A2.A59.A.A$814.4B49.4B277.4B48.4B
1214.2A10.A.A5.A.A61.A$815.4B49.4B275.4B48.4B797.A26.A6.2A316.A78.A7.
A$816.4B49.4B273.4B48.4B797.A.A24.A.A5.2A310.A4.A.A163.A40.A$817.4B41.
2A6.4B271.4B48.4B797.A2.A23.A2.A316.A.A3.2A163.A.A33.2A3.A.A$818.4B39.
A2.A6.4B269.4B48.4B799.2A25.2A91.2A13.2A210.A.A167.A.A32.A.A3.2A$819.
4B39.A.A7.4B267.4B48.4B920.2A13.2A211.2A168.A33.2A$820.4B39.A9.4B53.2A
210.4B48.4B951.2A363.3A$821.4B49.4B52.2A209.4B48.4B951.A2.A7.A354.A$822.
4B49.4B261.4B48.4B953.2A.A5.A.A$823.4B49.4B13.2A244.4B48.4B957.A5.2A$
824.4B49.4B11.A.A243.4B48.4B958.2A$825.4B49.4B11.A243.4B48.4B944.2A$826.
4B49.4B21.B231.4B48.4B946.A$827.4B49.4B19.3A229.4B48.4B804.2A13.2A4.2A
92.2A12.2A9.3A19.2A$828.4B49.4B19.B229.4B48.4B804.A.A13.2A4.2A92.A12.
A2.A8.A21.2A162.A$829.4B23.2A24.4B247.4B48.4B806.A109.2A4.3A10.2A194.
A.A$830.4B21.A2.A24.4B245.4B48.4B917.2A6.A206.2A$831.4B21.2A26.4B24.A
218.4B48.4B$832.4B49.4B22.BAB216.4B48.4B829.2A112.A5.A180.2A$833.4B49.
4B22.A9.2A33.2A170.4B48.4B826.2A2.2A111.A.A3.A.A178.A2.A$834.4B49.4B31.
2A32.A.A169.4B48.4B826.A.A115.A2.A2.A.A178.A.A$835.4B49.4B64.2A169.4B
48.4B827.A118.2A4.A180.A$836.4B49.4B32.B200.4B48.4B827.2A28.2A102.2A$
837.4B49.4B30.3A198.4B48.4B858.A79.A23.2A179.2A4.2A$838.4B49.4B30.B198.
4B48.4B860.3A75.A.A203.2A4.2A$839.4B49.4B32.A194.4B48.4B863.A7.2A67.2A
$840.4B49.4B30.BAB192.4B48.4B821.A49.A2.A262.A$841.4B49.4B30.A192.4B48.
4B821.A.A48.A.A262.A.A$842.4B49.4B25.2A194.4B48.4B822.A.A49.A264.2A16.
A60.2A13.2A$843.4B49.4B23.A2.A192.4B48.4B824.A23.2A308.3A33.2A24.A14.
A$844.4B49.4B23.2A40.2A150.4B48.4B848.A.A282.2A11.2A3.2A9.A17.A15.A13.
2A6.3A15.A.A$845.4B49.4B64.2A149.4B48.4B849.A284.2A11.2A3.2A8.2A15.3A
15.A.A11.2A6.A18.2A$846.4B49.4B213.4B48.4B849.2A328.A19.2A$847.4B49.4B
211.4B48.4B877.2A301.2A$848.4B49.4B209.4B48.4B877.A2.A262.2A121.2A$849.
4B41.2A6.4B207.4B48.4B879.2A264.A121.A$850.4B39.A2.A6.4B205.4B48.4B1146.
A.A117.A.A$851.4B39.A.A7.4B203.4B48.4B1148.2A117.2A4.2A$852.4B39.A9.4B
53.2A146.4B48.4B1236.2A36.A$853.4B49.4B52.2A145.4B48.4B866.2A321.2A46.
2A34.A.A$854.4B49.4B197.4B48.4B867.2A7.2A312.2A82.2A$855.4B49.4B13.2A
180.4B48.4B877.A$856.4B49.4B11.A.A179.4B48.4B876.A.A$857.4B49.4B11.A179.
4B48.4B877.2A$858.4B49.4B21.B167.4B48.4B1158.2A$859.4B49.4B19.3A165.4B
48.4B1160.A79.2A$860.4B49.4B19.B165.4B48.4B862.2A294.3A28.2A50.A19.2A
$861.4B23.2A24.4B183.4B48.4B864.A294.A31.A31.2A3.2A13.3A15.A.A$862.4B
21.A2.A24.4B181.4B48.4B865.A.A321.3A33.A3.A16.A15.A$863.4B21.2A26.4B24.
A154.4B48.4B867.2A321.A32.3A5.3A28.2A$864.4B49.4B22.BAB152.4B48.4B1224.
A9.A$865.4B49.4B22.A9.2A33.2A106.4B48.4B$866.4B49.4B31.2A32.A.A105.4B
48.4B884.2A$867.4B49.4B64.2A105.4B48.4B862.2A21.A.A$868.4B49.4B32.B136.
4B48.4B862.A2.A22.A292.2A55.2A6.2A11.2A$869.4B49.4B30.3A134.4B48.4B863.
A.A23.2A291.2A55.A.A4.A.A10.A2.A2.2A$870.4B49.4B30.B134.4B48.4B865.A309.
2A20.2A42.A6.A4.A7.2A3.2A$871.4B49.4B32.A130.4B48.4B1177.A20.2A53.A.A
$872.4B49.4B30.BAB128.4B48.4B902.2A271.3A16.2A57.A2.A$873.4B49.4B30.A
128.4B48.4B864.A38.2A271.A17.A2.A57.2A12.2A79.A11.2A$874.4B49.4B25.2A
130.4B48.4B864.A.A329.2A72.2A78.A.A10.2A$875.4B49.4B23.A2.A128.4B48.4B
866.2A216.2A3.2A88.A138.2A31.A.A$876.4B49.4B23.2A40.2A86.4B48.4B891.2A
57.A133.A2.A2.A.A86.A.A138.A25.2A2.3A.2A$877.4B49.4B64.2A85.4B48.4B892.
A57.A.A133.A.A3.A87.A.A138.A.A23.A2.A$878.4B49.4B149.4B48.4B894.3A55.
2A134.A43.2A45.3A.2A138.2A21.A.A3.3A.2A$879.4B49.4B147.4B48.4B897.A235.
2A44.A167.2A6.A.2A$880.4B49.4B145.4B48.4B1181.3A.2A$881.4B41.2A6.4B143.
4B48.4B957.2A225.A.2A$882.4B39.A2.A6.4B141.4B48.4B957.A.A$883.4B39.A.
A7.4B139.4B48.4B882.2A73.A.A156.A11.2A66.2A8.2A$884.4B39.A9.4B53.2A82.
4B48.4B882.A.A74.A156.A.A10.2A4.2A60.2A7.A.A$885.4B49.4B52.2A81.4B48.
4B883.A200.2A31.A.A15.A2.A68.A$886.4B49.4B133.4B48.4B883.2A201.A25.2A
2.3A.2A14.A.A67.A.A143.2A13.2A$887.4B49.4B13.2A116.4B48.4B1087.A.A23.
A2.A21.A68.2A144.2A13.2A$888.4B49.4B11.A.A115.4B48.4B1089.2A21.A.A3.3A
.2A260.2A227.2A$889.4B49.4B11.A115.4B48.4B1113.2A6.A.2A141.2A116.A2.A
226.A.A$890.4B49.4B21.B103.4B48.4B1267.2A117.2A.A221.2A3.A.A$891.4B49.
4B19.3A101.4B48.4B1191.2A197.A220.A.A4.A$892.4B49.4B19.B101.4B48.4B1192.
2A60.A136.2A220.A$893.4B23.2A24.4B119.4B48.4B900.2A352.A.A120.2A$894.
4B21.A2.A24.4B117.4B48.4B901.2A7.2A343.A.A121.A$895.4B21.2A26.4B24.A90.
4B48.4B911.A342.3A.2A92.2A23.3A$896.4B49.4B22.BAB88.4B48.4B910.A.A205.
2A13.2A119.A16.2A80.A24.A$897.4B49.4B22.A9.2A33.2A42.4B48.4B911.2A206.
2A13.2A77.A42.3A.2A10.2A81.3A$898.4B49.4B31.2A32.A.A41.4B48.4B895.2A253.
2A61.A.A43.A.2A86.2A7.A$899.4B49.4B64.2A41.4B48.4B896.2A252.A2.A60.A.
A133.A$900.4B49.4B32.B72.4B48.4B887.2A263.2A.A48.A11.A135.3A24.A$901.
4B49.4B30.3A70.4B48.4B889.A266.A47.A.A11.3A134.A23.A.A$902.4B49.4B30.
B70.4B48.4B890.A.A264.2A41.2A4.2A13.A158.A.A$903.4B49.4B32.A66.4B48.4B
892.2A249.2A55.A2.A178.A$904.4B49.4B30.BAB64.4B48.4B1145.A55.A.A$905.
4B49.4B30.A64.4B48.4B1118.2A13.2A8.3A57.A61.2A95.A14.2A$906.4B49.4B25.
2A66.4B48.4B1119.A14.2A8.A121.2A8.A85.A.A12.A2.A17.A$907.4B49.4B23.A2.
A64.4B48.4B884.2A235.3A152.A.A84.A.A13.A.A17.3A$908.4B49.4B23.2A64.4B
48.4B885.2A228.2A7.A15.2A134.A2.A85.A15.A9.2A10.A$909.4B49.4B87.4B48.
4B1116.A24.2A135.2A111.A.A9.2A$910.4B49.4B85.4B48.4B890.2A226.3A175.2A
95.A$911.4B49.4B83.4B48.4B890.A2.A227.A175.A.A76.2A$912.4B49.4B81.4B48.
4B891.A.A11.2A367.2A24.A75.A2.A$913.4B41.2A6.4B79.4B48.4B893.A11.A.A223.
A143.2A24.2A75.A.A$914.4B39.A2.A6.4B77.4B48.4B906.A224.A.A246.A48.2A$
915.4B39.A.A7.4B75.4B48.4B906.2A223.A2.A295.A.A$916.4B39.A9.4B73.4B48.
4B1133.2A132.2A164.A$917.4B49.4B71.4B48.4B1267.A2.A163.2A$918.4B49.4B
69.4B48.4B1269.A.A17.2A$919.4B49.4B13.2A52.4B48.4B896.2A373.A18.2A$920.
4B49.4B11.A.A51.4B48.4B897.2A533.2A$921.4B49.4B11.A51.4B48.4B929.2A383.
2A117.A.A$922.4B49.4B21.B39.4B48.4B930.2A351.2A30.2A119.A$923.4B49.4B
19.3A37.4B48.4B923.2A359.2A151.2A$924.4B49.4B19.B37.4B48.4B925.A$925.
4B23.2A24.4B55.4B48.4B923.3A562.A$926.4B21.A2.A24.4B53.4B48.4B924.A36.
A526.A.A$927.4B21.2A26.4B24.A26.4B48.4B956.A4.A.A308.A46.2A124.2A43.2A
$928.4B49.4B22.BAB24.4B48.4B910.2A15.A28.A.A3.2A308.A.A45.2A123.A.A$929.
4B49.4B22.A24.4B48.4B911.A.A13.A.A28.A.A312.A.A156.2A13.A$930.4B49.4B
45.4B48.4B913.A14.A.A29.2A198.2A110.3A.2A16.2A137.2A20.A39.2A$931.4B49.
4B43.4B48.4B927.3A.2A227.A2.A108.A22.2A25.A103.2A27.A.A37.A.A$932.4B49.
4B41.4B48.4B910.2A15.A233.A.A110.3A.2A42.A.A103.A27.A.A36.A.A$933.4B49.
4B39.4B48.4B910.A2.A15.3A.2A228.A113.A.2A34.2A7.2A100.3A29.A38.A$934.
4B49.2B2A37.4B48.4B911.A.A18.A.2A380.A.A31.2A75.A$935.4B49.2A2B35.4B48.
4B913.A278.2A125.A30.A.A$936.4B49.BA35.4B48.4B944.2A247.2A125.2A28.A.
A3.2A72.A$937.4B84.4B48.4B945.2A7.2A396.A4.A.A70.A.A288.A$938.4B82.4B
48.4B955.A332.2A69.A71.A.A26.A260.A.A$939.4B80.4B48.4B954.A.A326.2A4.
2A139.3A.2A24.A.A255.A3.2A$940.4B78.4B48.4B955.2A214.2A110.A.A27.2A115.
A30.2A255.A.A$941.4B76.4B48.4B924.A247.2A110.A29.A.A115.3A.2A282.2A$942.
4B74.4B48.4B924.A.A357.2A31.A117.A.2A$943.4B72.4B48.4B926.2A271.A11.2A
80.2A23.2A$944.4B70.4B48.4B939.2A258.A.A10.2A80.2A151.2A$945.4B41.2A25.
4B48.4B940.2A225.2A31.A.A245.2A7.2A$946.4B39.A2.A23.4B48.4B1129.2A25.
2A11.A25.2A2.3A.2A253.A6.A$947.4B39.A.A22.4B48.4B1003.A125.A2.A23.A.A
11.A.A23.A2.A103.A153.A.A5.A.A$948.4B39.A22.4B48.4B998.A4.A.A124.A.A3.
2A20.A13.2A21.A.A3.3A.2A96.A.A152.2A6.2A$949.4B60.4B48.4B998.A.A3.2A126.
A3.A.A57.2A6.A.2A97.A$950.4B58.4B48.4B961.A38.A.A135.A$951.4B56.4B48.
4B961.A.A38.2A424.A$952.4B54.4B48.4B962.A.A18.2A177.2A264.A.A11.2A$953.
4B52.4B48.4B964.A19.2A177.2A134.A5.2A123.2A11.2A$954.4B50.4B48.4B966.
3A330.A.A3.A2.A128.2A$955.4B48.4B48.4B969.A179.2A150.2A4.2A10.2A116.A
2.A$956.4B46.4B48.4B1150.2A49.2A13.2A101.A2.A116.A.A$957.4B23.2A19.4B
48.4B995.2A175.A29.2A13.2A102.2A118.A$958.4B21.A2.A17.4B48.4B996.2A173.
3A59.2A229.A$959.4B21.2A17.4B48.4B1005.A165.A61.A2.A227.A.A$960.4B38.
4B48.4B1005.A.A164.2A61.2A.A226.A.A$961.4B36.4B48.4B1007.A7.2A222.A227.
A42.2A$962.4B19.2B2.2B9.4B48.4B1016.A223.2A227.3A39.A.A2.2A87.2A$963.
4B16.9B7.4B48.4B983.2A30.A.A208.2A244.A40.A3.2A79.A6.A2.A$964.4B14.4B
C6B5.4B48.4B983.A.A30.2A210.A369.A.A6.A.A$965.4B13.3BCBC6B3.4B48.4B985.
A105.A11.2A121.3A276.2A93.2A7.A$966.4B12.3B2C8B.4B48.4B1091.A.A10.2A121.
A277.A2.A$967.4B11.17B48.4B1059.2A31.A.A94.2A316.A.A10.2A$968.4B11.6B
.2B.5B48.4B979.2A8.A71.A25.2A2.3A.2A93.2A317.A11.2A$969.4B10.6B4.5B47.
4B979.A2.A6.A.A70.A.A23.A2.A$970.4B10.B2C2B3.7B45.4B981.2A8.2A26.2A.A
41.2A21.A.A3.3A.2A55.2A$971.4B8.BCBC2B2.4B.4B43.4B1020.2A.3A62.2A6.A.
2A55.2A365.2A89.2A$972.4B6.2B2C8B3.4B41.4B1027.A182.2A311.2A88.A2.A$973.
4B4.4B2.6B5.4B39.4B1022.2A.3A183.2A2.2A294.2A102.A.A$974.4B2.4B4.4B7.
4B37.4B1024.A.A172.2A15.A.A294.A70.2A31.A$975.8B4.5B8.4B35.4B1025.A.A
152.2A19.A17.A132.A161.A.A68.2A$976.6B4.6B9.4B33.4B1027.A153.A.A15.3A
18.2A130.A.A161.2A46.A$977.4B4.2B2CB12.4B31.4B1002.A181.A15.A38.A114.
2A209.3A$978.4B3.BCBCB13.4B29.4B1002.A.A88.2A13.2A75.2A52.A.A327.A$978.
4B3.BC3B14.4B27.4B1003.A.A88.2A13.2A129.A.A326.2A39.2A$975.2B.BC3B2.2C
2B16.4B25.4B1005.A11.2A106.2A115.A116.2A148.2A100.2A5.2A$974.4BCBC2B23.
4B23.4B1018.2A105.A2.A7.A94.2A126.A.A79.A69.A107.2A$974.3BCBC2B25.4B21.
4B1127.2A.A5.A.A92.A2.A5.A118.A.A74.A4.A.A68.A.A$975.2B2C3B26.4B19.4B
1131.A5.2A93.A.A5.A.A118.A74.A.A3.2A70.2A$976.5B28.4B17.4B1132.2A100.
A6.A2.A5.A187.A.A179.2A$978.3B29.4B15.4B1118.2A123.2A5.A.A187.2A92.2A
85.2A$979.B31.4B13.4B1002.2A116.A109.2A19.A.A281.2A29.2A60.2A$1012.4B
6.2B3.4B1003.2A29.A58.2A12.2A9.3A19.2A88.A2.A19.A313.2A60.2A$1013.4B4.
3B2.4B1034.A.A57.A12.A2.A8.A21.2A88.A.A$1014.4B3.8B131.2A902.A.A52.2A
4.3A10.2A122.A$1015.13B132.2A901.2A.3A50.2A6.A459.A$1016.11B1042.A516.
A.A$1016.2C8B1037.2A.3A74.A5.A436.2A$1016.2C9B1036.2A.A75.A.A3.A.A444.
2A32.2A$1017.10B1115.A2.A2.A.A444.A20.2A11.2A$1019.8B1028.2A86.2A4.A446.
3A18.A$1020.B2C3B1020.2A7.2A100.2A439.A15.3A44.A$1021.2CB1009.A13.A85.
A23.2A401.2A52.A44.3A$1022.2B1008.A.A12.A.A82.A.A406.2A17.2A96.A$2032.
A.A13.2A83.2A405.A.A115.2A$2033.A506.A90.2A$2539.2A75.A5.A7.A.A$2566.
2A15.A31.A.A3.A.A6.A$2032.2A34.2A495.A2.A13.A.A30.A.A3.A.A5.2A$1011.2A
1019.2A34.2A496.A.A14.2A31.A5.A$1010.A2.A1553.A$1011.2A$2605.A4.A$2566.
A37.A.A2.A.A$2038.2A13.A511.A.A35.A2.A2.2A16.A$2029.2A7.2A12.A.A452.A
57.A2.A35.2A21.3A35.2A$2030.A21.A.A446.A4.A.A57.2A62.A34.2A$2030.A.A20.
A15.A430.A.A3.2A112.2A7.2A$2024.A6.2A17.3A15.A.A69.A360.A.A117.A$2024.
3A23.A17.A2.A4.2A56.A4.A.A360.2A117.A.A$1018.A1008.A41.2A4.A2.A54.A.A
3.2A481.2A36.2A$1017.A.A1006.2A48.A.A55.A.A523.2A$1016.A2.A1057.A57.2A
527.2A$1017.2A1645.2A$2027.2A$2027.2A$2044.2A612.2A$2044.A.A571.A23.2A
14.2A$1047.2A997.A570.A.A22.A$1046.A2.A996.2A570.A14.2A8.3A$1047.2A1584.
A11.A$1051.A1582.3A$1050.BAB1209.A373.A$1051.A1210.3A20.2A$1048.B1216.
A19.2A333.2A$1047.3A1214.A.A12.A339.A.A$1048.B991.2A222.A.A11.A.A338.
A$2040.A224.A11.A2.A337.2A$1045.2A994.3A234.2A354.2A$1035.A9.2A996.A590.
A.A$1034.BAB1296.2A301.A10.2A$979.2A54.A1296.A.A292.2A7.2A8.A2.A$978.
A2.A1298.2A49.A.A3.2A288.2A17.A.A$979.2A1299.2A50.A4.A.A307.A$1027.B1310.
A304.2A$1026.3A1613.A.A$1027.B1615.A$1016.A1243.2A$1015.A.A1241.A.A$1016.
2A1241.A$2258.2A7.2A$1053.2A1212.2A$986.A66.2A$985.A.A1044.2A241.2A.A
356.2A$984.A2.A1044.2A7.2A232.2A.3A354.2A$985.2A1054.A213.2A24.A360.A
$2039.A.A213.2A18.2A.3A360.A.A$2039.2A235.A.A362.A.A$2276.A.A363.A$1057.
2A1199.2A17.A$1015.2A40.2A962.A31.2A203.2A$1014.A2.A1003.3A22.2A4.A2.
A222.A$1015.2A1007.A21.A.A4.2A3.2A216.3A$1019.A1003.2A22.A10.2A15.2A198.
A366.2A$1018.BAB1053.A2.A197.2A364.A2.A$1019.A1054.A.A190.2A372.A.A$1016.
B1058.A191.2A373.A$1015.3A$1016.B1613.2A$1047.2A1200.2A378.A2.A48.A$1013.
2A32.A.A990.2A206.A2.A378.2A48.A.A$1003.A9.2A33.2A990.2A206.A.A429.A.
A$1002.BAB1244.A6.2A30.A392.A$947.2A54.A1253.A29.A.A$946.A2.A1307.A.A
28.2A407.A$947.2A1060.2A51.A11.2A182.2A435.3A8.A$995.B1013.2A50.A.A10.
2A618.A9.3A$994.3A1064.A.A20.2A201.2A9.A383.2A10.2A7.A$995.B972.A86.2A
2.3A.2A18.A2.A166.2A31.A2.A7.A.A372.2A8.2A19.2A$984.A983.3A84.A2.A25.
A.A167.A32.A.A8.2A373.A$983.A.A985.A81.A.A3.3A.2A20.A56.A111.A.A31.A384.
A.A$984.2A984.2A81.2A6.A.2A76.A.A111.2A417.2A$2133.2A6.A2.A155.2A88.A
$1021.2A1109.A2.A6.2A155.A.A88.3A$954.A66.2A36.2A1072.2A163.A.A92.A$953.
A.A103.2A960.2A276.A92.2A$952.A2.A1066.A253.2A425.A$953.2A1006.A57.3A
254.A425.A.A$1067.2A892.3A55.A31.2A13.2A209.3A423.2A$1067.2A895.A86.2A
13.2A211.A$1087.B864.2A9.2A116.2A330.2A$1025.2A59.3A229.2A632.2A31.2A
93.A2.A297.A31.A.A$983.2A40.2A60.B229.A2.A664.2A94.2A.A295.A.A32.A289.
A$982.A2.A62.2A34.A5.A227.2A764.A295.A2.A31.2A287.A.A$983.2A63.A.A32.
BAB3.A.A938.2A52.2A295.2A321.A2.A$987.A61.2A33.A4.A.A937.A.A37.2A634.
2A$986.BAB91.2A8.A938.A40.A339.2A286.2A$987.A92.2A200.A745.2A37.3A19.
2A65.A223.2A28.A.A285.2A$984.B296.A.A689.2A92.A21.2A64.A.A222.A.A29.A
293.A$983.3A295.2A690.2A180.2A224.A30.2A6.A284.A.A$984.B1434.A.A283.2A
$1015.2A1401.A2.A$981.2A32.A.A294.A783.2A55.2A264.2A$971.A9.2A33.2A293.
A.A678.A42.2A59.2A55.A.A$970.BAB338.A2.A676.A.A41.2A67.A49.A.A$915.2A
54.A340.2A676.A2.A56.2A51.A.A49.A245.2A$914.A2.A161.B876.A34.2A56.A2.
A51.A7.2A287.2A$915.2A161.3A874.A.A92.2A60.A280.2A366.A$963.B115.B876.
A121.2A30.A.A281.A365.A.A$962.3A1112.A.A30.2A279.3A271.2A35.2A55.A.A$
963.B1078.2A34.A312.A273.2A35.A.A55.A$952.A1088.A2.A365.2A292.A59.2A$
951.A.A1006.2A3.2A74.A.A348.A17.2A292.2A58.2A$952.2A999.2A5.2A3.2A75.
A26.2A8.A311.A.A$1074.A878.2A113.A2.A6.A.A310.A.A$989.2A82.BAB993.2A8.
2A26.2A.A278.3A.2A18.2A$922.A66.2A36.2A45.A207.B688.2A.A132.2A.3A275.
A24.2A279.2A$921.A.A103.2A252.3A687.2A.3A12.A123.A275.3A.2A295.A3.2A$
920.A2.A358.B681.2A11.A10.A.A116.2A.3A278.A.2A294.A.A$921.2A1042.A5.2A
.3A12.2A117.A.A577.A.A$1035.2A247.2A676.3A7.A.A133.A.A290.2A285.A$1035.
2A247.2A9.A666.A9.A.A134.A291.2A7.2A275.2A$1055.B238.BAB676.A109.A326.
A$993.2A59.3A40.2A196.A54.2A636.2A92.A.A323.A.A$951.2A40.2A60.B40.A2.
A249.A2.A635.2A92.A.A323.2A$950.A2.A62.2A34.A5.A11.2A24.A.A251.2A731.
A11.2A$951.2A63.A.A32.BAB3.A.A10.A.A24.A205.B791.2A$955.A61.2A33.A4.A
.A11.A230.3A$954.BAB91.2A8.A244.B1084.2A230.A$955.A92.2A59.A204.A1073.
2A224.A4.A.A$952.B155.A.A202.A.A1297.A.A3.2A$951.3A154.A.A202.2A759.2A
538.A.A$952.B156.A964.2A29.A509.2A$983.2A291.2A826.A.A283.2A$949.2A32.
A.A290.2A66.A759.A.A282.A2.A11.A$939.A9.2A33.2A357.A.A757.2A.3A280.A.
A11.A.A$938.BAB402.A2.A762.A280.A12.A.A$883.2A54.A404.2A757.2A.3A274.
2A19.A$882.A2.A161.B1055.2A.A276.2A20.3A$883.2A161.3A1358.A$931.B115.
B1047.2A$930.3A339.2A812.2A7.2A$931.B340.2A40.2A757.A13.A509.A4.A$920.
A392.A2.A755.A.A12.A.A506.A.A2.A.A$919.A.A392.2A756.A.A13.2A240.2A264.
2A3.A2.A$920.2A389.A761.A256.2A270.2A4.2A$1042.A267.BAB1295.A.A$957.2A
82.BAB267.A1297.A$890.A66.2A36.2A45.A271.B757.2A34.2A$889.A.A103.2A316.
3A756.2A34.2A$888.A2.A422.B1284.2A$889.2A391.2A1315.2A$1003.2A276.A.A
32.2A1303.2A$1003.2A276.2A33.2A9.A1029.A263.A$1023.B302.BAB749.2A13.A
262.A.A220.2A38.A.A16.A$961.2A59.3A40.2A260.A54.2A685.2A7.2A12.A.A125.
A135.A.A220.2A38.2A16.A.A$919.2A40.2A60.B40.A2.A313.A2.A685.A21.A.A124.
A.A83.2A30.2A16.2A.3A275.A2.A$918.A2.A62.2A34.A5.A11.2A24.A.A315.2A686.
A.A20.A15.A110.2A82.A.A30.2A22.A275.2A$919.2A63.A.A32.BAB3.A.A10.A.A24.
A269.B728.A6.2A17.3A15.A.A194.A49.2A.3A217.A$923.A61.2A33.A4.A.A11.A294.
3A727.3A23.A17.A2.A4.2A201.2A34.2A.A218.A.A$922.BAB91.2A8.A308.B731.A
41.2A4.A2.A103.2A94.A.A257.A$923.A92.2A59.A268.A719.2A48.A.A102.A.A87.
A6.A256.3A$920.B155.A.A266.A.A769.A102.A.A87.A.A4.2A256.A29.2A$919.3A
154.A.A266.2A874.A88.2A292.A.A$920.B156.A989.2A282.2A252.A36.2A$951.2A
355.2A757.2A282.2A4.2A282.A.A$917.2A32.A.A354.2A66.A707.2A242.2A27.A.
A282.A$907.A9.2A33.2A421.A.A706.A.A240.A.A29.A265.2A$906.BAB466.A2.A707.
A240.A31.2A263.A2.A$851.2A54.A468.2A708.2A238.2A23.2A272.2A$850.A2.A161.
B1335.2A$851.2A161.3A$899.B115.B$898.3A403.2A1040.A315.A$899.B404.2A40.
2A997.A.A267.2A43.3A$888.A456.A2.A997.A268.A43.A$887.A.A456.2A732.2A117.
A416.3A40.2A$888.2A453.A736.A117.A.A417.A$1010.A331.BAB736.3A115.2A135.
2A4.A$925.2A82.BAB331.A739.A251.A2.A2.A.A$858.A66.2A36.2A45.A335.B989.
A.A2.A2.A$857.A.A103.2A380.3A853.2A134.A4.2A$856.A2.A486.B853.A.A$857.
2A455.2A883.A.A354.A4.A24.2A29.2A$971.2A340.A.A32.2A850.A354.A.A2.A.A
23.2A29.2A$971.2A340.2A33.2A9.A1195.2A3.A2.A$991.B366.BAB1200.2A4.2A$
929.2A59.3A40.2A324.A54.2A1151.A.A$887.2A40.2A60.B40.A2.A377.A2.A1151.
A44.2A$886.A2.A62.2A34.A5.A11.2A24.A.A379.2A1197.2A$887.2A63.A.A32.BA
B3.A.A10.A.A24.A333.B$891.A61.2A33.A4.A.A11.A358.3A1189.2A$890.BAB91.
2A8.A372.B1190.2A$891.A92.2A59.A332.A693.2A506.2A$888.B155.A.A330.A.A
692.2A7.2A497.A$887.3A154.A.A330.2A702.A456.2A38.A.A$888.B156.A1033.A
.A456.2A38.2A$919.2A419.2A737.2A$885.2A32.A.A418.2A66.A$875.A9.2A33.2A
485.A.A1127.A$874.BAB530.A2.A650.A31.2A441.A.A$819.2A54.A532.2A651.3A
22.2A4.A2.A441.A$818.A2.A161.B1080.A21.A.A4.2A3.2A227.A206.3A$819.2A161.
3A1078.2A22.A10.2A15.2A209.A.A205.A29.2A$867.B115.B1130.A2.A208.2A235.
A.A$866.3A467.2A776.A.A447.A$867.B468.2A40.2A735.A$856.A520.A2.A$855.
A.A520.2A942.A261.2A$856.2A517.A945.A.A259.A2.A$978.A395.BAB703.2A83.
A156.2A260.2A$893.2A82.BAB395.A704.2A82.A.A$826.A66.2A36.2A45.A399.B786.
2A$825.A.A103.2A444.3A$824.A2.A550.B$825.2A519.2A701.2A51.A11.2A51.2A
405.2A$939.2A404.A.A32.2A667.2A50.A.A10.2A50.A.A405.A$939.2A404.2A33.
2A9.A709.A.A20.2A39.A.A407.3A$959.B430.BAB702.2A2.3A.2A18.A2.A39.A410.
A$897.2A59.3A40.2A388.A54.2A647.A2.A25.A.A$855.2A40.2A60.B40.A2.A441.
A2.A644.A.A3.3A.2A20.A$854.A2.A62.2A34.A5.A11.2A24.A.A443.2A645.2A6.A
.2A$855.2A63.A.A32.BAB3.A.A10.A.A24.A397.B$859.A61.2A33.A4.A.A11.A422.
3A1115.A4.A$858.BAB91.2A8.A436.B1115.A.A2.A.A22.2A29.2A$859.A92.2A59.
A396.A650.2A452.2A3.A2.A21.2A29.2A$856.B155.A.A394.A.A650.A86.A371.2A
4.2A$855.3A154.A.A394.2A648.3A86.A.A376.A.A$856.B156.A1045.A31.2A13.2A
41.2A377.A$887.2A483.2A717.2A13.2A464.2A$853.2A32.A.A482.2A66.A680.2A
449.2A$843.A9.2A33.2A549.A.A678.A2.A27.2A365.2A$842.BAB594.A2.A678.2A
.A25.A.A365.2A$787.2A54.A596.2A682.A24.A.A388.2A$786.A2.A161.B1118.2A
52.2A24.A389.A$787.2A161.3A1116.A.A37.2A387.2A38.A.A$835.B115.B1117.A
40.A387.2A38.2A$834.3A531.2A698.2A37.3A$835.B532.2A40.2A695.A$824.A584.
A2.A1084.A$823.A.A584.2A1084.A.A$824.2A581.A1089.A$946.A459.BAB1085.3A
$861.2A82.BAB459.A667.2A417.A29.2A$794.A66.2A36.2A45.A463.B664.2A446.
A.A$793.A.A103.2A508.3A678.2A432.A$792.A2.A614.B678.A2.A$793.2A583.2A
710.2A$907.2A468.A.A32.2A1130.2A$907.2A468.2A33.2A9.A1119.A2.A$927.B494.
BAB657.2A460.2A$865.2A59.3A40.2A452.A54.2A601.A2.A$823.2A40.2A60.B40.
A2.A505.A2.A600.A.A$822.A2.A62.2A34.A5.A11.2A24.A.A507.2A602.A$823.2A
63.A.A32.BAB3.A.A10.A.A24.A461.B$827.A61.2A33.A4.A.A11.A486.3A1101.2A
$826.BAB91.2A8.A500.B687.A414.A$827.A92.2A59.A460.A675.A.A414.3A$824.
B155.A.A458.A.A675.2A416.A$823.3A154.A.A430.2A26.2A$824.B156.A431.2A2.
2A$855.2A547.2A11.2A702.2A$821.2A32.A.A546.2A66.A647.A.A$811.A9.2A33.
2A613.A.A645.A.A$810.BAB658.A2.A645.A384.2A29.2A$811.A660.2A1031.2A29.
2A$919.B$918.3A$803.B115.B$802.3A595.2A1130.2A$803.B596.2A40.2A1088.2A
$792.A648.A2.A$791.A.A648.2A$792.2A645.A$914.A523.BAB$829.2A82.BAB523.
A$762.A66.2A36.2A45.A527.B$761.A.A103.2A572.3A$760.A2.A678.B$761.2A647.
2A5.2A$875.2A532.A.A5.2A2.2A21.2A$875.2A532.2A10.2A21.2A9.A$895.B558.
BAB$833.2A59.3A40.2A516.A54.2A498.2A$791.2A40.2A60.B40.A2.A569.A2.A496.
A.A57.A$790.A2.A62.2A34.A5.A11.2A24.A.A485.2A84.2A498.A57.A.A$791.2A63.
A.A32.BAB3.A.A10.A.A24.A486.2A37.B586.2A16.A.A$795.A61.2A33.A4.A.A11.
A550.3A532.2A50.A2.A13.3A.2A$794.BAB91.2A8.A564.B533.A.A49.A.A13.A$795.
A92.2A59.A524.A518.2A3.A9.2A40.A15.3A.2A13.2A$792.B155.A.A522.A.A517.
2A12.A2.A43.A13.A.2A12.A2.A$791.3A154.A.A452.2A68.2A508.A24.A.A42.A.A
28.A.A$792.B156.A452.A.A9.2A566.A.A24.A43.A.A29.A$823.2A578.A10.2A20.
2A544.2A14.2A23.2A29.A$789.2A32.A.A610.2A66.A493.2A22.A.A$779.A9.2A33.
2A677.A.A517.A63.A$778.BAB648.A73.A2.A560.A18.A.A$779.A648.BAB73.2A486.
A40.A31.3A18.A.A$887.B541.A561.A.A38.A.A29.A22.A$886.3A514.2A586.A.A37.
A2.A29.2A$771.B115.B515.2A574.A12.A39.2A9.2A7.A$770.3A659.2A6.B537.A.
A15.2A45.2A7.3A$771.B660.2A5.3A32.2A503.2A15.2A57.A$760.A679.B32.A2.A
539.A37.2A$759.A.A652.2A58.2A539.A.A$760.2A652.2A10.B44.A543.A2.A5.A83.
2A$882.A542.3A16.2A24.BAB543.2A5.A.A42.2A10.2A26.2A$797.2A82.BAB517.2A
23.B17.2A25.A551.A2.A14.2A25.2A11.A$797.2A36.2A45.A518.2A20.A5.A44.B497.
2A50.2A16.A38.A.A69.A5.A$835.2A575.2A8.BAB3.BAB42.3A495.A.A68.A.A37.2A
68.A.A3.A.A$1412.2A9.A5.A44.B496.2A70.2A107.2A4.A2.A$2159.2A$843.2A631.
2A629.2A$843.2A575.A55.2A9.A478.A140.A46.2A6.A$863.B555.BAB64.BAB476.
A.A47.A89.A.A34.2A9.A2.A4.A.A$801.2A59.3A40.2A513.A66.A54.2A421.A.A31.
A15.3A87.2A4.2A28.A2.A9.2A5.A.A$759.2A40.2A60.B40.A2.A633.A2.A421.A30.
3A18.A54.2A36.A30.A.A17.A$758.A2.A62.2A34.A5.A11.2A24.A.A635.2A431.2A
7.A11.A20.2A11.2A13.2A26.2A34.A.A31.A$759.2A63.A.A32.BAB3.A.A10.A.A24.
A529.2A58.B479.2A7.3A9.2A32.2A13.2A62.2A$763.A61.2A33.A4.A.A11.A555.2A
57.3A490.A153.A$762.BAB91.2A8.A564.2A62.B490.2A132.2A18.A.A$763.A92.2A
59.A513.2A73.A597.A14.A2.A18.2A275.A4.A$760.B155.A.A586.A.A595.A.A14.
2A4.2A289.A.A2.A.A$759.3A154.A.A586.2A563.2A31.2A21.2A289.2A3.A2.A$760.
B156.A1081.2A69.A19.2A331.2A4.2A$791.2A675.2A529.2A70.3A15.A.A337.A.A
$758.A32.A.A674.2A66.A536.A15.A340.A$758.A33.2A741.A.A550.2A$1535.A2.
A606.A$1405.B130.2A607.3A272.2A$855.B548.3A741.A271.2A$854.3A548.B540.
2A4.2A122.A70.2A293.2A$855.B1089.A2.A3.2A55.2A64.A.A84.2A278.A$1464.2A
480.2A42.2A18.A63.A2.A84.A237.2A38.A.A$1464.2A40.2A482.A16.3A20.2A43.
2A82.2A.A237.2A38.2A$1505.A2.A482.3A13.A22.A127.A2.A$1506.2A485.A37.3A
125.2A$1422.2A79.A529.A23.A71.2A13.2A253.A$850.A570.A2.A77.BAB431.A119.
A.A15.2A30.2A21.2A13.2A252.A.A$765.2A82.BAB570.2A79.A431.A.A107.A9.A2.
A14.A2.A29.2A291.A$765.2A36.2A45.A655.B428.A2.A18.2A85.A.A9.2A16.2A320.
3A$803.2A700.3A428.2A18.A.A86.2A349.A29.2A$1506.B449.A468.A.A$1474.2A
479.2A93.2A374.A$811.2A660.A.A32.2A539.A2.A$811.2A660.2A33.2A9.A530.2A
57.A29.A.2A$831.B686.BAB412.A174.A.A26.3A.2A303.2A$769.2A59.3A40.2A644.
A54.2A356.A.A174.A26.A308.A2.A$769.2A60.B40.A2.A697.A2.A355.2A203.3A.
2A303.2A$792.2A34.A5.A11.2A24.A.A699.2A364.2A4.2A148.A22.2A.A16.A.A$792.
A.A32.BAB3.A.A10.A.A24.A653.B412.2A3.A2.A146.A.A21.2A.3A14.A.A10.2A$793.
2A33.A4.A.A11.A678.3A417.2A148.2A27.A14.A11.2A$824.2A8.A692.B584.2A5.
2A.3A$824.2A59.A652.A434.A139.A6.A.A313.2A$884.A.A650.A.A432.A.A135.3A
7.A.A313.A$884.A.A650.2A379.A53.A.A127.A7.A10.A315.3A$885.A1031.A.A12.
2A39.A127.A.A335.A$759.2A739.2A414.A2.A12.A.A166.A2.A$759.A.A738.2A66.
A299.A48.2A14.A7.2A159.2A$760.2A805.A.A298.3A70.2A21.2A$1567.A2.A300.
A92.2A7.2A$1568.2A300.2A101.2A$2407.2A29.2A$1923.A483.2A29.2A$1923.3A
$1496.2A412.2A3.2A9.A$1496.2A40.2A370.2A3.2A8.2A41.A$1537.A2.A320.A105.
A.A464.2A$1538.2A321.3A103.2A465.2A$1535.A328.A38.2A$1534.BAB326.2A26.
2A11.A$1535.A349.2A3.A2.A10.A.A295.A11.2A152.A4.A$1538.B346.2A4.2A12.
2A294.A.A10.2A151.A.A2.A.A$1537.3A628.2A31.A.A163.2A3.A2.A$1538.B630.
A25.2A2.3A.2A168.2A4.2A$1506.2A443.A217.A.A23.A2.A180.A.A$1505.A.A32.
2A408.A.A217.2A21.A.A3.3A.2A175.A$1505.2A33.2A9.A398.A.A240.2A6.A.2A$
1550.BAB320.2A76.A$1551.A54.2A241.A23.2A33.2A61.A398.2A$1605.A2.A239.
A.A48.2A8.A60.A.A397.2A$1606.2A241.2A48.2A5.3A28.2A3.2A27.2A419.2A$1559.
B346.A31.A3.2A7.2A439.A$1558.3A374.3A13.2A397.2A38.A.A$1559.B331.A43.
A255.2A13.2A142.2A38.2A$1570.A319.A.A298.2A13.2A$1569.A.A284.A33.A2.A
240.A86.2A$1569.2A284.A.A33.2A75.2A3.A159.A.A84.A2.A125.A$1856.A111.2A
2.A.A158.A2.A17.2A65.2A.A123.A.A$1532.2A387.2A49.2A8.A151.2A17.A2.A67.
A124.A$1532.2A66.A320.2A58.A.A169.A.A68.2A120.3A$1599.A.A311.2A65.A2.
A141.A28.A54.2A135.A29.2A$1599.A2.A257.2A3.2A34.2A11.A66.2A141.A.A83.
A164.A.A$1600.2A258.2A3.2A33.A2.A7.3A211.2A55.2A23.3A166.A$1900.A.A8.
A79.A190.A24.A$1901.A88.A.A190.3A66.A$1871.2A.A54.2A59.2A184.2A7.A65.
A.A142.2A$1528.2A341.2A.3A52.2A245.A74.A2.A5.A134.A2.A$1528.2A40.2A292.
2A11.A56.2A241.3A38.A33.2A5.A.A134.2A$1569.A2.A292.A5.2A.3A57.2A243.A
37.A.A39.A.A$1570.2A290.3A7.A.A287.A54.A.A23.A16.A$1567.A294.A9.A.A286.
A.A54.A22.3A$1566.BAB304.A287.A2.A75.A$1567.A374.A219.2A76.2A144.2A$1570.
B370.A.A442.A$1569.3A283.A86.2A228.A17.2A45.2A148.3A$1570.B283.A.A314.
A.A15.A.A45.A.A149.A$1538.2A315.2A146.2A167.2A16.A47.2A5.2A$1537.A.A32.
2A330.A75.2A20.A2.A116.A122.2A9.2A$1537.2A33.2A9.A319.A.A35.2A36.A2.A
20.2A116.A.A132.A$1582.BAB318.A2.A16.2A15.A2.A36.A.A138.A2.A99.A29.A.
A$1583.A54.2A264.2A17.2A7.2A7.A.A37.A140.2A99.A.A28.2A$1637.A2.A291.A
9.A33.A10.2A6.A226.A2.A131.2A29.2A$1638.2A290.A.A13.2A27.A.A9.2A5.A.A
226.2A132.2A29.2A$1591.B338.2A13.A2.A25.A2.A6.A8.A2.A236.2A$1590.3A321.
2A30.A.A26.2A6.A.A8.2A237.2A$1591.B323.A31.A36.2A$1602.A312.A.A466.2A
$1601.A.A312.2A199.2A265.2A$1601.2A514.A.A$1932.A185.A$1564.2A364.3A385.
A4.A$1564.2A66.A296.A11.A58.A316.A.A2.A.A$1631.A.A280.A14.2A8.3A15.A42.
3A314.2A3.A2.A$1631.A2.A278.A.A22.A18.3A43.A319.2A4.2A$1632.2A280.A23.
2A20.A41.2A325.A.A$1959.2A56.2A311.A$2017.A$2014.2A.A120.A$1560.2A451.
A2.A115.A4.A.A180.2A$1560.2A40.2A410.2A115.A.A3.2A181.2A$1601.A2.A379.
2A13.2A131.A.A207.2A$1602.2A314.2A36.2A26.2A13.2A132.2A207.A$1599.A317.
A.A36.2A342.2A38.A.A$1598.BAB316.A382.2A38.2A$1599.A316.2A7.2A$1602.B
323.A$1601.3A319.3A373.A$1602.B320.A374.A.A$1570.2A414.2A6.A.2A301.A$
1569.A.A32.2A341.2A37.A.A3.3A.2A253.A44.3A$1569.2A33.2A9.A331.A.A38.A
2.A258.A.A43.A29.2A$1614.BAB332.A11.2A25.2A2.3A.2A252.A.A72.A.A$1615.
A54.2A277.2A10.2A31.A.A254.A74.A$1669.A2.A321.A.A10.2A$1670.2A323.A11.
2A$1623.B351.2A369.2A$1622.3A350.A369.A2.A$1623.B352.3A367.2A$1634.A343.
A$1633.A.A329.2A270.A$1633.2A331.A269.A.A$1963.3A269.A2.A$1596.2A365.
A272.2A98.2A$1596.2A66.A583.2A11.A74.A$1663.A.A311.A270.2A10.A.A74.3A
$1663.A2.A305.2A2.A.A281.A.A31.2A43.A$1664.2A305.A.A2.2A281.2A.3A2.2A
25.A$1964.2A6.A292.A2.A23.A.A$1963.A2.A292.2A.3A3.A.A21.2A$1964.A.A292.
2A.A6.2A$1592.2A371.A376.A$1592.2A40.2A671.2A32.A.A$1633.A2.A670.2A32.
A.A$1634.2A706.A$1631.A$1630.BAB$1631.A624.2A13.2A$1634.B621.2A13.2A$
1633.3A605.2A$1634.B605.A2.A$1602.2A635.A.2A$1601.A.A32.2A601.A$1601.
2A33.2A9.A590.2A$1646.BAB604.2A$1647.A54.2A549.A$1701.A2.A549.3A23.2A
$1702.2A342.A209.A14.2A8.A$1655.B389.A.A222.A.A5.3A$1654.3A387.A.A224.
A6.A7.2A$1655.B388.2A241.A$1666.A586.A30.3A$1665.A.A584.A.A29.A$1665.
2A379.2A205.2A17.2A$2046.A.A222.A2.A$1628.2A417.A224.A.A$1628.2A66.A576.
A$1695.A.A$1695.A2.A$1696.2A4$1624.2A$1624.2A40.2A$1665.A2.A$1666.2A361.
A$1663.A364.A.A4.A$1662.BAB364.2A3.A.A171.A$1663.A369.A.A166.A4.A.A$1666.
B366.2A166.A.A3.2A$1665.3A534.A.A$1666.B536.2A$1634.2A299.A63.A$1633.
A.A32.2A264.A.A61.A.A$1633.2A33.2A9.A254.2A62.2A$1678.BAB$1679.A54.2A
$1733.A2.A$1734.2A340.A$1687.B387.A.A$1686.3A385.A2.A$1687.B387.2A$1698.
A$1697.A.A$1697.2A2$1660.2A$1660.2A66.A$1727.A.A196.A63.A89.2A$1727.A
2.A194.A.A61.A.A87.A.A$1728.2A196.2A62.2A88.A4$1656.2A$1656.2A40.2A$1697.
A2.A$1698.2A$1695.A$1694.BAB$1695.A$1698.B$1697.3A$1698.B586.A9.A$1666.
2A617.3A5.3A$1665.A.A32.2A586.A3.A$1665.2A33.2A9.A575.2A3.2A$1710.BAB
569.A$1711.A54.2A514.3A$1765.A2.A516.A$1766.2A516.2A$1719.B252.2A62.2A
$1718.3A251.2A62.2A$1719.B600.A$1730.A566.2A20.A.A$1729.A.A565.A.A20.
2A$1729.2A568.A14.2A$2299.2A13.2A$1692.2A$1692.2A66.A550.A$1759.A.A548.
A.A7.2A$1759.A2.A547.2A7.A.A$1760.2A558.A2$2294.2A$2294.A$1688.2A605.
3A$1688.2A40.2A234.2A62.2A265.A$1729.A2.A233.2A62.2A$1730.2A$1727.A$1726.
BAB$1727.A245.2A62.2A277.2A$1730.B242.2A62.2A277.2A$1729.3A$1730.B$1698.
2A$1697.A.A32.2A$1697.2A33.2A9.A567.2A4.2A$1742.BAB565.A2.A3.A.A$1743.
A54.2A511.2A5.A$1797.A2.A485.2A$1798.2A486.2A7.2A$1751.B543.A$1750.3A
540.A.A$1751.B541.2A4.2A$1762.A514.2A20.A$1761.A.A514.A18.A.A$1761.2A
515.A.A16.2A13.2A$2279.2A31.2A$1724.2A$1724.2A66.A$1791.A.A524.2A$1791.
A2.A523.2A$1792.2A520.2A$2314.2A$2236.A$2236.3A21.2A$1720.2A517.A16.A
3.2A$1720.2A40.2A474.2A15.A.A61.2A$1761.A2.A397.2A90.A.A28.2A32.2A$1762.
2A398.A.A89.A26.2A2.2A$1759.A386.A16.A89.2A25.A.A$1758.BAB384.A.A132.
A$1759.A385.A.A131.2A$1762.B383.A$1761.3A$1762.B494.A$1730.2A514.2A8.
A.A34.A$1729.A.A32.2A389.2A71.2A16.2A8.A.A33.A.A$1729.2A33.2A9.A380.A
71.2A27.A34.2A$1774.BAB379.A.A121.2A$1775.A54.2A325.2A2.2A37.A78.A.A$
1829.A2.A328.2A35.3A15.A9.A53.A$1830.2A365.A18.3A5.3A12.2A$1783.B400.
2A11.2A20.A3.A15.2A58.2A$1782.3A354.2A43.2A32.2A3.2A32.2A39.A.A$1783.
B355.2A115.A2.A38.A$1794.A350.2A95.2A13.2A38.2A$1793.A.A348.A.A96.A61.
2A$1793.2A350.A97.A.A27.2A30.2A17.2A$2244.2A26.A.A16.2A31.2A$1756.2A515.
A7.A9.2A$1756.2A66.A451.A3.A.A$1823.A.A329.2A52.2A64.A.A2.A.A5.2A$1823.
A2.A327.A.A16.2A34.2A25.2A11.2A25.2A3.A5.A2.A$1824.2A328.A18.A.A45.2A
13.2A10.A2.A36.2A$2025.2A62.2A62.2A20.A44.A2.A25.A.A$2026.A63.A78.2A4.
2A44.2A4.2A21.A80.2A$2024.A63.A39.2A39.A.A55.A.A50.2A48.A2.A$1752.2A270.
5A14.2A43.5A14.2A18.A.A5.A35.A57.A17.A31.A2.A47.A.A$1752.2A40.2A233.A
13.A49.A13.A20.A5.A.A25.2A7.2A56.2A15.A.A7.2A22.A.A48.A$1793.A2.A229.
3A12.A.A46.3A12.A.A26.2A26.2A20.2A33.2A24.A2.A7.A.A22.A22.2A$1794.2A229.
A15.2A46.A15.2A78.A34.A25.2A9.A19.2A24.A.A$1791.A233.4A60.4A89.3A32.3A
56.A2.A23.A30.A$1790.BAB230.2A3.A3.2A53.2A3.A3.2A30.2A52.A34.A59.2A23.
2A29.A.A$1791.A230.A2.3A4.2A52.A2.3A4.2A29.A2.A202.2A$1794.B227.2A.A60.
2A.A38.A.A$1793.3A229.A63.A39.A107.A$1794.B230.2A62.2A61.2A82.A.A$1762.
2A389.A28.A8.2A38.2A3.A.A81.2A$1761.A.A32.2A355.A.A25.A.A6.A2.A16.A19.
A2.A3.A58.A23.A.A$1761.2A33.2A9.A225.2A62.2A55.2A26.2A6.A.A16.A.A19.2A
63.3A23.A$1806.BAB225.A63.A88.A3.A17.2A88.A22.2A$1807.A54.2A167.3A61.
3A88.A.A109.2A14.2A$1861.A2.A166.A63.A90.2A126.2A$1862.2A309.A27.2A$1815.
B355.3A27.2A6.2A$1814.3A353.A37.A2.A74.A$1815.B354.2A37.A.A73.A.A$1826.
A383.A74.A.A$1825.A.A454.A3.A$1797.2A26.2A454.A.A$1797.2A2.2A478.A2.A
$1788.2A11.2A479.2A$1788.2A66.A$1855.A.A$1855.A2.A456.2A$1856.2A421.2A
34.A.A$2150.2A127.A.A35.A$2150.2A128.A36.2A$2283.A$1784.2A496.A.A$1784.
2A40.2A453.A2.A$1825.A2.A453.2A$1826.2A$1823.A451.2A$1822.BAB450.2A$1823.
A$1826.B338.2A128.2A$1825.3A337.2A100.A26.A.A$1826.B439.A.A4.2A19.A$1801.
2A462.A2.A3.A2.A17.2A$1801.2A2.2A21.2A436.2A5.A.A$1805.2A21.2A9.A434.
A$1838.BAB466.2A$1839.A54.2A411.2A7.2A$1893.A2.A419.A$1808.2A84.2A418.
A.A$1808.2A37.B466.2A$1846.3A$1847.B$1858.A441.2A$1857.A.A439.A.A$1787.
2A68.2A440.A$1786.A.A9.2A498.2A28.2A$1787.A10.2A527.A.A$1888.A439.A$1887.
A.A$1813.A73.A2.A386.A$1812.BAB73.2A385.3A$1813.A460.A54.2A$1787.2A485.
2A52.A2.A$1787.2A470.2A68.2A$1824.B435.A55.2A$1823.3A32.2A400.A.2A52.
A.A$1824.B32.A2.A400.A2.A53.A$1798.2A58.2A402.2A54.2A$1798.2A10.B44.A
421.2A13.2A$1809.3A16.2A24.BAB420.2A13.2A$1785.2A23.B17.2A25.A$1785.2A
20.A5.A44.B$1796.2A8.BAB3.BAB42.3A$1796.2A9.A5.A44.B$2316.2A$1860.2A454.
2A$1804.A55.2A9.A408.2A.A6.2A$1803.BAB64.BAB407.2A.3A3.A.A$1804.A66.A
54.2A358.A2.A$1925.A2.A351.2A.3A2.2A26.2A$1926.2A353.A.A32.2A$1819.2A
58.B389.2A10.A.A18.2A$1819.2A57.3A388.2A11.A18.A.A$1815.2A62.B421.A$1815.
2A73.A409.2A8.2A$1889.A.A418.A$1889.2A420.3A$2313.A$1852.2A$1852.2A66.
A$1919.A.A$1919.A2.A$1789.B130.2A$1788.3A$1789.B2$1848.2A$1848.2A40.2A
416.2A$1889.A2.A415.A.A$1890.2A417.A$1806.2A79.A$1805.A2.A77.BAB$1806.
2A79.A$1890.B$1889.3A$1890.B$1858.2A$1857.A.A32.2A$1857.2A33.2A9.A$1902.
BAB$1903.A54.2A$1957.A2.A$1958.2A$1911.B$1910.3A$1911.B$1922.A$1921.A
.A$1921.2A2$1884.2A$1884.2A66.A$1951.A.A$1951.A2.A$1952.2A4$1880.2A$1880.
2A40.2A$1921.A2.A$1922.2A$1919.A$1918.BAB$1919.A$1922.B$1921.3A$1922.
B$1890.2A$1889.A.A32.2A$1889.2A33.2A9.A$1934.BAB$1935.A54.2A$1989.A2.
A$1990.2A$1943.B$1942.3A$1943.B$1954.A$1953.A.A$1953.2A2$1916.2A$1916.
2A66.A$1983.A.A$1983.A2.A$1984.2A4$1912.2A$1912.2A40.2A$1953.A2.A$1954.
2A$1951.A$1950.BAB$1951.A$1954.B$1953.3A$1954.B$1922.2A$1921.A.A32.2A
$1921.2A33.2A9.A$1966.BAB$1967.A54.2A$2021.A2.A$2022.2A$1975.B$1974.3A
$1975.B$1986.A$1985.A.A$1985.2A2$1948.2A$1948.2A66.A$2015.A.A$2015.A2.
A$2016.2A4$1944.2A$1944.2A40.2A$1985.A2.A$1986.2A$1983.A$1982.BAB$1983.
A$1986.B$1985.3A$1986.B$1954.2A$1953.A.A32.2A$1953.2A33.2A9.A$1998.BA
B$1999.A54.2A$2053.A2.A$2054.2A$2007.B$2006.3A$2007.B$2018.A$2017.A.A
$2017.2A2$1980.2A$1980.2A66.A$2047.A.A$2047.A2.A$2048.2A4$1976.2A$1976.
2A40.2A$2017.A2.A$2018.2A$2015.A$2014.BAB$2015.A$2018.B$2017.3A$2018.
B$1986.2A$1985.A.A32.2A$1985.2A33.2A9.A$2030.BAB$2031.A54.2A$2085.A2.
A$2086.2A$2039.B$2038.3A$2039.B$2050.A$2049.A.A$2049.2A2$2012.2A$2012.
2A66.A$2079.A.A$2079.A2.A$2080.2A4$2008.2A$2008.2A40.2A$2049.A2.A$2050.
2A$2047.A$2046.BAB$2047.A$2050.B$2049.3A$2050.B$2018.2A$2017.A.A32.2A
$2017.2A33.2A9.A$2062.BAB$2063.A54.2A$2117.A2.A$2118.2A$2071.B$2070.3A
$2071.B$2082.A$2081.A.A$2081.2A2$2044.2A$2044.2A66.A$2111.A.A$2111.A2.
A$2112.2A4$2040.2A$2040.2A40.2A$2081.A2.A$2082.2A$2079.A$2078.BAB$2079.
A$2082.B$2081.3A$2082.B$2050.2A$2049.A.A32.2A$2049.2A33.2A9.A$2094.BA
B$2095.A54.2A$2149.A2.A$2150.2A$2103.B$2102.3A$2103.B$2114.A$2113.A.A
$2113.2A2$2076.2A$2076.2A66.A$2143.A.A$2143.A2.A$2144.2A4$2072.2A$2072.
2A40.2A$2113.A2.A$2114.2A$2111.A$2110.BAB$2111.A$2114.B$2113.3A$2114.
B$2082.2A$2081.A.A32.2A$2081.2A33.2A9.A$2126.BAB$2127.A54.2A$2181.A2.
A$2182.2A$2135.B$2134.3A$2135.B$2146.A$2145.A.A$2145.2A2$2108.2A$2108.
2A66.A$2175.A.A$2175.A2.A$2176.2A4$2104.2A$2104.2A40.2A$2145.A2.A$2146.
2A$2143.A$2142.BAB$2143.A$2146.B$2145.3A$2146.B$2114.2A$2113.A.A32.2A
$2113.2A33.2A9.A$2158.BAB$2159.A54.2A$2213.A2.A$2214.2A$2167.B$2166.3A
$2167.B$2178.A$2177.A.A$2177.2A2$2140.2A$2140.2A66.A$2207.A.A$2207.A2.
A$2208.2A4$2136.2A$2136.2A40.2A$2177.A2.A$2178.2A$2175.A$2174.BAB$2175.
A$2178.B$2177.3A$2178.B$2146.2A$2145.A.A32.2A$2145.2A33.2A9.A$2190.BA
B$2191.A54.2A$2245.A2.A$2246.2A$2199.B$2198.3A$2199.B$2210.A$2209.A.A
$2209.2A2$2172.2A$2172.2A66.A$2239.A.A$2239.A2.A$2240.2A4$2168.2A$2168.
2A40.2A$2209.A2.A$2210.2A$2207.A$2206.BAB$2207.A$2210.B$2209.3A$2210.
B$2178.2A$2177.A.A32.2A$2177.2A33.2A9.A$2222.BAB$2223.A54.2A$2277.A2.
A$2278.2A$2231.B$2230.3A$2231.B$2242.A$2241.A.A$2241.2A2$2204.2A$2204.
2A66.A$2271.A.A$2271.A2.A$2272.2A4$2200.2A$2200.2A40.2A$2241.A2.A$2242.
2A$2239.A$2238.BAB$2239.A$2242.B$2241.3A$2242.B$2210.2A$2209.A.A32.2A
$2209.2A33.2A9.A$2254.BAB$2255.A54.2A$2309.A2.A$2310.2A$2263.B$2262.3A
$2263.B$2274.A$2273.A.A$2273.2A2$2236.2A$2236.2A66.A$2303.A.A$2303.A2.
A$2304.2A4$2232.2A$2232.2A40.2A$2273.A2.A$2274.2A$2271.A$2270.BAB$2271.
A$2274.B$2273.3A$2274.B$2242.2A$2241.A.A32.2A$2241.2A33.2A9.A$2286.BA
B$2287.A54.2A$2341.A2.A$2342.2A$2295.B$2294.3A$2295.B$2306.A$2305.A.A
$2305.2A2$2268.2A$2268.2A66.A$2335.A.A$2335.A2.A$2336.2A5$2306.2A$2305.
A2.A$2306.2A$2303.A$2302.BAB$2303.A$2306.B$2305.3A$2306.B$2274.2A$2273.
A.A32.2A$2273.2A33.2A9.A$2318.BAB$2319.A54.2A$2373.A2.A$2374.2A$2327.
B$2326.3A$2327.B$2338.A$2337.A.A$2337.2A2$2300.2A$2300.2A66.A$2367.A.
A$2367.A2.A$2368.2A4$2296.2A$2296.2A40.2A$2337.A2.A$2338.2A$2335.A$2334.
BAB$2335.A$2338.B$2337.3A$2338.B$2306.2A$2305.A.A32.2A$2305.2A33.2A9.
A$2350.BAB$2351.A54.2A$2405.A2.A$2406.2A$2359.B$2358.3A$2359.B$2370.A
$2369.A.A$2369.2A2$2332.2A$2332.2A66.A$2399.A.A$2399.A2.A$2400.2A4$2328.
2A$2328.2A40.2A$2369.A2.A$2370.2A$2367.A$2366.BAB$2367.A$2370.B$2369.
3A$2370.B$2338.2A$2337.A.A32.2A$2337.2A33.2A9.A$2382.BAB$2383.A54.2A$
2437.A2.A$2438.2A$2391.B$2390.3A$2391.B$2402.A$2401.A.A$2401.2A2$2364.
2A$2364.2A66.A$2431.A.A$2431.A2.A$2432.2A4$2360.2A$2360.2A40.2A$2401.
A2.A$2402.2A$2399.A$2398.BAB$2399.A$2402.B$2401.3A$2402.B$2370.2A$2369.
A.A32.2A$2369.2A33.2A9.A$2414.BAB$2415.A3$2423.B$2422.3A$2423.B$2434.
A$2433.A.A$2433.2A2$2396.2A$2396.2A7$2392.2A$2392.2A40.2A$2433.A2.A$2434.
2A$2431.A$2430.BAB$2431.A$2434.B$2433.3A$2434.B$2402.2A$2401.A.A32.2A
$2401.2A33.2A12$2428.2A$2428.2A7$2424.2A$2424.2A9$2434.2A$2433.A.A$2433.
2A!
The current solution is now this:

Code: Select all

x = 535, y = 1001, rule = LifeHistory
126.2A$125.A.A$125.2A9$135.2A$135.2A7$131.2A$131.2A2$87.B$86.3A$87.B$
90.A$89.BAB$90.A5$123.2A33.2A$123.2A32.A.A$157.2A$102.2EB21.B$102.2EB
.B18.3A$102.6B18.B$102.7B20.A$102.9B17.BAB$74.2D26.9B18.A$73.DBDB26.8B
14.2A$67.7BD2B25.8B14.A2.A$66.2D10B24.8B15.2A40.2A$59.2B3.2B2D10B22.3B
2E6B56.2A$57.22B19.4BE2BE6B$57.15B2E5B16.8BEBE7B$57.14BEBE5B15.10BE9B
$56.14BEBE6B15.15B2D2B$55.16BE7B15.3B2E10B2D$55.25B14.3B2E10B$56.24B15.
15B53.2A$56.11B2E9B18.3BD6B2D3B52.2A$57.9BE2BE7B19.3BD5B.2D4B$57.10B2E
D6B21.2BD5B4.4B13.2A$58.2B.7BDBD5B21.8B5.4B11.A.A$58.10BDBD5B23.7B5.4B
11.A$59.10BD7B5.2E15.6B7.4B21.B$62.16B2.BE2.EB13.6B8.4B19.3A$62.2B2D13B
.2B2E2B13.6B9.4B19.B$62.BD2BD19B13.6B10.4B$63.B2D6B2D11B14.7B10.4B$65.
7B2D11B14.6B12.4B24.A$67.2BD16B13.2B2E2B13.4B22.BAB$67.BDBD4B.2B2E7B13.
B2E16.4B22.A9.2A33.2A$68.DBD4B2.E2BE7B32.4B31.2A32.A.A$68.BD6B2.2E9B6.
2A24.4B64.2A$69.B2.5B5.8B4.A2.A24.4B32.B$73.5B5.8B3.A2.A25.4B30.3A$74.
5B5.8B3.2A27.4B30.B$75.5B5.8B32.4B32.A$76.5B5.8B32.4B30.BAB$77.5B5.8B
32.4B30.A$78.5B5.8B32.4B25.2A$79.5B5.8B32.4B23.A2.A$80.5B5.8B32.4B23.
2A40.2A$81.5B5.8B32.4B64.2A$82.5B5.8B32.4B$83.5B5.8B32.4B$84.5B5.8B32.
4B$85.5B5.8B24.2A6.4B$86.5B5.8B22.A2.A6.4B$87.5B5.8B22.A.A7.4B$88.5B5.
8B22.A9.4B53.2A$89.5B5.8B32.4B52.2A$90.5B5.8B32.4B$91.5B5.8B32.4B13.2A
$92.5B5.8B32.4B11.A.A$93.5B5.8B32.4B11.A$94.5B5.8B32.4B21.B$95.5B5.8B
32.4B19.3A$96.5B5.8B32.4B19.B$97.5B5.8B6.2A24.4B$98.5B5.8B4.A2.A24.4B
$99.5B5.8B4.2A26.4B24.A$100.5B5.8B32.4B22.BAB$101.5B5.8B32.4B22.A9.2A
$102.5B5.8B32.4B31.2A$103.5B5.8B32.4B$104.5B5.8B32.4B32.B$105.5B5.8B32.
4B30.3A$106.5B5.8B32.4B30.B$107.5B5.8B32.4B32.A$108.5B5.8B32.4B30.BAB
$109.5B5.8B32.4B30.A$110.5B5.8B32.4B25.2A$111.5B5.8B32.4B23.A2.A$112.
5B5.8B32.4B23.2A$113.5B5.8B32.4B$114.5B5.8B32.4B$115.5B5.8B32.4B$116.
5B5.8B32.4B$117.5B5.8B24.2A6.4B$118.5B5.8B22.A2.A6.4B$119.5B5.8B22.A.
A7.4B$120.5B5.8B22.A9.4B$121.5B5.8B32.4B$122.5B5.8B32.4B$123.5B5.8B32.
4B13.2A$124.5B5.8B32.4B11.A.A$125.5B5.8B32.4B11.A$126.5B5.8B32.4B$127.
5B5.8B32.4B$128.5B5.8B32.4B$129.5B5.8B6.2A24.4B$130.5B5.8B4.A2.A24.4B
$131.5B5.8B4.2A26.2B2A$132.5B5.8B32.2A2B$133.5B5.8B32.BA$134.5B5.8B$135.
5B5.8B$136.5B5.8B$137.5B5.8B$138.5B5.6B2A$139.5B5.4B2A2B$140.5B5.5BA$
141.5B5.5B$142.5B5.5B$143.5B5.5B$144.5B5.5B$145.5B5.5B$146.5B5.5B$147.
5B5.5B$148.5B5.5B$149.5B5.5B$150.5B5.5B$151.5B5.5B$152.5B5.5B$153.5B5.
5B$154.5B5.5B$155.5B5.5B$156.5B5.5B$157.5B5.5B$158.5B5.5B$159.5B5.5B$
160.5B5.5B$161.5B5.5B$162.5B5.5B$163.5B5.5B$164.5B5.5B$165.5B5.5B$166.
5B5.5B$167.5B5.5B$168.5B5.5B$169.5B5.5B$170.5B5.5B$171.5B5.5B$172.5B5.
2B2AB$173.5B5.2A3B$174.5B5.BA3B$175.5B5.5B$176.5B5.5B$177.5B5.5B$178.
5B5.5B$179.5B5.5B$180.5B5.5B$181.5B5.5B$182.5B5.5B$183.5B5.5B$184.5B5.
5B$185.5B5.5B$186.5B5.5B$187.5B5.5B$188.5B5.5B$189.5B5.5B$190.5B5.5B$
191.5B5.5B$192.5B5.5B$193.5B5.5B$194.5B5.5B$195.5B5.5B$196.5B5.5B$197.
5B5.5B$198.5B5.5B$199.5B5.5B$200.5B5.5B$201.5B5.5B$202.5B5.5B$203.5B5.
5B$204.5B5.5B$205.5B5.5B$206.5B5.5B$207.5B5.5B$208.5B5.5B$209.5B5.5B$
210.5B5.5B$211.5B5.5B$212.5B5.5B$213.5B5.5B$214.5B5.5B$215.5B5.5B$216.
5B5.5B$217.5B5.5B$218.5B5.5B$219.5B5.5B$220.5B5.5B$221.5B5.5B$222.5B5.
5B$223.5B5.5B$224.5B5.5B$225.5B5.5B$226.5B5.5B$227.5B5.5B$228.5B5.5B$
229.5B5.5B$230.5B5.5B$231.5B5.5B$232.5B5.5B$233.5B5.5B$234.5B5.5B$235.
5B5.3B2A$236.5B5.B2A2B$237.5B5.2BAB$238.5B5.4B$239.5B5.4B$240.5B5.4B$
241.5B5.4B$242.5B5.4B$243.5B5.4B$244.5B5.4B$245.5B5.4B$246.5B5.4B$247.
5B5.4B$248.5B5.4B$249.5B5.4B$250.5B5.4B$251.5B5.4B$252.5B5.4B$253.5B5.
4B$254.5B5.4B$255.5B5.4B$256.5B5.4B$257.5B5.4B$258.5B5.4B$259.5B5.4B$
260.5B5.4B$261.5B5.4B$262.5B5.4B$263.5B5.4B$264.5B5.4B$265.5B5.4B$266.
5B5.4B$267.5B5.4B$268.5B5.4B$269.5B5.4B$270.5B5.4B$271.5B5.4B$272.5B5.
4B$273.5B5.4B$274.5B5.4B$275.5B5.4B$276.5B5.4B$277.5B5.4B$278.5B5.4B$
279.5B5.4B$280.5B5.4B$281.5B5.4B$282.5B5.4B$283.5B5.4B$284.5B5.4B$285.
5B5.4B$286.5B5.4B$287.5B5.4B$288.5B5.4B$289.5B5.4B$290.5B5.4B$291.5B5.
4B$292.5B5.4B$293.5B5.4B$294.2B2AB5.4B$295.2A3B5.4B$296.BA3B5.4B$298.
4B5.4B$299.4B5.4B$300.4B5.4B$301.4B5.4B$302.4B5.4B$303.4B5.4B$304.4B5.
4B$305.4B5.4B$306.4B5.4B$307.4B5.4B$308.4B5.4B$309.4B5.4B$310.4B5.4B$
311.4B5.4B$312.4B5.4B$313.4B5.4B$314.4B5.4B$315.4B5.4B$316.4B5.4B$317.
4B5.4B$318.4B5.4B$319.4B5.4B$320.4B5.4B$321.4B5.4B$322.4B5.4B$323.4B5.
4B$324.4B5.4B$325.4B5.4B$326.4B5.4B$327.4B5.4B$328.4B5.4B$329.4B5.4B$
330.4B5.4B$331.4B5.4B$332.4B5.4B$333.4B5.4B$334.4B5.4B$335.4B5.4B$336.
4B5.4B$337.4B5.4B$338.4B5.4B$339.4B5.4B$340.4B5.4B$341.4B5.4B$342.4B5.
4B$343.4B5.4B$344.4B5.4B$345.4B5.4B$346.4B5.4B$347.4B5.4B$348.4B5.4B$
349.4B5.4B$350.4B5.4B$351.4B5.4B$352.4B5.4B$353.4B5.4B$354.4B5.4B$355.
4B5.4B$356.4B5.4B$357.4B5.4B$358.4B5.4B$359.4B5.4B$360.4B5.4B$361.4B5.
4B$362.4B5.4B$363.4B5.4B$364.4B5.4B$365.2B2A5.4B$366.2A2B5.4B$367.BA7.
4B$377.4B$378.4B$379.4B$380.4B$381.4B$382.4B$383.4B$384.4B$385.4B$386.
4B$387.4B$388.4B$389.4B$390.4B$391.4B$392.4B$393.4B$394.4B$395.4B$396.
4B$397.4B$398.4B$399.4B$400.4B$401.4B$402.4B$403.4B$404.4B$405.4B$406.
4B$407.4B$408.4B$409.4B$410.4B$411.4B$412.4B$413.4B$414.4B$415.4B$416.
4B$417.4B$418.4B$419.4B$420.4B$421.4B$422.4B$423.4B$424.4B$425.4B$426.
4B$427.4B$428.4B$429.4B$430.4B$431.4B$432.4B$433.4B$434.4B$435.2B2A$436.
2A2B$437.BA79$249.2D$248.B2D$247.4B$246.7B$245.4B.4B$244.4B2.5B$243.4B
5.4B$242.4B7.4B$241.4B9.4B$240.4B11.4B$239.4B13.4B$238.4B15.4B$237.4B
17.4B$236.4B19.4B$235.4B21.4B$234.4B23.4B$233.4B25.4B$232.4B27.4B$231.
4B29.4B$230.4B31.4B$229.4B33.4B$228.4B35.4B$227.4B37.4B$226.4B39.4B$225.
4B41.4B$224.4B43.4B$223.4B45.4B$222.4B47.4B$221.4B49.4B$220.4B51.4B$219.
4B53.4B$218.4B55.4B$217.4B57.4B$216.4B59.4B$215.4B61.4B$214.4B63.4B$213.
4B65.4B$212.4B67.4B$211.4B69.4B$210.4B71.4B$209.4B73.4B$208.4B75.4B$207.
4B77.4B$206.4B79.4B$205.4B81.4B$204.4B83.4B$203.4B85.4B$202.4B87.4B$201.
4B89.4B$200.4B91.4B$199.4B93.4B$198.4B95.4B$197.4B97.4B$196.4B99.4B$195.
4B101.4B$194.4B103.4B$193.4B105.4B$192.4B107.4B$191.4B109.4B$190.4B111.
4B$189.4B113.4B$188.4B115.4B$187.4B117.4B$186.4B119.4B$185.4B121.4B$184.
4B123.4B$183.4B125.4B$182.4B127.4B$181.4B129.4B$180.4B131.4B$179.4B133.
4B$178.4B135.4B$177.4B137.4B$176.4B139.4B$175.4B141.4B$174.4B143.4B$173.
4B145.4B$172.4B147.4B$171.4B149.4B$170.4B151.4B$169.4B153.4B$168.4B155.
4B$167.4B157.4B$166.4B159.4B$165.4B161.4B$164.4B163.4B$163.4B165.4B$162.
4B167.4B$161.4B169.4B$160.4B171.4B$159.4B173.4B$158.4B175.4B$157.4B177.
4B$156.4B179.4B$155.4B181.4B$154.4B183.4B$153.4B185.4B$152.4B187.4B$151.
4B189.4B$150.4B191.4B$149.4B193.4B$148.4B195.4B$147.4B197.4B$146.4B199.
4B$145.4B201.4B$144.4B203.4B$143.4B205.4B$142.4B207.4B$141.4B209.4B$140.
4B211.4B$139.4B213.4B$138.4B215.4B$137.4B217.4B$136.4B219.4B$135.4B221.
4B$134.4B223.4B$133.4B225.4B$132.4B227.4B$131.4B229.4B$130.4B231.4B$129.
4B233.4B$128.4B235.4B$127.4B237.4B$126.4B239.4B$125.4B241.4B$124.4B243.
4B$123.4B245.4B$122.4B247.4B$121.4B249.4B$120.4B251.4B$119.4B253.4B$118.
4B255.4B$117.4B257.4B$116.4B259.4B$115.4B261.4B$114.4B263.4B$113.4B265.
4B$112.4B267.4B$111.4B269.4B$110.4B271.4B$109.4B273.4B$108.4B275.4B$107.
4B277.4B$106.4B279.4B$105.4B281.4B$104.4B283.4B$103.4B285.4B$102.4B287.
4B$101.4B289.4B$100.4B291.4B$99.4B293.4B$98.4B295.4B$97.4B297.4B$96.4B
299.4B$95.4B301.4B$94.4B303.4B$93.4B305.4B$92.4B307.4B$91.4B309.4B$90.
4B311.4B$89.4B313.4B$88.4B315.4B$87.4B317.4B$86.4B319.4B$85.4B321.4B$
84.4B323.4B$83.4B325.4B$82.4B327.4B$81.4B329.4B$80.4B331.4B$79.4B333.
4B$71.2A5.4B335.4B$70.A.A4.4B337.4B$70.2A4.4B339.4B$75.4B341.4B$74.4B
343.4B$73.4B345.4B$72.4B347.4B$71.4B349.4B$70.4B351.4B$69.4B353.4B$68.
4B355.4B$67.4B9.2A346.4B$66.4B10.2A347.4B$65.4B361.4B$64.4B363.4B$63.
4B365.4B$62.4B367.4B$61.4B369.4B$60.4B371.4B$59.4B13.2A358.4B$58.4B14.
2A359.4B$57.4B377.4B$32.B23.4B379.4B$31.3A21.4B381.4B$32.B21.4B383.4B
$35.A17.4B385.4B$34.BAB15.4B387.4B$35.A15.4B389.4B$50.4B391.4B$49.4B393.
4B$48.4B395.4B$47.4B397.4B$46.4B18.2A33.2A344.4B$45.4B19.2A32.A.A345.
4B$44.4B54.2A347.4B$43.4B2DB21.B380.4B$42.4B.2DB.B18.3A380.4B$41.4B2.
6B18.B382.4B$40.4B3.7B20.A380.4B$39.4B4.9B17.BAB380.4B$19.2E17.4B5.9B
18.A382.4B$18.EBEB15.4B7.8B14.2A386.4B$12.7BE2B14.4B7.8B14.A2.A386.4B
$11.2E10B12.4B8.8B15.2A40.2A346.4B$4.2B3.2B2E10B11.4B7.3B2D6B56.2A347.
4B$2.22B9.4B6.4BD2BD6B405.4B$2.15B2D5B8.4B4.8BDBD7B405.4B$2.14BDBD5B7.
4B4.10BD9B405.4B$.14BDBD6B6.4B5.15B2E2B407.4B$16BD7B5.4B6.3B2D10B2E410.
4B$25B3.4B7.3B2D10B413.4B$.24B2.4B9.15B53.2A358.4B$.11B2D9B3.4B11.10B
2E3B52.2A359.4B$2.9BD2BD7B3.4B12.2B3E4B.2E4B413.4B$2.10B2DE6B3.4B14.8B
4.4B13.2A398.4B$3.2B.7BEBE5B2.4B15.8B5.4B11.A.A399.4B$3.10BEBE5B.4B18.
7B5.4B11.A401.4B$4.10BE10B2.2D15.6B7.4B21.B391.4B$7.17B.BD2.DB13.6B8.
4B19.3A391.4B$7.2B2E13B.2B2D2B13.6B9.4B19.B393.4B$7.BE2BE19B13.6B10.4B
413.4B$8.B2E6B2C11B14.7B10.4B413.4B$10.7B2C11B14.6B12.4B24.A388.4B$12.
2BC16B13.2B2D2B13.4B22.BAB388.4B$12.BCBC7B2D7B13.B2D16.4B22.A9.2A33.2A
344.4B$11.2BCBC5B.D2BD7B32.4B31.2A32.A.A345.4B$12.2BC6B2.2D9B6.2A24.4B
64.2A347.4B$14.8B5.8B4.A2.A24.4B32.B380.4B$17.6B5.8B3.A2.A25.4B30.3A380.
4B$19.5B5.8B3.2A27.4B30.B382.4B$20.5B5.8B32.4B32.A380.4B$21.5B5.8B32.
4B30.BAB377.7B$22.5B5.8B32.4B30.A376.9B$23.5B5.8B32.4B25.2A378.11B$24.
5B5.8B32.4B23.A2.A378.13B$25.5B5.8B32.4B23.2A40.2A337.14B$26.5B5.8B32.
4B64.2A336.16B$27.5B5.8B32.4B400.17B$28.5B5.8B32.4B399.18B$29.5B5.8B32.
4B397.19B$30.5B5.8B24.2A6.4B396.20B$31.5B5.8B22.A2.A6.4B396.20B2E$32.
5B5.8B22.A.A7.4B393.22B2EB$33.5B5.8B22.A9.4B53.2A337.25B.2B$34.5B5.8B
32.4B52.2A337.29B$35.5B5.8B32.4B391.29B$36.5B5.8B32.4B13.2A374.25B2.4B
$37.5B5.8B32.4B11.A.A372.28B2.4B$38.5B5.8B32.4B11.A361.2B3.2B2.32B2.4B
$39.5B5.8B32.4B21.B341.2B3.B3.48B$40.5B5.8B32.4B19.3A340.B2C.5B2C27B4.
16B$41.5B5.8B32.4B19.B339.3B2C7BC26B5.12B.4B$42.5B5.8B6.2A24.4B357.10B
3C27B5.12B2.4B$43.5B5.8B4.A2.A24.4B356.10BC29B6.12B2.4B$44.5B5.8B4.2A
26.4B24.A330.14B.11B.13B7.12B2.4B$45.5B5.8B32.4B22.BAB330.11B6.12B4.6B
8.7B.4B2.4B$46.5B5.8B32.4B22.A9.2A33.2A284.9B9.2BC9B.10B8.7B.4B2.4B$47.
5B5.8B32.4B31.2A32.A.A283.7B11.2BCBC18B9.8B.4B2.4B$48.5B5.8B32.4B64.2A
283.8B11.2BCBC17B9.10B.4B2.4B$49.5B5.8B32.4B32.B314.4B2.2B14.BC18B8.4B
.7B.4B2.4B$50.5B5.8B32.4B30.3A312.4B19.2B.6B2.10B6.4B3.7B.4B2.4B$51.5B
5.8B32.4B30.B312.4B23.19B4.4B5.7B.4B2.4B$52.5B5.8B32.4B32.A308.4B25.4B
.13B3.4B7.7B.4B2.4B$53.5B5.8B32.4B30.BAB306.4B28.B.13B3.4B9.7B.4B2.4B
$54.5B5.8B32.4B30.A306.4B32.5B2C11B11.7B.2B2A2.4B$55.5B5.8B32.4B25.2A
308.4B33.5B2C10B13.7B.2A2B2.2B2A$56.5B5.8B32.4B23.A2.A306.4B35.15B15.
7B.BA4.BABA$57.5B5.8B32.4B23.2A40.2A264.4B36.15B16.7B7.A2B$58.5B5.8B32.
4B64.2A263.4B37.2CB.9B19.7B$59.5B5.8B32.4B327.4B38.2C11B20.7B$60.5B5.
8B32.4B325.4B40.12B21.7B$61.5B5.8B32.4B323.4B39.12B24.7B$62.5B5.8B24.
2A6.4B321.4B39.13B25.7B$63.5B5.8B22.A2.A6.4B319.4B41.13B25.7B$64.5B5.
8B22.A.A7.4B317.4B44.11B26.7B$65.5B5.8B22.A9.4B53.2A260.4B46.8B29.2B2A
3B$66.5B5.8B32.4B52.2A259.4B46.7B32.BABA3B$67.5B5.8B32.4B311.4B46.4B.
B35.A6B$68.5B5.8B32.4B13.2A294.4B46.4B42.4B$69.5B5.8B32.4B11.A.A293.4B
46.4B44.4B$70.5B5.8B32.4B11.A293.4B46.4B46.4B$71.5B5.8B32.4B303.4B46.
4B48.2B2A$72.5B5.8B32.4B19.3A279.4B46.4B50.2A2B$73.5B5.8B32.4B299.4B46.
4B52.BA$74.5B5.8B6.2A24.4B297.4B46.4B$75.5B5.8B4.A2.A24.4B295.4B46.4B
$76.5B5.8B4.2A26.4B24.A268.4B46.4B$77.5B5.8B32.4B23.A267.4B46.4B$78.5B
5.8B32.2B24.A9.2A33.2A220.4B46.4B$79.5B5.8B67.2A32.A.A219.4B46.4B$80.
5B5.8B100.2A219.4B46.4B$81.5B5.8B319.4B46.4B$82.5B5.8B66.3A248.4B46.4B
$83.5B5.8B315.4B46.4B$84.5B5.8B68.A244.4B46.4B$85.5B5.6B69.A243.4B46.
4B$86.5B5.5B69.A242.4B46.4B$87.5B5.5B64.2A244.4B46.4B$88.5B5.5B62.A2.
A242.4B46.4B$89.5B5.5B62.2A40.2A200.4B46.4B$90.5B5.5B103.2A199.4B46.4B
$91.5B5.5B302.4B46.4B$92.5B5.5B300.4B46.4B$93.5B5.5B298.4B46.4B$94.5B
5.5B27.2A267.4B46.4B$95.5B5.5B25.A2.A265.4B46.4B$96.5B5.5B25.A.A264.4B
46.4B$97.5B5.5B25.A66.2A196.4B46.4B$98.5B5.5B91.2A195.4B46.4B$99.5B5.
5B286.4B46.4B$100.5B5.5B52.2A230.4B46.4B$101.5B5.5B50.A.A229.4B46.4B$
102.5B5.5B50.A229.4B46.4B$103.5B5.5B278.4B46.4B$104.5B5.5B58.3A215.4B
46.4B$105.5B5.5B274.4B46.4B$106.5B5.5B9.2A261.4B46.4B$107.5B5.5B7.A2.
A259.4B46.4B$108.5B5.5B7.2A54.A204.4B46.4B$109.5B5.5B62.A203.4B46.4B$
110.5B5.5B61.A9.2A33.2A156.4B46.4B$111.5B5.5B70.2A32.A.A155.4B46.4B$112.
5B5.5B103.2A155.4B46.4B$113.5B5.5B258.4B46.4B$114.5B5.5B69.3A184.4B46.
4B$115.5B5.5B254.4B46.4B$116.5B5.5B71.A180.4B46.4B$117.5B5.5B70.A179.
4B46.4B$118.5B5.5B69.A178.4B46.4B$119.5B5.5B64.2A180.4B46.4B$120.5B5.
5B62.A2.A178.4B46.4B$121.5B5.5B62.2A178.4B46.4B$122.5B5.5B240.4B46.4B
$123.5B5.5B238.4B46.4B$124.5B5.5B236.4B46.4B$125.5B5.5B234.4B46.4B$126.
5B5.5B27.2A203.4B46.4B$127.5B5.5B25.A2.A201.4B46.4B$128.5B5.5B25.A.A200.
4B46.4B$129.5B5.5B25.A200.4B46.4B$130.5B5.5B224.4B46.4B$131.5B5.5B222.
4B46.4B$132.5B5.5B52.2A166.4B46.4B$133.5B5.5B50.A.A165.4B46.4B$135.4B
60.A165.4B46.4B$136.4B224.4B46.4B$137.4B68.3A151.4B46.4B$138.4B220.4B
46.4B$139.4B19.2A197.4B46.4B$140.4B17.A2.A195.4B46.4B$141.4B17.2A54.A
140.4B46.4B$142.4B72.A139.4B46.4B$143.4B71.A138.4B46.4B$144.4B208.4B46.
4B$145.4B206.4B46.4B$146.4B204.4B46.4B$147.4B202.4B46.4B$148.4B200.4B
46.4B$149.4B198.4B46.4B$150.4B196.4B46.4B$151.4B194.4B46.4B$152.4B192.
4B46.4B$153.4B190.4B46.4B$154.4B188.4B46.4B$155.4B186.4B46.4B$156.4B184.
4B46.4B$157.4B182.4B46.4B$158.4B180.4B46.4B$159.4B37.2A139.4B46.4B$160.
4B35.A2.A137.4B46.4B$161.4B35.A.A136.4B46.4B$162.4B35.A136.4B46.4B$163.
4B170.4B46.4B$164.4B168.4B46.4B$165.4B166.4B46.4B$166.4B164.4B46.4B$167.
4B162.4B46.4B$168.4B160.4B46.4B$169.4B158.4B46.4B$170.4B156.4B46.4B$171.
4B19.2A133.4B46.4B$172.4B17.A2.A131.4B46.4B$173.4B17.2A131.4B46.4B$174.
4B148.4B46.4B$175.4B146.4B46.4B$176.4B144.4B46.4B$177.4B142.4B46.4B$178.
4B140.4B46.4B$179.4B138.4B46.4B$180.4B136.4B46.4B$181.4B134.4B46.4B$182.
4B132.4B46.4B$183.4B130.4B46.4B$184.4B128.4B46.4B$185.4B126.4B46.4B$186.
4B124.4B46.4B$187.4B122.4B46.4B$188.4B120.4B46.4B$189.4B118.4B46.4B$190.
4B116.4B46.4B$191.4B114.4B46.4B$192.4B112.4B46.4B$193.4B110.4B46.4B$194.
4B108.4B20.2D24.4B$195.4B106.4B21.2D23.4B$196.4B104.4B46.4B$197.4B102.
4B46.4B$198.4B100.4B46.4B$199.4B98.4B46.4B$200.4B96.4B46.4B$201.4B94.
4B46.4B$202.4B92.4B46.4B$203.4B90.4B46.4B$204.4B88.4B46.4B$205.4B86.4B
46.4B$206.4B84.4B46.4B$207.4B82.4B46.4B$208.4B80.4B46.4B$209.4B78.4B46.
4B$210.4B76.4B46.4B$211.4B74.4B46.4B$212.4B72.4B46.4B$213.4B70.4B46.4B
$214.4B68.4B46.4B$215.4B66.4B46.4B$216.4B64.4B46.4B$217.4B62.4B46.4B$
218.4B60.4B46.4B$219.4B58.4B46.4B$220.4B56.4B46.4B$221.4B54.4B46.4B$222.
4B52.4B46.4B$223.4B50.4B46.4B$224.4B48.4B46.4B$225.4B46.4B46.4B$226.4B
44.4B46.4B$227.4B42.4B46.4B$228.4B40.4B46.4B$229.4B38.4B46.4B$230.4B36.
4B46.4B$231.4B34.4B46.4B$232.4B32.4B46.4B$233.4B30.4B46.4B$234.4B28.4B
46.4B$235.4B26.4B46.4B$236.4B24.4B46.4B$237.4B22.4B46.4B$238.4B20.4B46.
4B$239.4B8.2B8.4B46.4B$240.4B6.B2C7.4B46.4B$241.4B5.BCBC2.7B46.4B$242.
4B3.3B2C3B2C3B46.4B$243.4B2.6B.C2BCB46.4B$244.4B2.7B2C3B44.4B$245.4B.
13B42.4B$246.19B39.4B$247.15B2C2B37.4B$248.4B2.7BCBC2B36.4B$247.6B2.7B
C3B35.4B$246.8B2.4B.3B36.4B$244.10B3.4B38.4B$243.2B2C7B4.4B36.4B$243.
2BCBC6B5.4B34.4B$243.3BC6B7.4B32.4B$245.3B13.4B30.4B$262.4B28.4B$263.
4B26.4B$264.4B24.4B$265.4B22.4B$266.4B20.4B$267.4B18.4B$268.4B16.4B$269.
4B14.4B$270.4B12.4B$271.4B10.4B$272.4B8.4B$273.4B6.4B$274.4B4.4B$275.
4B2.4B$276.8B$277.6B$278.4B$277.6B$276.8B$274.10B$273.2B2C7B$273.2BCB
C6B$273.3BC6B$275.3B!

User avatar
dvgrn
Moderator
Posts: 10612
Joined: May 17th, 2009, 11:00 pm
Location: Madison, WI
Contact:

Re: RCT remaining tasks

Post by dvgrn » November 5th, 2022, 10:49 pm

Getting close on the NW Corderfleet, but not quite there yet. Looks like it might just be a parity problem at this point, but it's not a really simple parity problem fixable by advancing all the gliders by one tick.

I'll sort it out in the morning, unless someone wants to track down the problem.

EDIT: Deleted the not-quite-correct pattern -- don't bother trying to patch it at this point, I have a working Corderfleet recipe.

The only problem now is that three of the Corderships are totally unnecessary. Doing a quick rework...

EDIT2: All fixed up now, I think. Here's the full test pattern:

Code: Select all

x = 4353431, y = 4351633, rule = LifeSuper
4353428.M$4353428.M.M$4353428.2M1021$4352404.M.M$4352404.2M$4352405.M
1018$4351380.M.M$4351380.2M$4351381.M1022$4350356.M.M$4350356.2M$
4350357.M1008$4349332.M.M$4349332.2M$4349333.M1030$4348308.M.M$
4348308.2M$4348309.M1015$4347284.M.M$4347284.2M$4347285.M1035$
4346260.M.M$4346260.2M$4346261.M1030$4345236.M.M$4345236.2M$4345237.M
1014$4344212.M.M$4344212.2M$4344213.M1008$4343188.M.M$4343188.2M$
4343189.M1040$4342164.M.M$4342164.2M$4342165.M1023$4341140.M$4341140.
M.M$4341140.2M1026$4340116.M$4340116.M.M$4340116.2M1008$4339092.M.M$
4339092.2M$4339093.M1016$4338068.M.M$4338068.2M$4338069.M1024$
4337044.M.M$4337044.2M$4337045.M1019$4336020.M.M$4336020.2M$4336021.M
1022$4334996.M.M$4334996.2M$4334997.M979$4333972.M.M$4333972.2M$
4333973.M1035$4332948.M$4332948.M.M$4332948.2M1005$4331924.M$4331924.
M.M$4331924.2M1056$4330900.M$4330900.M.M$4330900.2M1020$4329876.M.M$
4329876.2M$4329877.M1018$4328852.M.M$4328852.2M$4328853.M1009$
4327828.M$4327828.M.M$4327828.2M1027$4326804.M$4326804.M.M$4326804.2M
1013$4325780.M.M$4325780.2M$4325781.M1023$4324756.M.M$4324756.2M$
4324757.M1025$4323732.M.M$4323732.2M$4323733.M1023$4322708.M.M$
4322708.2M$4322709.M1015$4321684.M.M$4321684.2M$4321685.M1009$
4320660.M.M$4320660.2M$4320661.M1030$4319636.M$4319636.M.M$4319636.2M
1026$4318612.M$4318612.M.M$4318612.2M1020$4317588.M.M$4317588.2M$
4317589.M1019$4316564.M$4316564.M.M$4316564.2M1034$4315540.M.M$
4315540.2M$4315541.M1011$4314516.M$4314516.M.M$4314516.2M1022$
4313492.M.M$4313492.2M$4313493.M1027$4312468.M.M$4312468.2M$4312469.M
1019$4311444.M.M$4311444.2M$4311445.M1022$4310420.M.M$4310420.2M$
4310421.M1033$4309396.M.M$4309396.2M$4309397.M1033$4308372.M.M$
4308372.2M$4308373.M1010$4307348.M$4307348.M.M$4307348.2M1035$
4306324.M.M$4306324.2M$4306325.M1019$4305300.M.M$4305300.2M$4305301.M
1013$4304276.M.M$4304276.2M$4304277.M1030$4303252.M$4303252.M.M$
4303252.2M1028$4302228.M$4302228.M.M$4302228.2M1003$4301204.M.M$
4301204.2M$4301205.M1041$4300180.M.M$4300180.2M$4300181.M1021$
4299156.M.M$4299156.2M$4299157.M1039$4298132.M.M$4298132.2M$4298133.M
1014$4297108.M.M$4297108.2M$4297109.M1022$4296084.M.M$4296084.2M$
4296085.M1034$4295060.M.M$4295060.2M$4295061.M1019$4294036.M.M$
4294036.2M$4294037.M1030$4293012.M.M$4293012.2M$4293013.M1007$
4291988.M.M$4291988.2M$4291989.M1028$4290964.M.M$4290964.2M$4290965.M
1032$4289940.M.M$4289940.2M$4289941.M1012$4288916.M.M$4288916.2M$
4288917.M1022$4287892.M.M$4287892.2M$4287893.M1028$4286868.M$4286868.
M.M$4286868.2M1042$4285844.M$4285844.M.M$4285844.2M1015$4284820.M$
4284820.M.M$4284820.2M1018$4283796.M$4283796.M.M$4283796.2M1023$
4282772.M.M$4282772.2M$4282773.M1022$4281748.M.M$4281748.2M$4281749.M
1001$4280724.M.M$4280724.2M$4280725.M1020$4279700.M$4279700.M.M$
4279700.2M1043$4278676.M.M$4278676.2M$4278677.M1015$4277652.M.M$
4277652.2M$4277653.M1030$4276628.M.M$4276628.2M$4276629.M1017$
4275604.M.M$4275604.2M$4275605.M1004$4274580.M.M$4274580.2M$4274581.M
1020$4273556.M.M$4273556.2M$4273557.M1017$4272532.M$4272532.M.M$
4272532.2M1056$4271508.M.M$4271508.2M$4271509.M1012$4270484.M$
4270484.M.M$4270484.2M1008$4269460.M$4269460.M.M$4269460.2M1026$
4268436.M$4268436.M.M$4268436.2M1025$4267412.M$4267412.M.M$4267412.2M
1014$4266388.M$4266388.M.M$4266388.2M1024$4265364.M$4265364.M.M$
4265364.2M990$4264340.M.M$4264340.2M$4264341.M1026$4263316.M$4263316.
M.M$4263316.2M1027$4262292.M$4262292.M.M$4262292.2M1032$4261268.M$
4261268.M.M$4261268.2M1016$4260244.M$4260244.M.M$4260244.2M1007$
4259220.M$4259220.M.M$4259220.2M1029$4258196.M$4258196.M.M$4258196.2M
1025$4257172.M$4257172.M.M$4257172.2M1027$4256148.M.M$4256148.2M$
4256149.M1021$4255124.M.M$4255124.2M$4255125.M1020$4254100.M$4254100.
M.M$4254100.2M1020$4253076.M.M$4253076.2M$4253077.M1021$4252052.M.M$
4252052.2M$4252053.M1030$4251028.M.M$4251028.2M$4251029.M1018$
4250004.M.M$4250004.2M$4250005.M1031$4248980.M.M$4248980.2M$4248981.M
1008$4247956.M.M$4247956.2M$4247957.M1025$4246932.M.M$4246932.2M$
4246933.M1037$4245908.M.M$4245908.2M$4245909.M1024$4244884.M.M$
4244884.2M$4244885.M1020$4243860.M.M$4243860.2M$4243861.M1015$
4242836.M.M$4242836.2M$4242837.M1054$4241812.M.M$4241812.2M$4241813.M
1013$4240788.M$4240788.M.M$4240788.2M1003$4239764.M$4239764.M.M$
4239764.2M1032$4238740.M$4238740.M.M$4238740.2M1057$4237716.M.M$
4237716.2M$4237717.M1013$4236692.M.M$4236692.2M$4236693.M1029$
4235668.M$4235668.M.M$4235668.2M1026$4234644.M$4234644.M.M$4234644.2M
1015$4233620.M.M$4233620.2M$4233621.M1006$4232596.M.M$4232596.2M$
4232597.M1024$4231572.M.M$4231572.2M$4231573.M1005$4230548.M.M$
4230548.2M$4230549.M1015$4229524.M$4229524.M.M$4229524.2M1019$
4228500.M$4228500.M.M$4228500.2M1020$4227476.M.M$4227476.2M$4227477.M
1026$4226452.M.M$4226452.2M$4226453.M1013$4225428.M.M$4225428.2M$
4225429.M1032$4224404.M.M$4224404.2M$4224405.M1054$4223380.M$4223380.
M.M$4223380.2M1021$4222356.M$4222356.M.M$4222356.2M1018$4221332.M$
4221332.M.M$4221332.2M1022$4220308.M$4220308.M.M$4220308.2M1008$
4219284.M$4219284.M.M$4219284.2M1030$4218260.M$4218260.M.M$4218260.2M
1015$4217236.M$4217236.M.M$4217236.2M1035$4216212.M$4216212.M.M$
4216212.2M1030$4215188.M$4215188.M.M$4215188.2M1014$4214164.M$
4214164.M.M$4214164.2M1008$4213140.M$4213140.M.M$4213140.2M1040$
4212116.M$4212116.M.M$4212116.2M1023$4211092.M.M$4211092.2M$4211093.M
1026$4210068.M.M$4210068.2M$4210069.M1008$4209044.M$4209044.M.M$
4209044.2M1016$4208020.M$4208020.M.M$4208020.2M1024$4206996.M$
4206996.M.M$4206996.2M1019$4205972.M$4205972.M.M$4205972.2M1022$
4204948.M$4204948.M.M$4204948.2M979$4203924.M$4203924.M.M$4203924.2M
1035$4202900.M.M$4202900.2M$4202901.M1005$4201876.M.M$4201876.2M$
4201877.M1056$4200852.M.M$4200852.2M$4200853.M1020$4199828.M$4199828.
M.M$4199828.2M1018$4198804.M$4198804.M.M$4198804.2M1009$4197780.M.M$
4197780.2M$4197781.M1027$4196756.M.M$4196756.2M$4196757.M1013$
4195732.M$4195732.M.M$4195732.2M1023$4194708.M$4194708.M.M$4194708.2M
1025$4193684.M$4193684.M.M$4193684.2M1023$4192660.M$4192660.M.M$
4192660.2M1015$4191636.M$4191636.M.M$4191636.2M1009$4190612.M$
4190612.M.M$4190612.2M1030$4189588.M.M$4189588.2M$4189589.M1026$
4188564.M.M$4188564.2M$4188565.M1020$4187540.M$4187540.M.M$4187540.2M
1019$4186516.M.M$4186516.2M$4186517.M1034$4185492.M$4185492.M.M$
4185492.2M1011$4184468.M.M$4184468.2M$4184469.M1022$4183444.M$
4183444.M.M$4183444.2M1027$4182420.M$4182420.M.M$4182420.2M1019$
4181396.M$4181396.M.M$4181396.2M1022$4180372.M$4180372.M.M$4180372.2M
1033$4179348.M$4179348.M.M$4179348.2M1033$4178324.M$4178324.M.M$
4178324.2M1010$4177300.M.M$4177300.2M$4177301.M1035$4176276.M$
4176276.M.M$4176276.2M1019$4175252.M$4175252.M.M$4175252.2M1013$
4174228.M$4174228.M.M$4174228.2M1030$4173204.M.M$4173204.2M$4173205.M
1028$4172180.M.M$4172180.2M$4172181.M1003$4171156.M$4171156.M.M$
4171156.2M1041$4170132.M$4170132.M.M$4170132.2M1021$4169108.M$
4169108.M.M$4169108.2M1039$4168084.M$4168084.M.M$4168084.2M1014$
4167060.M$4167060.M.M$4167060.2M1022$4166036.M$4166036.M.M$4166036.2M
1034$4165012.M$4165012.M.M$4165012.2M1019$4163988.M$4163988.M.M$
4163988.2M1030$4162964.M$4162964.M.M$4162964.2M1007$4161940.M$
4161940.M.M$4161940.2M1028$4160916.M$4160916.M.M$4160916.2M1032$
4159892.M$4159892.M.M$4159892.2M1012$4158868.M$4158868.M.M$4158868.2M
1022$4157844.M$4157844.M.M$4157844.2M1028$4156820.M.M$4156820.2M$
4156821.M1042$4155796.M.M$4155796.2M$4155797.M1015$4154772.M.M$
4154772.2M$4154773.M1018$4153748.M.M$4153748.2M$4153749.M1023$
4152724.M$4152724.M.M$4152724.2M1022$4151700.M$4151700.M.M$4151700.2M
1001$4150676.M$4150676.M.M$4150676.2M1020$4149652.M.M$4149652.2M$
4149653.M1043$4148628.M$4148628.M.M$4148628.2M1015$4147604.M$4147604.
M.M$4147604.2M1030$4146580.M$4146580.M.M$4146580.2M1017$4145556.M$
4145556.M.M$4145556.2M1004$4144532.M$4144532.M.M$4144532.2M1020$
4143508.M$4143508.M.M$4143508.2M1017$4142484.M.M$4142484.2M$4142485.M
1056$4141460.M$4141460.M.M$4141460.2M1012$4140436.M.M$4140436.2M$
4140437.M1008$4139412.M.M$4139412.2M$4139413.M1026$4138388.M.M$
4138388.2M$4138389.M1025$4137364.M.M$4137364.2M$4137365.M1014$
4136340.M.M$4136340.2M$4136341.M1024$4135316.M.M$4135316.2M$4135317.M
990$4134292.M$4134292.M.M$4134292.2M1026$4133268.M.M$4133268.2M$
4133269.M1027$4132244.M.M$4132244.2M$4132245.M1032$4131220.M.M$
4131220.2M$4131221.M1016$4130196.M.M$4130196.2M$4130197.M1007$
4129172.M.M$4129172.2M$4129173.M1029$4128148.M.M$4128148.2M$4128149.M
1025$4127124.M.M$4127124.2M$4127125.M1027$4126100.M$4126100.M.M$
4126100.2M1021$4125076.M$4125076.M.M$4125076.2M1020$4124052.M.M$
4124052.2M$4124053.M1020$4123028.M$4123028.M.M$4123028.2M1021$
4122004.M$4122004.M.M$4122004.2M1030$4120980.M$4120980.M.M$4120980.2M
1018$4119956.M$4119956.M.M$4119956.2M1031$4118932.M$4118932.M.M$
4118932.2M1008$4117908.M$4117908.M.M$4117908.2M1025$4116884.M$
4116884.M.M$4116884.2M1037$4115860.M$4115860.M.M$4115860.2M1024$
4114836.M$4114836.M.M$4114836.2M1020$4113812.M$4113812.M.M$4113812.2M
1015$4112788.M$4112788.M.M$4112788.2M1054$4111764.M$4111764.M.M$
4111764.2M1013$4110740.M.M$4110740.2M$4110741.M1003$4109716.M.M$
4109716.2M$4109717.M1032$4108692.M.M$4108692.2M$4108693.M1057$
4107668.M$4107668.M.M$4107668.2M1013$4106644.M$4106644.M.M$4106644.2M
1029$4105620.M.M$4105620.2M$4105621.M1026$4104596.M.M$4104596.2M$
4104597.M1015$4103572.M$4103572.M.M$4103572.2M1006$4102548.M$4102548.
M.M$4102548.2M1024$4101524.M$4101524.M.M$4101524.2M1005$4100500.M$
4100500.M.M$4100500.2M1015$4099476.M.M$4099476.2M$4099477.M1018$
4098452.M.M$4098452.2M$4098453.M1024$4097428.M$4097428.M.M$4097428.2M
1022$4096404.M$4096404.M.M$4096404.2M1028$4095380.M$4095380.M.M$
4095380.2M1020$4094356.M$4094356.M.M$4094356.2M1025$4093332.M$
4093332.M.M$4093332.2M1054$4092308.M$4092308.M.M$4092308.2M1021$
4091284.M$4091284.M.M$4091284.2M1018$4090260.M$4090260.M.M$4090260.2M
1022$4089236.M$4089236.M.M$4089236.2M1008$4088212.M$4088212.M.M$
4088212.2M1030$4087188.M$4087188.M.M$4087188.2M1015$4086164.M$
4086164.M.M$4086164.2M1035$4085140.M$4085140.M.M$4085140.2M1030$
4084116.M$4084116.M.M$4084116.2M1014$4083092.M$4083092.M.M$4083092.2M
1008$4082068.M$4082068.M.M$4082068.2M1040$4081044.M$4081044.M.M$
4081044.2M1023$4080020.M.M$4080020.2M$4080021.M1026$4078996.M.M$
4078996.2M$4078997.M1008$4077972.M$4077972.M.M$4077972.2M1016$
4076948.M$4076948.M.M$4076948.2M1024$4075924.M$4075924.M.M$4075924.2M
1019$4074900.M$4074900.M.M$4074900.2M1022$4073876.M$4073876.M.M$
4073876.2M979$4072852.M$4072852.M.M$4072852.2M1035$4071828.M.M$
4071828.2M$4071829.M1005$4070804.M.M$4070804.2M$4070805.M1056$
4069780.M.M$4069780.2M$4069781.M1020$4068756.M$4068756.M.M$4068756.2M
1018$4067732.M$4067732.M.M$4067732.2M1009$4066708.M.M$4066708.2M$
4066709.M1027$4065684.M.M$4065684.2M$4065685.M1013$4064660.M$4064660.
M.M$4064660.2M1023$4063636.M$4063636.M.M$4063636.2M1025$4062612.M$
4062612.M.M$4062612.2M1023$4061588.M$4061588.M.M$4061588.2M1015$
4060564.M$4060564.M.M$4060564.2M1009$4059540.M$4059540.M.M$4059540.2M
1030$4058516.M.M$4058516.2M$4058517.M1026$4057492.M.M$4057492.2M$
4057493.M1020$4056468.M$4056468.M.M$4056468.2M1019$4055444.M.M$
4055444.2M$4055445.M1034$4054420.M$4054420.M.M$4054420.2M1011$
4053396.M.M$4053396.2M$4053397.M1022$4052372.M$4052372.M.M$4052372.2M
1027$4051348.M$4051348.M.M$4051348.2M1019$4050324.M$4050324.M.M$
4050324.2M1022$4049300.M$4049300.M.M$4049300.2M1033$4048276.M$
4048276.M.M$4048276.2M1033$4047252.M$4047252.M.M$4047252.2M1010$
4046228.M.M$4046228.2M$4046229.M1035$4045204.M$4045204.M.M$4045204.2M
1019$4044180.M$4044180.M.M$4044180.2M1013$4043156.M$4043156.M.M$
4043156.2M1030$4042132.M.M$4042132.2M$4042133.M1028$4041108.M.M$
4041108.2M$4041109.M1003$4040084.M$4040084.M.M$4040084.2M1041$
4039060.M$4039060.M.M$4039060.2M1021$4038036.M$4038036.M.M$4038036.2M
1039$4037012.M$4037012.M.M$4037012.2M1014$4035988.M$4035988.M.M$
4035988.2M1022$4034964.M$4034964.M.M$4034964.2M1034$4033940.M$
4033940.M.M$4033940.2M1019$4032916.M$4032916.M.M$4032916.2M1030$
4031892.M$4031892.M.M$4031892.2M1007$4030868.M$4030868.M.M$4030868.2M
1028$4029844.M$4029844.M.M$4029844.2M1032$4028820.M$4028820.M.M$
4028820.2M1012$4027796.M$4027796.M.M$4027796.2M1022$4026772.M$
4026772.M.M$4026772.2M1028$4025748.M.M$4025748.2M$4025749.M1042$
4024724.M.M$4024724.2M$4024725.M1015$4023700.M.M$4023700.2M$4023701.M
1018$4022676.M.M$4022676.2M$4022677.M1023$4021652.M$4021652.M.M$
4021652.2M1022$4020628.M$4020628.M.M$4020628.2M1001$4019604.M$
4019604.M.M$4019604.2M1020$4018580.M.M$4018580.2M$4018581.M1043$
4017556.M$4017556.M.M$4017556.2M1015$4016532.M$4016532.M.M$4016532.2M
1030$4015508.M$4015508.M.M$4015508.2M1017$4014484.M$4014484.M.M$
4014484.2M1004$4013460.M$4013460.M.M$4013460.2M1020$4012436.M$
4012436.M.M$4012436.2M1017$4011412.M.M$4011412.2M$4011413.M1056$
4010388.M$4010388.M.M$4010388.2M1012$4009364.M.M$4009364.2M$4009365.M
1008$4008340.M.M$4008340.2M$4008341.M1026$4007316.M.M$4007316.2M$
4007317.M1025$4006292.M.M$4006292.2M$4006293.M1014$4005268.M.M$
4005268.2M$4005269.M1024$4004244.M.M$4004244.2M$4004245.M990$4003220.
M$4003220.M.M$4003220.2M1026$4002196.M.M$4002196.2M$4002197.M1027$
4001172.M.M$4001172.2M$4001173.M1032$4000148.M.M$4000148.2M$4000149.M
1016$3999124.M.M$3999124.2M$3999125.M1007$3998100.M.M$3998100.2M$
3998101.M1029$3997076.M.M$3997076.2M$3997077.M1025$3996052.M.M$
3996052.2M$3996053.M1027$3995028.M$3995028.M.M$3995028.2M1021$
3994004.M$3994004.M.M$3994004.2M1020$3992980.M.M$3992980.2M$3992981.M
1020$3991956.M$3991956.M.M$3991956.2M1021$3990932.M$3990932.M.M$
3990932.2M1030$3989908.M$3989908.M.M$3989908.2M1018$3988884.M$
3988884.M.M$3988884.2M1031$3987860.M$3987860.M.M$3987860.2M1008$
3986836.M$3986836.M.M$3986836.2M1025$3985812.M$3985812.M.M$3985812.2M
1037$3984788.M$3984788.M.M$3984788.2M1024$3983764.M$3983764.M.M$
3983764.2M1020$3982740.M$3982740.M.M$3982740.2M1015$3981716.M$
3981716.M.M$3981716.2M1054$3980692.M$3980692.M.M$3980692.2M1013$
3979668.M.M$3979668.2M$3979669.M1003$3978644.M.M$3978644.2M$3978645.M
1032$3977620.M.M$3977620.2M$3977621.M1057$3976596.M$3976596.M.M$
3976596.2M1013$3975572.M$3975572.M.M$3975572.2M1029$3974548.M.M$
3974548.2M$3974549.M1026$3973524.M.M$3973524.2M$3973525.M1015$
3972500.M$3972500.M.M$3972500.2M1006$3971476.M$3971476.M.M$3971476.2M
1024$3970452.M$3970452.M.M$3970452.2M1005$3969428.M$3969428.M.M$
3969428.2M1015$3968404.M.M$3968404.2M$3968405.M1019$3967380.M.M$
3967380.2M$3967381.M1020$3966356.M$3966356.M.M$3966356.2M1020$
3965332.M$3965332.M.M$3965332.2M1019$3964308.M$3964308.M.M$3964308.2M
1024$3963284.M$3963284.M.M$3963284.2M1063$3962260.M$3962260.M.M$
3962260.2M1021$3961236.M$3961236.M.M$3961236.2M1018$3960212.M$
3960212.M.M$3960212.2M1022$3959188.M$3959188.M.M$3959188.2M1008$
3958164.M$3958164.M.M$3958164.2M1030$3957140.M$3957140.M.M$3957140.2M
1015$3956116.M$3956116.M.M$3956116.2M1035$3955092.M$3955092.M.M$
3955092.2M1030$3954068.M$3954068.M.M$3954068.2M1014$3953044.M$
3953044.M.M$3953044.2M1008$3952020.M$3952020.M.M$3952020.2M1040$
3950996.M$3950996.M.M$3950996.2M1023$3949972.M.M$3949972.2M$3949973.M
1026$3948948.M.M$3948948.2M$3948949.M1008$3947924.M$3947924.M.M$
3947924.2M1016$3946900.M$3946900.M.M$3946900.2M1024$3945876.M$
3945876.M.M$3945876.2M1019$3944852.M$3944852.M.M$3944852.2M1022$
3943828.M$3943828.M.M$3943828.2M979$3942804.M$3942804.M.M$3942804.2M
1035$3941780.M.M$3941780.2M$3941781.M1005$3940756.M.M$3940756.2M$
3940757.M1056$3939732.M.M$3939732.2M$3939733.M1020$3938708.M$3938708.
M.M$3938708.2M1018$3937684.M$3937684.M.M$3937684.2M1009$3936660.M.M$
3936660.2M$3936661.M1027$3935636.M.M$3935636.2M$3935637.M1013$
3934612.M$3934612.M.M$3934612.2M1023$3933588.M$3933588.M.M$3933588.2M
1025$3932564.M$3932564.M.M$3932564.2M1023$3931540.M$3931540.M.M$
3931540.2M1015$3930516.M$3930516.M.M$3930516.2M1009$3929492.M$
3929492.M.M$3929492.2M1030$3928468.M.M$3928468.2M$3928469.M1026$
3927444.M.M$3927444.2M$3927445.M1020$3926420.M$3926420.M.M$3926420.2M
1019$3925396.M.M$3925396.2M$3925397.M1034$3924372.M$3924372.M.M$
3924372.2M1011$3923348.M.M$3923348.2M$3923349.M1022$3922324.M$
3922324.M.M$3922324.2M1027$3921300.M$3921300.M.M$3921300.2M1019$
3920276.M$3920276.M.M$3920276.2M1022$3919252.M$3919252.M.M$3919252.2M
1033$3918228.M$3918228.M.M$3918228.2M1033$3917204.M$3917204.M.M$
3917204.2M1010$3916180.M.M$3916180.2M$3916181.M1035$3915156.M$
3915156.M.M$3915156.2M1019$3914132.M$3914132.M.M$3914132.2M1013$
3913108.M$3913108.M.M$3913108.2M1030$3912084.M.M$3912084.2M$3912085.M
1028$3911060.M.M$3911060.2M$3911061.M1003$3910036.M$3910036.M.M$
3910036.2M1041$3909012.M$3909012.M.M$3909012.2M1021$3907988.M$
3907988.M.M$3907988.2M1039$3906964.M$3906964.M.M$3906964.2M1014$
3905940.M$3905940.M.M$3905940.2M1022$3904916.M$3904916.M.M$3904916.2M
1034$3903892.M$3903892.M.M$3903892.2M1019$3902868.M$3902868.M.M$
3902868.2M1030$3901844.M$3901844.M.M$3901844.2M1007$3900820.M$
3900820.M.M$3900820.2M1028$3899796.M$3899796.M.M$3899796.2M1032$
3898772.M$3898772.M.M$3898772.2M1012$3897748.M$3897748.M.M$3897748.2M
1022$3896724.M$3896724.M.M$3896724.2M1028$3895700.M.M$3895700.2M$
3895701.M1042$3894676.M.M$3894676.2M$3894677.M1015$3893652.M.M$
3893652.2M$3893653.M1018$3892628.M.M$3892628.2M$3892629.M1023$
3891604.M$3891604.M.M$3891604.2M1022$3890580.M$3890580.M.M$3890580.2M
1001$3889556.M$3889556.M.M$3889556.2M1020$3888532.M.M$3888532.2M$
3888533.M1043$3887508.M$3887508.M.M$3887508.2M1015$3886484.M$3886484.
M.M$3886484.2M1030$3885460.M$3885460.M.M$3885460.2M1017$3884436.M$
3884436.M.M$3884436.2M1004$3883412.M$3883412.M.M$3883412.2M1020$
3882388.M$3882388.M.M$3882388.2M1017$3881364.M.M$3881364.2M$3881365.M
1056$3880340.M$3880340.M.M$3880340.2M1012$3879316.M.M$3879316.2M$
3879317.M1008$3878292.M.M$3878292.2M$3878293.M1026$3877268.M.M$
3877268.2M$3877269.M1025$3876244.M.M$3876244.2M$3876245.M1014$
3875220.M.M$3875220.2M$3875221.M1024$3874196.M.M$3874196.2M$3874197.M
990$3873172.M$3873172.M.M$3873172.2M1026$3872148.M.M$3872148.2M$
3872149.M1027$3871124.M.M$3871124.2M$3871125.M1032$3870100.M.M$
3870100.2M$3870101.M1016$3869076.M.M$3869076.2M$3869077.M1007$
3868052.M.M$3868052.2M$3868053.M1029$3867028.M.M$3867028.2M$3867029.M
1025$3866004.M.M$3866004.2M$3866005.M1027$3864980.M$3864980.M.M$
3864980.2M1021$3863956.M$3863956.M.M$3863956.2M1020$3862932.M.M$
3862932.2M$3862933.M1020$3861908.M$3861908.M.M$3861908.2M1021$
3860884.M$3860884.M.M$3860884.2M1030$3859860.M$3859860.M.M$3859860.2M
1018$3858836.M$3858836.M.M$3858836.2M1031$3857812.M$3857812.M.M$
3857812.2M1008$3856788.M$3856788.M.M$3856788.2M1025$3855764.M$
3855764.M.M$3855764.2M1037$3854740.M$3854740.M.M$3854740.2M1024$
3853716.M$3853716.M.M$3853716.2M1020$3852692.M$3852692.M.M$3852692.2M
1015$3851668.M$3851668.M.M$3851668.2M1054$3850644.M$3850644.M.M$
3850644.2M1013$3849620.M.M$3849620.2M$3849621.M1003$3848596.M.M$
3848596.2M$3848597.M1032$3847572.M.M$3847572.2M$3847573.M1057$
3846548.M$3846548.M.M$3846548.2M1013$3845524.M$3845524.M.M$3845524.2M
1029$3844500.M.M$3844500.2M$3844501.M1026$3843476.M.M$3843476.2M$
3843477.M1015$3842452.M$3842452.M.M$3842452.2M1006$3841428.M$3841428.
M.M$3841428.2M1024$3840404.M$3840404.M.M$3840404.2M1005$3839380.M$
3839380.M.M$3839380.2M1015$3838356.M.M$3838356.2M$3838357.M1019$
3837332.M.M$3837332.2M$3837333.M1019$3836308.M.M$3836308.2M$3836309.M
1020$3835284.M.M$3835284.2M$3835285.M1024$3834260.M$3834260.M.M$
3834260.2M1019$3833236.M.M$3833236.2M$3833237.M1017$3832212.M.M$
3832212.2M$3832213.M1024$3831188.M.M$3831188.2M$3831189.M1063$
3830164.M$3830164.M.M$3830164.2M1021$3829140.M$3829140.M.M$3829140.2M
1018$3828116.M$3828116.M.M$3828116.2M1022$3827092.M$3827092.M.M$
3827092.2M1008$3826068.M$3826068.M.M$3826068.2M1030$3825044.M$
3825044.M.M$3825044.2M1015$3824020.M$3824020.M.M$3824020.2M1035$
3822996.M$3822996.M.M$3822996.2M1030$3821972.M$3821972.M.M$3821972.2M
1014$3820948.M$3820948.M.M$3820948.2M1008$3819924.M$3819924.M.M$
3819924.2M1040$3818900.M$3818900.M.M$3818900.2M1023$3817876.M.M$
3817876.2M$3817877.M1026$3816852.M.M$3816852.2M$3816853.M1008$
3815828.M$3815828.M.M$3815828.2M1016$3814804.M$3814804.M.M$3814804.2M
1024$3813780.M$3813780.M.M$3813780.2M1019$3812756.M$3812756.M.M$
3812756.2M1022$3811732.M$3811732.M.M$3811732.2M979$3810708.M$3810708.
M.M$3810708.2M1035$3809684.M.M$3809684.2M$3809685.M1005$3808660.M.M$
3808660.2M$3808661.M1056$3807636.M.M$3807636.2M$3807637.M1020$
3806612.M$3806612.M.M$3806612.2M1018$3805588.M$3805588.M.M$3805588.2M
1009$3804564.M.M$3804564.2M$3804565.M1027$3803540.M.M$3803540.2M$
3803541.M1013$3802516.M$3802516.M.M$3802516.2M1023$3801492.M$3801492.
M.M$3801492.2M1025$3800468.M$3800468.M.M$3800468.2M1023$3799444.M$
3799444.M.M$3799444.2M1015$3798420.M$3798420.M.M$3798420.2M1009$
3797396.M$3797396.M.M$3797396.2M1030$3796372.M.M$3796372.2M$3796373.M
1026$3795348.M.M$3795348.2M$3795349.M1020$3794324.M$3794324.M.M$
3794324.2M1019$3793300.M.M$3793300.2M$3793301.M1034$3792276.M$
3792276.M.M$3792276.2M1011$3791252.M.M$3791252.2M$3791253.M1022$
3790228.M$3790228.M.M$3790228.2M1027$3789204.M$3789204.M.M$3789204.2M
1019$3788180.M$3788180.M.M$3788180.2M1022$3787156.M$3787156.M.M$
3787156.2M1033$3786132.M$3786132.M.M$3786132.2M1033$3785108.M$
3785108.M.M$3785108.2M1010$3784084.M.M$3784084.2M$3784085.M1035$
3783060.M$3783060.M.M$3783060.2M1019$3782036.M$3782036.M.M$3782036.2M
1013$3781012.M$3781012.M.M$3781012.2M1030$3779988.M.M$3779988.2M$
3779989.M1028$3778964.M.M$3778964.2M$3778965.M1003$3777940.M$3777940.
M.M$3777940.2M1041$3776916.M$3776916.M.M$3776916.2M1021$3775892.M$
3775892.M.M$3775892.2M1039$3774868.M$3774868.M.M$3774868.2M1014$
3773844.M$3773844.M.M$3773844.2M1022$3772820.M$3772820.M.M$3772820.2M
1034$3771796.M$3771796.M.M$3771796.2M1019$3770772.M$3770772.M.M$
3770772.2M1030$3769748.M$3769748.M.M$3769748.2M1007$3768724.M$
3768724.M.M$3768724.2M1028$3767700.M$3767700.M.M$3767700.2M1032$
3766676.M$3766676.M.M$3766676.2M1012$3765652.M$3765652.M.M$3765652.2M
1022$3764628.M$3764628.M.M$3764628.2M1028$3763604.M.M$3763604.2M$
3763605.M1042$3762580.M.M$3762580.2M$3762581.M1015$3761556.M.M$
3761556.2M$3761557.M1018$3760532.M.M$3760532.2M$3760533.M1023$
3759508.M$3759508.M.M$3759508.2M1022$3758484.M$3758484.M.M$3758484.2M
1001$3757460.M$3757460.M.M$3757460.2M1020$3756436.M.M$3756436.2M$
3756437.M1043$3755412.M$3755412.M.M$3755412.2M1015$3754388.M$3754388.
M.M$3754388.2M1030$3753364.M$3753364.M.M$3753364.2M1017$3752340.M$
3752340.M.M$3752340.2M1004$3751316.M$3751316.M.M$3751316.2M1020$
3750292.M$3750292.M.M$3750292.2M1017$3749268.M.M$3749268.2M$3749269.M
1056$3748244.M$3748244.M.M$3748244.2M1012$3747220.M.M$3747220.2M$
3747221.M1008$3746196.M.M$3746196.2M$3746197.M1026$3745172.M.M$
3745172.2M$3745173.M1025$3744148.M.M$3744148.2M$3744149.M1014$
3743124.M.M$3743124.2M$3743125.M1024$3742100.M.M$3742100.2M$3742101.M
990$3741076.M$3741076.M.M$3741076.2M1026$3740052.M.M$3740052.2M$
3740053.M1027$3739028.M.M$3739028.2M$3739029.M1032$3738004.M.M$
3738004.2M$3738005.M1016$3736980.M.M$3736980.2M$3736981.M1007$
3735956.M.M$3735956.2M$3735957.M1029$3734932.M.M$3734932.2M$3734933.M
1025$3733908.M.M$3733908.2M$3733909.M1027$3732884.M$3732884.M.M$
3732884.2M1021$3731860.M$3731860.M.M$3731860.2M1020$3730836.M.M$
3730836.2M$3730837.M1020$3729812.M$3729812.M.M$3729812.2M1021$
3728788.M$3728788.M.M$3728788.2M1030$3727764.M$3727764.M.M$3727764.2M
1018$3726740.M$3726740.M.M$3726740.2M1031$3725716.M$3725716.M.M$
3725716.2M1008$3724692.M$3724692.M.M$3724692.2M1025$3723668.M$
3723668.M.M$3723668.2M1037$3722644.M$3722644.M.M$3722644.2M1024$
3721620.M$3721620.M.M$3721620.2M1020$3720596.M$3720596.M.M$3720596.2M
1015$3719572.M$3719572.M.M$3719572.2M1054$3718548.M$3718548.M.M$
3718548.2M1013$3717524.M.M$3717524.2M$3717525.M1003$3716500.M.M$
3716500.2M$3716501.M1032$3715476.M.M$3715476.2M$3715477.M1057$
3714452.M$3714452.M.M$3714452.2M1013$3713428.M$3713428.M.M$3713428.2M
1029$3712404.M.M$3712404.2M$3712405.M1026$3711380.M.M$3711380.2M$
3711381.M1015$3710356.M$3710356.M.M$3710356.2M1006$3709332.M$3709332.
M.M$3709332.2M1024$3708308.M$3708308.M.M$3708308.2M1005$3707284.M$
3707284.M.M$3707284.2M1015$3706260.M.M$3706260.2M$3706261.M1019$
3705236.M.M$3705236.2M$3705237.M1019$3704212.M.M$3704212.2M$3704213.M
1019$3703188.M.M$3703188.2M$3703189.M1007$3702164.M.M$3702164.2M$
3702165.M1044$3701140.M$3701140.M.M$3701140.2M1007$3700116.M$3700116.
M.M$3700116.2M1030$3699092.M$3699092.M.M$3699092.2M1054$3698069.M$
3698067.2M$3698068.2M1021$3697044.M$3697044.M.M$3697044.2M1018$
3696020.M$3696020.M.M$3696020.2M1022$3694996.M$3694996.M.M$3694996.2M
1008$3693972.M$3693972.M.M$3693972.2M1030$3692948.M$3692948.M.M$
3692948.2M1015$3691924.M$3691924.M.M$3691924.2M1035$3690900.M$
3690900.M.M$3690900.2M1030$3689876.M$3689876.M.M$3689876.2M1014$
3688852.M$3688852.M.M$3688852.2M1008$3687828.M$3687828.M.M$3687828.2M
1040$3686804.M$3686804.M.M$3686804.2M1023$3685780.M.M$3685780.2M$
3685781.M1026$3684756.M.M$3684756.2M$3684757.M1008$3683732.M$3683732.
M.M$3683732.2M1016$3682708.M$3682708.M.M$3682708.2M1024$3681684.M$
3681684.M.M$3681684.2M1019$3680660.M$3680660.M.M$3680660.2M1022$
3679636.M$3679636.M.M$3679636.2M979$3678612.M$3678612.M.M$3678612.2M
1035$3677588.M.M$3677588.2M$3677589.M1005$3676564.M.M$3676564.2M$
3676565.M1056$3675540.M.M$3675540.2M$3675541.M1020$3674516.M$3674516.
M.M$3674516.2M1018$3673492.M$3673492.M.M$3673492.2M1009$3672468.M.M$
3672468.2M$3672469.M1027$3671444.M.M$3671444.2M$3671445.M1013$
3670420.M$3670420.M.M$3670420.2M1023$3669396.M$3669396.M.M$3669396.2M
1025$3668372.M$3668372.M.M$3668372.2M1023$3667348.M$3667348.M.M$
3667348.2M1015$3666324.M$3666324.M.M$3666324.2M1009$3665300.M$
3665300.M.M$3665300.2M1030$3664276.M.M$3664276.2M$3664277.M1026$
3663252.M.M$3663252.2M$3663253.M1020$3662228.M$3662228.M.M$3662228.2M
1019$3661204.M.M$3661204.2M$3661205.M1034$3660180.M$3660180.M.M$
3660180.2M1011$3659156.M.M$3659156.2M$3659157.M1022$3658132.M$
3658132.M.M$3658132.2M1027$3657108.M$3657108.M.M$3657108.2M1019$
3656084.M$3656084.M.M$3656084.2M1022$3655060.M$3655060.M.M$3655060.2M
1033$3654036.M$3654036.M.M$3654036.2M1033$3653012.M$3653012.M.M$
3653012.2M1010$3651988.M.M$3651988.2M$3651989.M1035$3650964.M$
3650964.M.M$3650964.2M1019$3649940.M$3649940.M.M$3649940.2M1013$
3648916.M$3648916.M.M$3648916.2M1030$3647892.M.M$3647892.2M$3647893.M
1028$3646868.M.M$3646868.2M$3646869.M1003$3645844.M$3645844.M.M$
3645844.2M1041$3644820.M$3644820.M.M$3644820.2M1021$3643796.M$
3643796.M.M$3643796.2M1039$3642772.M$3642772.M.M$3642772.2M1014$
3641748.M$3641748.M.M$3641748.2M1022$3640724.M$3640724.M.M$3640724.2M
1034$3639700.M$3639700.M.M$3639700.2M1019$3638676.M$3638676.M.M$
3638676.2M1030$3637652.M$3637652.M.M$3637652.2M1007$3636628.M$
3636628.M.M$3636628.2M1028$3635604.M$3635604.M.M$3635604.2M1032$
3634580.M$3634580.M.M$3634580.2M1012$3633556.M$3633556.M.M$3633556.2M
1022$3632532.M$3632532.M.M$3632532.2M1028$3631508.M.M$3631508.2M$
3631509.M1042$3630484.M.M$3630484.2M$3630485.M1015$3629460.M.M$
3629460.2M$3629461.M1018$3628436.M.M$3628436.2M$3628437.M1023$
3627412.M$3627412.M.M$3627412.2M1022$3626388.M$3626388.M.M$3626388.2M
1001$3625364.M$3625364.M.M$3625364.2M1020$3624340.M.M$3624340.2M$
3624341.M1043$3623316.M$3623316.M.M$3623316.2M1015$3622292.M$3622292.
M.M$3622292.2M1030$3621268.M$3621268.M.M$3621268.2M1017$3620244.M$
3620244.M.M$3620244.2M1004$3619220.M$3619220.M.M$3619220.2M1020$
3618196.M$3618196.M.M$3618196.2M1017$3617172.M.M$3617172.2M$3617173.M
1056$3616148.M$3616148.M.M$3616148.2M1012$3615124.M.M$3615124.2M$
3615125.M1008$3614100.M.M$3614100.2M$3614101.M1026$3613076.M.M$
3613076.2M$3613077.M1025$3612052.M.M$3612052.2M$3612053.M1014$
3611028.M.M$3611028.2M$3611029.M1024$3610004.M.M$3610004.2M$3610005.M
990$3608980.M$3608980.M.M$3608980.2M1026$3607956.M.M$3607956.2M$
3607957.M1027$3606932.M.M$3606932.2M$3606933.M1032$3605908.M.M$
3605908.2M$3605909.M1016$3604884.M.M$3604884.2M$3604885.M1007$
3603860.M.M$3603860.2M$3603861.M1029$3602836.M.M$3602836.2M$3602837.M
1025$3601812.M.M$3601812.2M$3601813.M1027$3600788.M$3600788.M.M$
3600788.2M1021$3599764.M$3599764.M.M$3599764.2M1020$3598740.M.M$
3598740.2M$3598741.M1020$3597716.M$3597716.M.M$3597716.2M1021$
3596692.M$3596692.M.M$3596692.2M1030$3595668.M$3595668.M.M$3595668.2M
1018$3594644.M$3594644.M.M$3594644.2M1031$3593620.M$3593620.M.M$
3593620.2M1008$3592596.M$3592596.M.M$3592596.2M1025$3591572.M$
3591572.M.M$3591572.2M1037$3590548.M$3590548.M.M$3590548.2M1024$
3589524.M$3589524.M.M$3589524.2M1020$3588500.M$3588500.M.M$3588500.2M
1015$3587476.M$3587476.M.M$3587476.2M1054$3586452.M$3586452.M.M$
3586452.2M1013$3585428.M.M$3585428.2M$3585429.M1003$3584404.M.M$
3584404.2M$3584405.M1032$3583380.M.M$3583380.2M$3583381.M1057$
3582356.M$3582356.M.M$3582356.2M1013$3581332.M$3581332.M.M$3581332.2M
1029$3580308.M.M$3580308.2M$3580309.M1026$3579284.M.M$3579284.2M$
3579285.M1015$3578260.M$3578260.M.M$3578260.2M1006$3577236.M$3577236.
M.M$3577236.2M1024$3576212.M$3576212.M.M$3576212.2M1005$3575188.M$
3575188.M.M$3575188.2M1015$3574164.M.M$3574164.2M$3574165.M1018$
3573140.M.M$3573140.2M$3573141.M1027$3572116.M.M$3572116.2M$3572117.M
1020$3571092.M$3571092.M.M$3571092.2M1022$3570068.M.M$3570068.2M$
3570069.M1017$3569044.M.M$3569044.2M$3569045.M1024$3568020.M.M$
3568020.2M$3568021.M1063$3566996.M$3566996.M.M$3566996.2M1021$
3565972.M$3565972.M.M$3565972.2M1018$3564948.M$3564948.M.M$3564948.2M
1022$3563924.M$3563924.M.M$3563924.2M1008$3562900.M$3562900.M.M$
3562900.2M1030$3561876.M$3561876.M.M$3561876.2M1015$3560852.M$
3560852.M.M$3560852.2M1035$3559828.M$3559828.M.M$3559828.2M1030$
3558804.M$3558804.M.M$3558804.2M1014$3557780.M$3557780.M.M$3557780.2M
1008$3556756.M$3556756.M.M$3556756.2M1040$3555732.M$3555732.M.M$
3555732.2M1023$3554708.M.M$3554708.2M$3554709.M1026$3553684.M.M$
3553684.2M$3553685.M1008$3552660.M$3552660.M.M$3552660.2M1016$
3551636.M$3551636.M.M$3551636.2M1024$3550612.M$3550612.M.M$3550612.2M
1019$3549588.M$3549588.M.M$3549588.2M1022$3548564.M$3548564.M.M$
3548564.2M979$3547540.M$3547540.M.M$3547540.2M1035$3546516.M.M$
3546516.2M$3546517.M1005$3545492.M.M$3545492.2M$3545493.M1056$
3544468.M.M$3544468.2M$3544469.M1020$3543444.M$3543444.M.M$3543444.2M
1018$3542420.M$3542420.M.M$3542420.2M1009$3541396.M.M$3541396.2M$
3541397.M1027$3540372.M.M$3540372.2M$3540373.M1013$3539348.M$3539348.
M.M$3539348.2M1023$3538324.M$3538324.M.M$3538324.2M1025$3537300.M$
3537300.M.M$3537300.2M1023$3536276.M$3536276.M.M$3536276.2M1015$
3535252.M$3535252.M.M$3535252.2M1009$3534228.M$3534228.M.M$3534228.2M
1030$3533204.M.M$3533204.2M$3533205.M1026$3532180.M.M$3532180.2M$
3532181.M1020$3531156.M$3531156.M.M$3531156.2M1019$3530132.M.M$
3530132.2M$3530133.M1034$3529108.M$3529108.M.M$3529108.2M1011$
3528084.M.M$3528084.2M$3528085.M1022$3527060.M$3527060.M.M$3527060.2M
1027$3526036.M$3526036.M.M$3526036.2M1019$3525012.M$3525012.M.M$
3525012.2M1022$3523988.M$3523988.M.M$3523988.2M1033$3522964.M$
3522964.M.M$3522964.2M1033$3521940.M$3521940.M.M$3521940.2M1010$
3520916.M.M$3520916.2M$3520917.M1035$3519892.M$3519892.M.M$3519892.2M
1019$3518868.M$3518868.M.M$3518868.2M1013$3517844.M$3517844.M.M$
3517844.2M1030$3516820.M.M$3516820.2M$3516821.M1028$3515796.M.M$
3515796.2M$3515797.M1003$3514772.M$3514772.M.M$3514772.2M1041$
3513748.M$3513748.M.M$3513748.2M1021$3512724.M$3512724.M.M$3512724.2M
1039$3511700.M$3511700.M.M$3511700.2M1014$3510676.M$3510676.M.M$
3510676.2M1022$3509652.M$3509652.M.M$3509652.2M1034$3508628.M$
3508628.M.M$3508628.2M1019$3507604.M$3507604.M.M$3507604.2M1030$
3506580.M$3506580.M.M$3506580.2M1007$3505556.M$3505556.M.M$3505556.2M
1028$3504532.M$3504532.M.M$3504532.2M1032$3503508.M$3503508.M.M$
3503508.2M1012$3502484.M$3502484.M.M$3502484.2M1022$3501460.M$
3501460.M.M$3501460.2M1028$3500436.M.M$3500436.2M$3500437.M1042$
3499412.M.M$3499412.2M$3499413.M1015$3498388.M.M$3498388.2M$3498389.M
1018$3497364.M.M$3497364.2M$3497365.M1023$3496340.M$3496340.M.M$
3496340.2M1022$3495316.M$3495316.M.M$3495316.2M1001$3494292.M$
3494292.M.M$3494292.2M1020$3493268.M.M$3493268.2M$3493269.M1043$
3492244.M$3492244.M.M$3492244.2M1015$3491220.M$3491220.M.M$3491220.2M
1030$3490196.M$3490196.M.M$3490196.2M1017$3489172.M$3489172.M.M$
3489172.2M1004$3488148.M$3488148.M.M$3488148.2M1020$3487124.M$
3487124.M.M$3487124.2M1017$3486100.M.M$3486100.2M$3486101.M1056$
3485076.M$3485076.M.M$3485076.2M1012$3484052.M.M$3484052.2M$3484053.M
1008$3483028.M.M$3483028.2M$3483029.M1026$3482004.M.M$3482004.2M$
3482005.M1025$3480980.M.M$3480980.2M$3480981.M1014$3479956.M.M$
3479956.2M$3479957.M1024$3478932.M.M$3478932.2M$3478933.M990$3477908.
M$3477908.M.M$3477908.2M1026$3476884.M.M$3476884.2M$3476885.M1027$
3475860.M.M$3475860.2M$3475861.M1032$3474836.M.M$3474836.2M$3474837.M
1016$3473812.M.M$3473812.2M$3473813.M1007$3472788.M.M$3472788.2M$
3472789.M1029$3471764.M.M$3471764.2M$3471765.M1025$3470740.M.M$
3470740.2M$3470741.M1027$3469716.M$3469716.M.M$3469716.2M1021$
3468692.M$3468692.M.M$3468692.2M1020$3467668.M.M$3467668.2M$3467669.M
1020$3466644.M$3466644.M.M$3466644.2M1021$3465620.M$3465620.M.M$
3465620.2M1030$3464596.M$3464596.M.M$3464596.2M1018$3463572.M$
3463572.M.M$3463572.2M1031$3462548.M$3462548.M.M$3462548.2M1008$
3461524.M$3461524.M.M$3461524.2M1025$3460500.M$3460500.M.M$3460500.2M
1037$3459476.M$3459476.M.M$3459476.2M1024$3458452.M$3458452.M.M$
3458452.2M1020$3457428.M$3457428.M.M$3457428.2M1015$3456404.M$
3456404.M.M$3456404.2M1054$3455380.M$3455380.M.M$3455380.2M1013$
3454356.M.M$3454356.2M$3454357.M1003$3453332.M.M$3453332.2M$3453333.M
1032$3452308.M.M$3452308.2M$3452309.M1057$3451284.M$3451284.M.M$
3451284.2M1013$3450260.M$3450260.M.M$3450260.2M1029$3449236.M.M$
3449236.2M$3449237.M1026$3448212.M.M$3448212.2M$3448213.M1015$
3447188.M$3447188.M.M$3447188.2M1006$3446164.M$3446164.M.M$3446164.2M
1024$3445140.M$3445140.M.M$3445140.2M1005$3444116.M$3444116.M.M$
3444116.2M1015$3443092.M.M$3443092.2M$3443093.M1019$3442068.M.M$
3442068.2M$3442069.M1008$3441044.M$3441044.M.M$3441044.2M1024$
3440020.M$3440020.M.M$3440020.2M1051$3438996.M.M$3438996.2M$3438997.M
996$3437972.M$3437972.M.M$3437972.2M1037$3436948.M$3436948.M.M$
3436948.2M1029$3435924.M$3435924.M.M$3435924.2M1013$3434900.M$
3434900.M.M$3434900.2M1054$3433876.M$3433876.M.M$3433876.2M1021$
3432852.M$3432852.M.M$3432852.2M1018$3431828.M$3431828.M.M$3431828.2M
1022$3430804.M$3430804.M.M$3430804.2M1008$3429780.M$3429780.M.M$
3429780.2M1030$3428756.M$3428756.M.M$3428756.2M1015$3427732.M$
3427732.M.M$3427732.2M1035$3426708.M$3426708.M.M$3426708.2M1030$
3425684.M$3425684.M.M$3425684.2M1014$3424660.M$3424660.M.M$3424660.2M
1008$3423636.M$3423636.M.M$3423636.2M1040$3422612.M$3422612.M.M$
3422612.2M1023$3421588.M.M$3421588.2M$3421589.M1026$3420564.M.M$
3420564.2M$3420565.M1008$3419540.M$3419540.M.M$3419540.2M1016$
3418516.M$3418516.M.M$3418516.2M1024$3417492.M$3417492.M.M$3417492.2M
1019$3416468.M$3416468.M.M$3416468.2M1022$3415444.M$3415444.M.M$
3415444.2M979$3414420.M$3414420.M.M$3414420.2M1035$3413396.M.M$
3413396.2M$3413397.M1005$3412372.M.M$3412372.2M$3412373.M1056$
3411348.M.M$3411348.2M$3411349.M1020$3410324.M$3410324.M.M$3410324.2M
1018$3409300.M$3409300.M.M$3409300.2M1009$3408276.M.M$3408276.2M$
3408277.M1027$3407252.M.M$3407252.2M$3407253.M1013$3406228.M$3406228.
M.M$3406228.2M1023$3405204.M$3405204.M.M$3405204.2M1025$3404180.M$
3404180.M.M$3404180.2M1023$3403156.M$3403156.M.M$3403156.2M1015$
3402132.M$3402132.M.M$3402132.2M1009$3401108.M$3401108.M.M$3401108.2M
1030$3400084.M.M$3400084.2M$3400085.M1026$3399060.M.M$3399060.2M$
3399061.M1020$3398036.M$3398036.M.M$3398036.2M1019$3397012.M.M$
3397012.2M$3397013.M1034$3395988.M$3395988.M.M$3395988.2M1011$
3394964.M.M$3394964.2M$3394965.M1022$3393940.M$3393940.M.M$3393940.2M
1027$3392916.M$3392916.M.M$3392916.2M1019$3391892.M$3391892.M.M$
3391892.2M1022$3390868.M$3390868.M.M$3390868.2M1033$3389844.M$
3389844.M.M$3389844.2M1033$3388820.M$3388820.M.M$3388820.2M1010$
3387796.M.M$3387796.2M$3387797.M1035$3386772.M$3386772.M.M$3386772.2M
1019$3385748.M$3385748.M.M$3385748.2M1013$3384724.M$3384724.M.M$
3384724.2M1030$3383700.M.M$3383700.2M$3383701.M1028$3382676.M.M$
3382676.2M$3382677.M1003$3381652.M$3381652.M.M$3381652.2M1041$
3380628.M$3380628.M.M$3380628.2M1021$3379604.M$3379604.M.M$3379604.2M
1039$3378580.M$3378580.M.M$3378580.2M1014$3377556.M$3377556.M.M$
3377556.2M1022$3376532.M$3376532.M.M$3376532.2M1034$3375508.M$
3375508.M.M$3375508.2M1019$3374484.M$3374484.M.M$3374484.2M1030$
3373460.M$3373460.M.M$3373460.2M1007$3372436.M$3372436.M.M$3372436.2M
1028$3371412.M$3371412.M.M$3371412.2M1032$3370388.M$3370388.M.M$
3370388.2M1012$3369364.M$3369364.M.M$3369364.2M1022$3368340.M$
3368340.M.M$3368340.2M1028$3367316.M.M$3367316.2M$3367317.M1042$
3366292.M.M$3366292.2M$3366293.M1015$3365268.M.M$3365268.2M$3365269.M
1018$3364244.M.M$3364244.2M$3364245.M1023$3363220.M$3363220.M.M$
3363220.2M1022$3362196.M$3362196.M.M$3362196.2M1001$3361172.M$
3361172.M.M$3361172.2M1020$3360148.M.M$3360148.2M$3360149.M1043$
3359124.M$3359124.M.M$3359124.2M1015$3358100.M$3358100.M.M$3358100.2M
1030$3357076.M$3357076.M.M$3357076.2M1017$3356052.M$3356052.M.M$
3356052.2M1004$3355028.M$3355028.M.M$3355028.2M1020$3354004.M$
3354004.M.M$3354004.2M1017$3352980.M.M$3352980.2M$3352981.M1056$
3351956.M$3351956.M.M$3351956.2M1012$3350932.M.M$3350932.2M$3350933.M
1008$3349908.M.M$3349908.2M$3349909.M1026$3348884.M.M$3348884.2M$
3348885.M1025$3347860.M.M$3347860.2M$3347861.M1014$3346836.M.M$
3346836.2M$3346837.M1024$3345812.M.M$3345812.2M$3345813.M990$3344788.
M$3344788.M.M$3344788.2M1026$3343764.M.M$3343764.2M$3343765.M1027$
3342740.M.M$3342740.2M$3342741.M1032$3341716.M.M$3341716.2M$3341717.M
1016$3340692.M.M$3340692.2M$3340693.M1007$3339668.M.M$3339668.2M$
3339669.M1029$3338644.M.M$3338644.2M$3338645.M1025$3337620.M.M$
3337620.2M$3337621.M1027$3336596.M$3336596.M.M$3336596.2M1021$
3335572.M$3335572.M.M$3335572.2M1020$3334548.M.M$3334548.2M$3334549.M
1020$3333524.M$3333524.M.M$3333524.2M1021$3332500.M$3332500.M.M$
3332500.2M1030$3331476.M$3331476.M.M$3331476.2M1018$3330452.M$
3330452.M.M$3330452.2M1031$3329428.M$3329428.M.M$3329428.2M1008$
3328404.M$3328404.M.M$3328404.2M1025$3327380.M$3327380.M.M$3327380.2M
1037$3326356.M$3326356.M.M$3326356.2M1024$3325332.M$3325332.M.M$
3325332.2M1020$3324308.M$3324308.M.M$3324308.2M1015$3323284.M$
3323284.M.M$3323284.2M1054$3322260.M$3322260.M.M$3322260.2M1013$
3321236.M.M$3321236.2M$3321237.M1003$3320212.M.M$3320212.2M$3320213.M
1032$3319188.M.M$3319188.2M$3319189.M1057$3318164.M$3318164.M.M$
3318164.2M1013$3317140.M$3317140.M.M$3317140.2M1029$3316116.M.M$
3316116.2M$3316117.M1026$3315092.M.M$3315092.2M$3315093.M1015$
3314068.M$3314068.M.M$3314068.2M1006$3313044.M$3313044.M.M$3313044.2M
1024$3312020.M$3312020.M.M$3312020.2M1005$3310996.M$3310996.M.M$
3310996.2M1015$3309972.M.M$3309972.2M$3309973.M1018$3308948.M.M$
3308948.2M$3308949.M1030$3307924.M.M$3307924.2M$3307925.M1024$
3306900.M.M$3306900.2M$3306901.M1009$3305876.M.M$3305876.2M$3305877.M
1024$3304852.M.M$3304852.2M$3304853.M1026$3303828.M.M$3303828.2M$
3303829.M1026$3302804.M.M$3302804.2M$3302805.M1054$3301781.M$3301779.
2M$3301780.2M1021$3300756.M$3300756.M.M$3300756.2M1018$3299732.M$
3299732.M.M$3299732.2M1022$3298708.M$3298708.M.M$3298708.2M1008$
3297684.M$3297684.M.M$3297684.2M1030$3296660.M$3296660.M.M$3296660.2M
1015$3295636.M$3295636.M.M$3295636.2M1035$3294612.M$3294612.M.M$
3294612.2M1030$3293588.M$3293588.M.M$3293588.2M1014$3292564.M$
3292564.M.M$3292564.2M1008$3291540.M$3291540.M.M$3291540.2M1040$
3290516.M$3290516.M.M$3290516.2M1023$3289492.M.M$3289492.2M$3289493.M
1026$3288468.M.M$3288468.2M$3288469.M1008$3287444.M$3287444.M.M$
3287444.2M1016$3286420.M$3286420.M.M$3286420.2M1024$3285396.M$
3285396.M.M$3285396.2M1019$3284372.M$3284372.M.M$3284372.2M1022$
3283348.M$3283348.M.M$3283348.2M979$3282324.M$3282324.M.M$3282324.2M
1035$3281300.M.M$3281300.2M$3281301.M1005$3280276.M.M$3280276.2M$
3280277.M1056$3279252.M.M$3279252.2M$3279253.M1020$3278228.M$3278228.
M.M$3278228.2M1018$3277204.M$3277204.M.M$3277204.2M1009$3276180.M.M$
3276180.2M$3276181.M1027$3275156.M.M$3275156.2M$3275157.M1013$
3274132.M$3274132.M.M$3274132.2M1023$3273108.M$3273108.M.M$3273108.2M
1025$3272084.M$3272084.M.M$3272084.2M1023$3271060.M$3271060.M.M$
3271060.2M1015$3270036.M$3270036.M.M$3270036.2M1009$3269012.M$
3269012.M.M$3269012.2M1030$3267988.M.M$3267988.2M$3267989.M1026$
3266964.M.M$3266964.2M$3266965.M1020$3265940.M$3265940.M.M$3265940.2M
1019$3264916.M.M$3264916.2M$3264917.M1034$3263892.M$3263892.M.M$
3263892.2M1011$3262868.M.M$3262868.2M$3262869.M1022$3261844.M$
3261844.M.M$3261844.2M1027$3260820.M$3260820.M.M$3260820.2M1019$
3259796.M$3259796.M.M$3259796.2M1022$3258772.M$3258772.M.M$3258772.2M
1033$3257748.M$3257748.M.M$3257748.2M1033$3256724.M$3256724.M.M$
3256724.2M1010$3255700.M.M$3255700.2M$3255701.M1035$3254676.M$
3254676.M.M$3254676.2M1019$3253652.M$3253652.M.M$3253652.2M1013$
3252628.M$3252628.M.M$3252628.2M1030$3251604.M.M$3251604.2M$3251605.M
1028$3250580.M.M$3250580.2M$3250581.M1003$3249556.M$3249556.M.M$
3249556.2M1041$3248532.M$3248532.M.M$3248532.2M1021$3247508.M$
3247508.M.M$3247508.2M1039$3246484.M$3246484.M.M$3246484.2M1014$
3245460.M$3245460.M.M$3245460.2M1022$3244436.M$3244436.M.M$3244436.2M
1034$3243412.M$3243412.M.M$3243412.2M1019$3242388.M$3242388.M.M$
3242388.2M1030$3241364.M$3241364.M.M$3241364.2M1007$3240340.M$
3240340.M.M$3240340.2M1028$3239316.M$3239316.M.M$3239316.2M1032$
3238292.M$3238292.M.M$3238292.2M1012$3237268.M$3237268.M.M$3237268.2M
1022$3236244.M$3236244.M.M$3236244.2M1028$3235220.M.M$3235220.2M$
3235221.M1042$3234196.M.M$3234196.2M$3234197.M1015$3233172.M.M$
3233172.2M$3233173.M1018$3232148.M.M$3232148.2M$3232149.M1023$
3231124.M$3231124.M.M$3231124.2M1022$3230100.M$3230100.M.M$3230100.2M
1001$3229076.M$3229076.M.M$3229076.2M1020$3228052.M.M$3228052.2M$
3228053.M1043$3227028.M$3227028.M.M$3227028.2M1015$3226004.M$3226004.
M.M$3226004.2M1030$3224980.M$3224980.M.M$3224980.2M1017$3223956.M$
3223956.M.M$3223956.2M1004$3222932.M$3222932.M.M$3222932.2M1020$
3221908.M$3221908.M.M$3221908.2M1017$3220884.M.M$3220884.2M$3220885.M
1056$3219860.M$3219860.M.M$3219860.2M1012$3218836.M.M$3218836.2M$
3218837.M1008$3217812.M.M$3217812.2M$3217813.M1026$3216788.M.M$
3216788.2M$3216789.M1025$3215764.M.M$3215764.2M$3215765.M1014$
3214740.M.M$3214740.2M$3214741.M1024$3213716.M.M$3213716.2M$3213717.M
990$3212692.M$3212692.M.M$3212692.2M1026$3211668.M.M$3211668.2M$
3211669.M1027$3210644.M.M$3210644.2M$3210645.M1032$3209620.M.M$
3209620.2M$3209621.M1016$3208596.M.M$3208596.2M$3208597.M1007$
3207572.M.M$3207572.2M$3207573.M1029$3206548.M.M$3206548.2M$3206549.M
1025$3205524.M.M$3205524.2M$3205525.M1027$3204500.M$3204500.M.M$
3204500.2M1021$3203476.M$3203476.M.M$3203476.2M1020$3202452.M.M$
3202452.2M$3202453.M1020$3201428.M$3201428.M.M$3201428.2M1021$
3200404.M$3200404.M.M$3200404.2M1030$3199380.M$3199380.M.M$3199380.2M
1018$3198356.M$3198356.M.M$3198356.2M1031$3197332.M$3197332.M.M$
3197332.2M1008$3196308.M$3196308.M.M$3196308.2M1025$3195284.M$
3195284.M.M$3195284.2M1037$3194260.M$3194260.M.M$3194260.2M1024$
3193236.M$3193236.M.M$3193236.2M1020$3192212.M$3192212.M.M$3192212.2M
1015$3191188.M$3191188.M.M$3191188.2M1054$3190164.M$3190164.M.M$
3190164.2M1013$3189140.M.M$3189140.2M$3189141.M1003$3188116.M.M$
3188116.2M$3188117.M1032$3187092.M.M$3187092.2M$3187093.M1057$
3186068.M$3186068.M.M$3186068.2M1013$3185044.M$3185044.M.M$3185044.2M
1029$3184020.M.M$3184020.2M$3184021.M1026$3182996.M.M$3182996.2M$
3182997.M1015$3181972.M$3181972.M.M$3181972.2M1006$3180948.M$3180948.
M.M$3180948.2M1024$3179924.M$3179924.M.M$3179924.2M1005$3178900.M$
3178900.M.M$3178900.2M1015$3177876.M.M$3177876.2M$3177877.M1019$
3176852.M.M$3176852.2M$3176853.M1014$3175828.M.M$3175828.2M$3175829.M
1020$3174804.M.M$3174804.2M$3174805.M1035$3173780.M.M$3173780.2M$
3173781.M1020$3172756.M.M$3172756.2M$3172757.M1018$3171732.M.M$
3171732.2M$3171733.M1019$3170708.M.M$3170708.2M$3170709.M1054$
3169684.M$3169684.M.M$3169684.2M1021$3168660.M$3168660.M.M$3168660.2M
1018$3167636.M$3167636.M.M$3167636.2M1022$3166612.M$3166612.M.M$
3166612.2M1008$3165588.M$3165588.M.M$3165588.2M1030$3164564.M$
3164564.M.M$3164564.2M1015$3163540.M$3163540.M.M$3163540.2M1035$
3162516.M$3162516.M.M$3162516.2M1030$3161492.M$3161492.M.M$3161492.2M
1014$3160468.M$3160468.M.M$3160468.2M1008$3159444.M$3159444.M.M$
3159444.2M1040$3158420.M$3158420.M.M$3158420.2M1023$3157396.M.M$
3157396.2M$3157397.M1026$3156372.M.M$3156372.2M$3156373.M1008$
3155348.M$3155348.M.M$3155348.2M1016$3154324.M$3154324.M.M$3154324.2M
1024$3153300.M$3153300.M.M$3153300.2M1019$3152276.M$3152276.M.M$
3152276.2M1022$3151252.M$3151252.M.M$3151252.2M979$3150228.M$3150228.
M.M$3150228.2M1035$3149204.M.M$3149204.2M$3149205.M1005$3148180.M.M$
3148180.2M$3148181.M1056$3147156.M.M$3147156.2M$3147157.M1020$
3146132.M$3146132.M.M$3146132.2M1018$3145108.M$3145108.M.M$3145108.2M
1009$3144084.M.M$3144084.2M$3144085.M1027$3143060.M.M$3143060.2M$
3143061.M1013$3142036.M$3142036.M.M$3142036.2M1023$3141012.M$3141012.
M.M$3141012.2M1025$3139988.M$3139988.M.M$3139988.2M1023$3138964.M$
3138964.M.M$3138964.2M1015$3137940.M$3137940.M.M$3137940.2M1009$
3136916.M$3136916.M.M$3136916.2M1030$3135892.M.M$3135892.2M$3135893.M
1026$3134868.M.M$3134868.2M$3134869.M1020$3133844.M$3133844.M.M$
3133844.2M1019$3132820.M.M$3132820.2M$3132821.M1034$3131796.M$
3131796.M.M$3131796.2M1011$3130772.M.M$3130772.2M$3130773.M1022$
3129748.M$3129748.M.M$3129748.2M1027$3128724.M$3128724.M.M$3128724.2M
1019$3127700.M$3127700.M.M$3127700.2M1022$3126676.M$3126676.M.M$
3126676.2M1033$3125652.M$3125652.M.M$3125652.2M1033$3124628.M$
3124628.M.M$3124628.2M1010$3123604.M.M$3123604.2M$3123605.M1035$
3122580.M$3122580.M.M$3122580.2M1019$3121556.M$3121556.M.M$3121556.2M
1013$3120532.M$3120532.M.M$3120532.2M1030$3119508.M.M$3119508.2M$
3119509.M1028$3118484.M.M$3118484.2M$3118485.M1003$3117460.M$3117460.
M.M$3117460.2M1041$3116436.M$3116436.M.M$3116436.2M1021$3115412.M$
3115412.M.M$3115412.2M1039$3114388.M$3114388.M.M$3114388.2M1014$
3113364.M$3113364.M.M$3113364.2M1022$3112340.M$3112340.M.M$3112340.2M
1034$3111316.M$3111316.M.M$3111316.2M1019$3110292.M$3110292.M.M$
3110292.2M1030$3109268.M$3109268.M.M$3109268.2M1007$3108244.M$
3108244.M.M$3108244.2M1028$3107220.M$3107220.M.M$3107220.2M1032$
3106196.M$3106196.M.M$3106196.2M1012$3105172.M$3105172.M.M$3105172.2M
1022$3104148.M$3104148.M.M$3104148.2M1028$3103124.M.M$3103124.2M$
3103125.M1042$3102100.M.M$3102100.2M$3102101.M1015$3101076.M.M$
3101076.2M$3101077.M1018$3100052.M.M$3100052.2M$3100053.M1023$
3099028.M$3099028.M.M$3099028.2M1022$3098004.M$3098004.M.M$3098004.2M
1001$3096980.M$3096980.M.M$3096980.2M1020$3095956.M.M$3095956.2M$
3095957.M1043$3094932.M$3094932.M.M$3094932.2M1015$3093908.M$3093908.
M.M$3093908.2M1030$3092884.M$3092884.M.M$3092884.2M1017$3091860.M$
3091860.M.M$3091860.2M1004$3090836.M$3090836.M.M$3090836.2M1020$
3089812.M$3089812.M.M$3089812.2M1017$3088788.M.M$3088788.2M$3088789.M
1056$3087764.M$3087764.M.M$3087764.2M1012$3086740.M.M$3086740.2M$
3086741.M1008$3085716.M.M$3085716.2M$3085717.M1026$3084692.M.M$
3084692.2M$3084693.M1025$3083668.M.M$3083668.2M$3083669.M1014$
3082644.M.M$3082644.2M$3082645.M1024$3081620.M.M$3081620.2M$3081621.M
990$3080596.M$3080596.M.M$3080596.2M1026$3079572.M.M$3079572.2M$
3079573.M1027$3078548.M.M$3078548.2M$3078549.M1032$3077524.M.M$
3077524.2M$3077525.M1016$3076500.M.M$3076500.2M$3076501.M1007$
3075476.M.M$3075476.2M$3075477.M1029$3074452.M.M$3074452.2M$3074453.M
1025$3073428.M.M$3073428.2M$3073429.M1027$3072404.M$3072404.M.M$
3072404.2M1021$3071380.M$3071380.M.M$3071380.2M1020$3070356.M.M$
3070356.2M$3070357.M1020$3069332.M$3069332.M.M$3069332.2M1021$
3068308.M$3068308.M.M$3068308.2M1030$3067284.M$3067284.M.M$3067284.2M
1018$3066260.M$3066260.M.M$3066260.2M1031$3065236.M$3065236.M.M$
3065236.2M1008$3064212.M$3064212.M.M$3064212.2M1025$3063188.M$
3063188.M.M$3063188.2M1037$3062164.M$3062164.M.M$3062164.2M1024$
3061140.M$3061140.M.M$3061140.2M1020$3060116.M$3060116.M.M$3060116.2M
1015$3059092.M$3059092.M.M$3059092.2M1054$3058068.M$3058068.M.M$
3058068.2M1013$3057044.M.M$3057044.2M$3057045.M1003$3056020.M.M$
3056020.2M$3056021.M1032$3054996.M.M$3054996.2M$3054997.M1057$
3053972.M$3053972.M.M$3053972.2M1013$3052948.M$3052948.M.M$3052948.2M
1029$3051924.M.M$3051924.2M$3051925.M1026$3050900.M.M$3050900.2M$
3050901.M1015$3049876.M$3049876.M.M$3049876.2M1006$3048852.M$3048852.
M.M$3048852.2M1024$3047828.M$3047828.M.M$3047828.2M1005$3046804.M$
3046804.M.M$3046804.2M1015$3045780.M.M$3045780.2M$3045781.M1019$
3044756.M.M$3044756.2M$3044757.M1011$3043732.M$3043732.M.M$3043732.2M
1020$3042708.M$3042708.M.M$3042708.2M1023$3041684.M$3041684.M.M$
3041684.2M1029$3040660.M$3040660.M.M$3040660.2M1029$3039636.M$
3039636.M.M$3039636.2M1012$3038612.M$3038612.M.M$3038612.2M1063$
3037589.M$3037587.2M$3037588.2M1021$3036564.M$3036564.M.M$3036564.2M
1018$3035540.M$3035540.M.M$3035540.2M1022$3034516.M$3034516.M.M$
3034516.2M1008$3033492.M$3033492.M.M$3033492.2M1030$3032468.M$
3032468.M.M$3032468.2M1015$3031444.M$3031444.M.M$3031444.2M1035$
3030420.M$3030420.M.M$3030420.2M1030$3029396.M$3029396.M.M$3029396.2M
1014$3028372.M$3028372.M.M$3028372.2M1008$3027348.M$3027348.M.M$
3027348.2M1040$3026324.M$3026324.M.M$3026324.2M1023$3025300.M.M$
3025300.2M$3025301.M1026$3024276.M.M$3024276.2M$3024277.M1008$
3023252.M$3023252.M.M$3023252.2M1016$3022228.M$3022228.M.M$3022228.2M
1024$3021204.M$3021204.M.M$3021204.2M1019$3020180.M$3020180.M.M$
3020180.2M1022$3019156.M$3019156.M.M$3019156.2M979$3018132.M$3018132.
M.M$3018132.2M1035$3017108.M.M$3017108.2M$3017109.M1005$3016084.M.M$
3016084.2M$3016085.M1056$3015060.M.M$3015060.2M$3015061.M1020$
3014036.M$3014036.M.M$3014036.2M1018$3013012.M$3013012.M.M$3013012.2M
1009$3011988.M.M$3011988.2M$3011989.M1027$3010964.M.M$3010964.2M$
3010965.M1013$3009940.M$3009940.M.M$3009940.2M1023$3008916.M$3008916.
M.M$3008916.2M1025$3007892.M$3007892.M.M$3007892.2M1023$3006868.M$
3006868.M.M$3006868.2M1015$3005844.M$3005844.M.M$3005844.2M1009$
3004820.M$3004820.M.M$3004820.2M1030$3003796.M.M$3003796.2M$3003797.M
1026$3002772.M.M$3002772.2M$3002773.M1020$3001748.M$3001748.M.M$
3001748.2M1019$3000724.M.M$3000724.2M$3000725.M1034$2999700.M$
2999700.M.M$2999700.2M1011$2998676.M.M$2998676.2M$2998677.M1022$
2997652.M$2997652.M.M$2997652.2M1027$2996628.M$2996628.M.M$2996628.2M
1019$2995604.M$2995604.M.M$2995604.2M1022$2994580.M$2994580.M.M$
2994580.2M1033$2993556.M$2993556.M.M$2993556.2M1033$2992532.M$
2992532.M.M$2992532.2M1010$2991508.M.M$2991508.2M$2991509.M1035$
2990484.M$2990484.M.M$2990484.2M1019$2989460.M$2989460.M.M$2989460.2M
1013$2988436.M$2988436.M.M$2988436.2M1030$2987412.M.M$2987412.2M$
2987413.M1028$2986388.M.M$2986388.2M$2986389.M1003$2985364.M$2985364.
M.M$2985364.2M1041$2984340.M$2984340.M.M$2984340.2M1021$2983316.M$
2983316.M.M$2983316.2M1039$2982292.M$2982292.M.M$2982292.2M1014$
2981268.M$2981268.M.M$2981268.2M1022$2980244.M$2980244.M.M$2980244.2M
1034$2979220.M$2979220.M.M$2979220.2M1019$2978196.M$2978196.M.M$
2978196.2M1030$2977172.M$2977172.M.M$2977172.2M1007$2976148.M$
2976148.M.M$2976148.2M1028$2975124.M$2975124.M.M$2975124.2M1032$
2974100.M$2974100.M.M$2974100.2M1012$2973076.M$2973076.M.M$2973076.2M
1022$2972052.M$2972052.M.M$2972052.2M1028$2971028.M.M$2971028.2M$
2971029.M1042$2970004.M.M$2970004.2M$2970005.M1015$2968980.M.M$
2968980.2M$2968981.M1018$2967956.M.M$2967956.2M$2967957.M1023$
2966932.M$2966932.M.M$2966932.2M1022$2965908.M$2965908.M.M$2965908.2M
1001$2964884.M$2964884.M.M$2964884.2M1020$2963860.M.M$2963860.2M$
2963861.M1043$2962836.M$2962836.M.M$2962836.2M1015$2961812.M$2961812.
M.M$2961812.2M1030$2960788.M$2960788.M.M$2960788.2M1017$2959764.M$
2959764.M.M$2959764.2M1004$2958740.M$2958740.M.M$2958740.2M1020$
2957716.M$2957716.M.M$2957716.2M1017$2956692.M.M$2956692.2M$2956693.M
1056$2955668.M$2955668.M.M$2955668.2M1012$2954644.M.M$2954644.2M$
2954645.M1008$2953620.M.M$2953620.2M$2953621.M1026$2952596.M.M$
2952596.2M$2952597.M1025$2951572.M.M$2951572.2M$2951573.M1014$
2950548.M.M$2950548.2M$2950549.M1024$2949524.M.M$2949524.2M$2949525.M
990$2948500.M$2948500.M.M$2948500.2M1026$2947476.M.M$2947476.2M$
2947477.M1027$2946452.M.M$2946452.2M$2946453.M1032$2945428.M.M$
2945428.2M$2945429.M1016$2944404.M.M$2944404.2M$2944405.M1007$
2943380.M.M$2943380.2M$2943381.M1029$2942356.M.M$2942356.2M$2942357.M
1025$2941332.M.M$2941332.2M$2941333.M1027$2940308.M$2940308.M.M$
2940308.2M1021$2939284.M$2939284.M.M$2939284.2M1020$2938260.M.M$
2938260.2M$2938261.M1020$2937236.M$2937236.M.M$2937236.2M1021$
2936212.M$2936212.M.M$2936212.2M1030$2935188.M$2935188.M.M$2935188.2M
1018$2934164.M$2934164.M.M$2934164.2M1031$2933140.M$2933140.M.M$
2933140.2M1008$2932116.M$2932116.M.M$2932116.2M1025$2931092.M$
2931092.M.M$2931092.2M1037$2930068.M$2930068.M.M$2930068.2M1024$
2929044.M$2929044.M.M$2929044.2M1020$2928020.M$2928020.M.M$2928020.2M
1015$2926996.M$2926996.M.M$2926996.2M1054$2925972.M$2925972.M.M$
2925972.2M1013$2924948.M.M$2924948.2M$2924949.M1003$2923924.M.M$
2923924.2M$2923925.M1032$2922900.M.M$2922900.2M$2922901.M1057$
2921876.M$2921876.M.M$2921876.2M1013$2920852.M$2920852.M.M$2920852.2M
1029$2919828.M.M$2919828.2M$2919829.M1026$2918804.M.M$2918804.2M$
2918805.M1015$2917780.M$2917780.M.M$2917780.2M1006$2916756.M$2916756.
M.M$2916756.2M1024$2915732.M$2915732.M.M$2915732.2M1005$2914708.M$
2914708.M.M$2914708.2M1015$2913684.M.M$2913684.2M$2913685.M1019$
2912660.M.M$2912660.2M$2912661.M1008$2911636.M$2911636.M.M$2911636.2M
1024$2910612.M$2910612.M.M$2910612.2M1051$2909588.M.M$2909588.2M$
2909589.M996$2908564.M$2908564.M.M$2908564.2M1037$2907540.M$2907540.M
.M$2907540.2M1029$2906516.M$2906516.M.M$2906516.2M1013$2905492.M$
2905492.M.M$2905492.2M1054$2904469.M$2904467.2M$2904468.2M1021$
2903444.M$2903444.M.M$2903444.2M1018$2902420.M$2902420.M.M$2902420.2M
1022$2901396.M$2901396.M.M$2901396.2M1008$2900372.M$2900372.M.M$
2900372.2M1030$2899348.M$2899348.M.M$2899348.2M1015$2898324.M$
2898324.M.M$2898324.2M1035$2897300.M$2897300.M.M$2897300.2M1030$
2896276.M$2896276.M.M$2896276.2M1014$2895252.M$2895252.M.M$2895252.2M
1008$2894228.M$2894228.M.M$2894228.2M1040$2893204.M$2893204.M.M$
2893204.2M1023$2892180.M.M$2892180.2M$2892181.M1026$2891156.M.M$
2891156.2M$2891157.M1008$2890132.M$2890132.M.M$2890132.2M1016$
2889108.M$2889108.M.M$2889108.2M1024$2888084.M$2888084.M.M$2888084.2M
1019$2887060.M$2887060.M.M$2887060.2M1022$2886036.M$2886036.M.M$
2886036.2M979$2885012.M$2885012.M.M$2885012.2M1035$2883988.M.M$
2883988.2M$2883989.M1005$2882964.M.M$2882964.2M$2882965.M1056$
2881940.M.M$2881940.2M$2881941.M1020$2880916.M$2880916.M.M$2880916.2M
1018$2879892.M$2879892.M.M$2879892.2M1009$2878868.M.M$2878868.2M$
2878869.M1027$2877844.M.M$2877844.2M$2877845.M1013$2876820.M$2876820.
M.M$2876820.2M1023$2875796.M$2875796.M.M$2875796.2M1025$2874772.M$
2874772.M.M$2874772.2M1023$2873748.M$2873748.M.M$2873748.2M1015$
2872724.M$2872724.M.M$2872724.2M1009$2871700.M$2871700.M.M$2871700.2M
1030$2870676.M.M$2870676.2M$2870677.M1026$2869652.M.M$2869652.2M$
2869653.M1020$2868628.M$2868628.M.M$2868628.2M1019$2867604.M.M$
2867604.2M$2867605.M1034$2866580.M$2866580.M.M$2866580.2M1011$
2865556.M.M$2865556.2M$2865557.M1022$2864532.M$2864532.M.M$2864532.2M
1027$2863508.M$2863508.M.M$2863508.2M1019$2862484.M$2862484.M.M$
2862484.2M1022$2861460.M$2861460.M.M$2861460.2M1033$2860436.M$
2860436.M.M$2860436.2M1033$2859412.M$2859412.M.M$2859412.2M1010$
2858388.M.M$2858388.2M$2858389.M1035$2857364.M$2857364.M.M$2857364.2M
1019$2856340.M$2856340.M.M$2856340.2M1013$2855316.M$2855316.M.M$
2855316.2M1030$2854292.M.M$2854292.2M$2854293.M1028$2853268.M.M$
2853268.2M$2853269.M1003$2852244.M$2852244.M.M$2852244.2M1041$
2851220.M$2851220.M.M$2851220.2M1021$2850196.M$2850196.M.M$2850196.2M
1039$2849172.M$2849172.M.M$2849172.2M1014$2848148.M$2848148.M.M$
2848148.2M1022$2847124.M$2847124.M.M$2847124.2M1034$2846100.M$
2846100.M.M$2846100.2M1019$2845076.M$2845076.M.M$2845076.2M1030$
2844052.M$2844052.M.M$2844052.2M1007$2843028.M$2843028.M.M$2843028.2M
1028$2842004.M$2842004.M.M$2842004.2M1032$2840980.M$2840980.M.M$
2840980.2M1012$2839956.M$2839956.M.M$2839956.2M1022$2838932.M$
2838932.M.M$2838932.2M1028$2837908.M.M$2837908.2M$2837909.M1042$
2836884.M.M$2836884.2M$2836885.M1015$2835860.M.M$2835860.2M$2835861.M
1018$2834836.M.M$2834836.2M$2834837.M1023$2833812.M$2833812.M.M$
2833812.2M1022$2832788.M$2832788.M.M$2832788.2M1001$2831764.M$
2831764.M.M$2831764.2M1020$2830740.M.M$2830740.2M$2830741.M1043$
2829716.M$2829716.M.M$2829716.2M1015$2828692.M$2828692.M.M$2828692.2M
1030$2827668.M$2827668.M.M$2827668.2M1017$2826644.M$2826644.M.M$
2826644.2M1004$2825620.M$2825620.M.M$2825620.2M1020$2824596.M$
2824596.M.M$2824596.2M1017$2823572.M.M$2823572.2M$2823573.M1056$
2822548.M$2822548.M.M$2822548.2M1012$2821524.M.M$2821524.2M$2821525.M
1008$2820500.M.M$2820500.2M$2820501.M1026$2819476.M.M$2819476.2M$
2819477.M1025$2818452.M.M$2818452.2M$2818453.M1014$2817428.M.M$
2817428.2M$2817429.M1024$2816404.M.M$2816404.2M$2816405.M990$2815380.
M$2815380.M.M$2815380.2M1026$2814356.M.M$2814356.2M$2814357.M1027$
2813332.M.M$2813332.2M$2813333.M1032$2812308.M.M$2812308.2M$2812309.M
1016$2811284.M.M$2811284.2M$2811285.M1007$2810260.M.M$2810260.2M$
2810261.M1029$2809236.M.M$2809236.2M$2809237.M1025$2808212.M.M$
2808212.2M$2808213.M1027$2807188.M$2807188.M.M$2807188.2M1021$
2806164.M$2806164.M.M$2806164.2M1020$2805140.M.M$2805140.2M$2805141.M
1020$2804116.M$2804116.M.M$2804116.2M1021$2803092.M$2803092.M.M$
2803092.2M1030$2802068.M$2802068.M.M$2802068.2M1018$2801044.M$
2801044.M.M$2801044.2M1031$2800020.M$2800020.M.M$2800020.2M1008$
2798996.M$2798996.M.M$2798996.2M1025$2797972.M$2797972.M.M$2797972.2M
1014$2796948.M$2796948.M.M$2796948.2M1016$2795924.M.M$2795924.2M$
2795925.M1051$2794900.M$2794900.M.M$2794900.2M1024$2793876.M$2793876.
M.M$2793876.2M1020$2792852.M$2792852.M.M$2792852.2M1015$2791828.M$
2791828.M.M$2791828.2M1054$2790804.M$2790804.M.M$2790804.2M1013$
2789780.M.M$2789780.2M$2789781.M1003$2788756.M.M$2788756.2M$2788757.M
1032$2787732.M.M$2787732.2M$2787733.M1057$2786708.M$2786708.M.M$
2786708.2M1013$2785684.M$2785684.M.M$2785684.2M1029$2784660.M.M$
2784660.2M$2784661.M1026$2783636.M.M$2783636.2M$2783637.M1015$
2782612.M$2782612.M.M$2782612.2M1006$2781588.M$2781588.M.M$2781588.2M
1024$2780564.M$2780564.M.M$2780564.2M1005$2779540.M$2779540.M.M$
2779540.2M1015$2778516.M.M$2778516.2M$2778517.M1019$2777492.M.M$
2777492.2M$2777493.M1024$2776468.M$2776468.M.M$2776468.2M1019$
2775444.M.M$2775444.2M$2775445.M1018$2774420.M.M$2774420.2M$2774421.M
1054$2773396.M$2773396.M.M$2773396.2M1021$2772372.M$2772372.M.M$
2772372.2M1018$2771348.M$2771348.M.M$2771348.2M1022$2770324.M$
2770324.M.M$2770324.2M1008$2769300.M$2769300.M.M$2769300.2M1030$
2768276.M$2768276.M.M$2768276.2M1015$2767252.M$2767252.M.M$2767252.2M
1035$2766228.M$2766228.M.M$2766228.2M1030$2765204.M$2765204.M.M$
2765204.2M1014$2764180.M$2764180.M.M$2764180.2M1008$2763156.M$
2763156.M.M$2763156.2M1040$2762132.M$2762132.M.M$2762132.2M1023$
2761108.M.M$2761108.2M$2761109.M1026$2760084.M.M$2760084.2M$2760085.M
1008$2759060.M$2759060.M.M$2759060.2M1016$2758036.M$2758036.M.M$
2758036.2M1024$2757012.M$2757012.M.M$2757012.2M1019$2755988.M$
2755988.M.M$2755988.2M1022$2754964.M$2754964.M.M$2754964.2M979$
2753940.M$2753940.M.M$2753940.2M1035$2752916.M.M$2752916.2M$2752917.M
1005$2751892.M.M$2751892.2M$2751893.M1056$2750868.M.M$2750868.2M$
2750869.M1020$2749844.M$2749844.M.M$2749844.2M1018$2748820.M$2748820.
M.M$2748820.2M1009$2747796.M.M$2747796.2M$2747797.M1027$2746772.M.M$
2746772.2M$2746773.M1013$2745748.M$2745748.M.M$2745748.2M1023$
2744724.M$2744724.M.M$2744724.2M1025$2743700.M$2743700.M.M$2743700.2M
1023$2742676.M$2742676.M.M$2742676.2M1015$2741652.M$2741652.M.M$
2741652.2M1009$2740628.M$2740628.M.M$2740628.2M1030$2739604.M.M$
2739604.2M$2739605.M1026$2738580.M.M$2738580.2M$2738581.M1020$
2737556.M$2737556.M.M$2737556.2M1019$2736532.M.M$2736532.2M$2736533.M
1034$2735508.M$2735508.M.M$2735508.2M1011$2734484.M.M$2734484.2M$
2734485.M1022$2733460.M$2733460.M.M$2733460.2M1027$2732436.M$2732436.
M.M$2732436.2M1019$2731412.M$2731412.M.M$2731412.2M1022$2730388.M$
2730388.M.M$2730388.2M1033$2729364.M$2729364.M.M$2729364.2M1033$
2728340.M$2728340.M.M$2728340.2M1010$2727316.M.M$2727316.2M$2727317.M
1035$2726292.M$2726292.M.M$2726292.2M1019$2725268.M$2725268.M.M$
2725268.2M1013$2724244.M$2724244.M.M$2724244.2M1030$2723220.M.M$
2723220.2M$2723221.M1028$2722196.M.M$2722196.2M$2722197.M1003$
2721172.M$2721172.M.M$2721172.2M1041$2720148.M$2720148.M.M$2720148.2M
1021$2719124.M$2719124.M.M$2719124.2M1039$2718100.M$2718100.M.M$
2718100.2M1014$2717076.M$2717076.M.M$2717076.2M1022$2716052.M$
2716052.M.M$2716052.2M1034$2715028.M$2715028.M.M$2715028.2M1019$
2714004.M$2714004.M.M$2714004.2M1030$2712980.M$2712980.M.M$2712980.2M
1007$2711956.M$2711956.M.M$2711956.2M1028$2710932.M$2710932.M.M$
2710932.2M1032$2709908.M$2709908.M.M$2709908.2M1012$2708884.M$
2708884.M.M$2708884.2M1022$2707860.M$2707860.M.M$2707860.2M1028$
2706836.M.M$2706836.2M$2706837.M1042$2705812.M.M$2705812.2M$2705813.M
1015$2704788.M.M$2704788.2M$2704789.M1018$2703764.M.M$2703764.2M$
2703765.M1023$2702740.M$2702740.M.M$2702740.2M1022$2701716.M$2701716.
M.M$2701716.2M1001$2700692.M$2700692.M.M$2700692.2M1020$2699668.M.M$
2699668.2M$2699669.M1043$2698644.M$2698644.M.M$2698644.2M1015$
2697620.M$2697620.M.M$2697620.2M1030$2696596.M$2696596.M.M$2696596.2M
1017$2695572.M$2695572.M.M$2695572.2M1004$2694548.M$2694548.M.M$
2694548.2M1020$2693524.M$2693524.M.M$2693524.2M1017$2692500.M.M$
2692500.2M$2692501.M1056$2691476.M$2691476.M.M$2691476.2M1012$
2690452.M.M$2690452.2M$2690453.M1008$2689428.M.M$2689428.2M$2689429.M
1026$2688404.M.M$2688404.2M$2688405.M1025$2687380.M.M$2687380.2M$
2687381.M1014$2686356.M.M$2686356.2M$2686357.M1024$2685332.M.M$
2685332.2M$2685333.M990$2684308.M$2684308.M.M$2684308.2M1026$2683284.
M.M$2683284.2M$2683285.M1027$2682260.M.M$2682260.2M$2682261.M1032$
2681236.M.M$2681236.2M$2681237.M1016$2680212.M.M$2680212.2M$2680213.M
1007$2679188.M.M$2679188.2M$2679189.M1029$2678164.M.M$2678164.2M$
2678165.M1025$2677140.M.M$2677140.2M$2677141.M1027$2676116.M$2676116.
M.M$2676116.2M1021$2675092.M$2675092.M.M$2675092.2M1020$2674068.M.M$
2674068.2M$2674069.M1020$2673044.M$2673044.M.M$2673044.2M1021$
2672020.M$2672020.M.M$2672020.2M1030$2670996.M$2670996.M.M$2670996.2M
1018$2669972.M$2669972.M.M$2669972.2M1031$2668948.M$2668948.M.M$
2668948.2M1008$2667924.M$2667924.M.M$2667924.2M1025$2666900.M$
2666900.M.M$2666900.2M1037$2665876.M$2665876.M.M$2665876.2M1024$
2664852.M$2664852.M.M$2664852.2M1020$2663828.M$2663828.M.M$2663828.2M
1015$2662804.M$2662804.M.M$2662804.2M1054$2661780.M$2661780.M.M$
2661780.2M1013$2660756.M.M$2660756.2M$2660757.M1003$2659732.M.M$
2659732.2M$2659733.M1032$2658708.M.M$2658708.2M$2658709.M1057$
2657684.M$2657684.M.M$2657684.2M1013$2656660.M$2656660.M.M$2656660.2M
1029$2655636.M.M$2655636.2M$2655637.M1026$2654612.M.M$2654612.2M$
2654613.M1015$2653588.M$2653588.M.M$2653588.2M1006$2652564.M$2652564.
M.M$2652564.2M1024$2651540.M$2651540.M.M$2651540.2M1005$2650516.M$
2650516.M.M$2650516.2M1015$2649492.M.M$2649492.2M$2649493.M1019$
2648468.M.M$2648468.2M$2648469.M1005$2647444.M$2647444.M.M$2647444.2M
1046$2646420.M.M$2646420.2M$2646421.M1009$2645396.M.M$2645396.2M$
2645397.M1022$2644372.M.M$2644372.2M$2644373.M1025$2643348.M.M$
2643348.2M$2643349.M1054$2642324.M.M$2642324.2M$2642325.M1021$
2641300.M.M$2641300.2M$2641301.M1018$2640276.M.M$2640276.2M$2640277.M
1022$2639252.M.M$2639252.2M$2639253.M1008$2638228.M.M$2638228.2M$
2638229.M1030$2637204.M.M$2637204.2M$2637205.M1015$2636180.M.M$
2636180.2M$2636181.M1035$2635156.M.M$2635156.2M$2635157.M1030$
2634132.M.M$2634132.2M$2634133.M1014$2633108.M.M$2633108.2M$2633109.M
1008$2632084.M.M$2632084.2M$2632085.M1040$2631060.M.M$2631060.2M$
2631061.M1023$2630036.M$2630036.M.M$2630036.2M1026$2629012.M$2629012.
M.M$2629012.2M1008$2627988.M.M$2627988.2M$2627989.M1016$2626964.M.M$
2626964.2M$2626965.M1024$2625940.M.M$2625940.2M$2625941.M1019$
2624916.M.M$2624916.2M$2624917.M1022$2623892.M.M$2623892.2M$2623893.M
979$2622868.M.M$2622868.2M$2622869.M1035$2621844.M$2621844.M.M$
2621844.2M1005$2620820.M$2620820.M.M$2620820.2M1056$2619796.M$
2619796.M.M$2619796.2M1020$2618772.M.M$2618772.2M$2618773.M1018$
2617748.M.M$2617748.2M$2617749.M1009$2616724.M$2616724.M.M$2616724.2M
1027$2615700.M$2615700.M.M$2615700.2M1013$2614676.M.M$2614676.2M$
2614677.M1023$2613652.M.M$2613652.2M$2613653.M1025$2612628.M.M$
2612628.2M$2612629.M1023$2611604.M.M$2611604.2M$2611605.M1015$
2610580.M.M$2610580.2M$2610581.M1009$2609556.M.M$2609556.2M$2609557.M
1030$2608532.M$2608532.M.M$2608532.2M1026$2607508.M$2607508.M.M$
2607508.2M1020$2606484.M.M$2606484.2M$2606485.M1019$2605460.M$
2605460.M.M$2605460.2M1034$2604436.M.M$2604436.2M$2604437.M1011$
2603412.M$2603412.M.M$2603412.2M1022$2602388.M.M$2602388.2M$2602389.M
1027$2601364.M.M$2601364.2M$2601365.M1019$2600340.M.M$2600340.2M$
2600341.M1022$2599316.M.M$2599316.2M$2599317.M1033$2598292.M.M$
2598292.2M$2598293.M1033$2597268.M.M$2597268.2M$2597269.M1010$
2596244.M$2596244.M.M$2596244.2M1035$2595220.M.M$2595220.2M$2595221.M
1019$2594196.M.M$2594196.2M$2594197.M1013$2593172.M.M$2593172.2M$
2593173.M1030$2592148.M$2592148.M.M$2592148.2M1028$2591124.M$2591124.
M.M$2591124.2M1003$2590100.M.M$2590100.2M$2590101.M1041$2589076.M.M$
2589076.2M$2589077.M1021$2588052.M.M$2588052.2M$2588053.M1039$
2587028.M.M$2587028.2M$2587029.M1014$2586004.M.M$2586004.2M$2586005.M
1022$2584980.M.M$2584980.2M$2584981.M1034$2583956.M.M$2583956.2M$
2583957.M1019$2582932.M.M$2582932.2M$2582933.M1030$2581908.M.M$
2581908.2M$2581909.M1007$2580884.M.M$2580884.2M$2580885.M1028$
2579860.M.M$2579860.2M$2579861.M1032$2578836.M.M$2578836.2M$2578837.M
1012$2577812.M.M$2577812.2M$2577813.M1022$2576788.M.M$2576788.2M$
2576789.M1028$2575764.M$2575764.M.M$2575764.2M1042$2574740.M$2574740.
M.M$2574740.2M1015$2573716.M$2573716.M.M$2573716.2M1018$2572692.M$
2572692.M.M$2572692.2M1023$2571668.M.M$2571668.2M$2571669.M1022$
2570644.M.M$2570644.2M$2570645.M1001$2569620.M.M$2569620.2M$2569621.M
1020$2568596.M$2568596.M.M$2568596.2M1043$2567572.M.M$2567572.2M$
2567573.M1015$2566548.M.M$2566548.2M$2566549.M1030$2565524.M.M$
2565524.2M$2565525.M1017$2564500.M.M$2564500.2M$2564501.M1004$
2563476.M.M$2563476.2M$2563477.M1020$2562452.M.M$2562452.2M$2562453.M
1017$2561428.M$2561428.M.M$2561428.2M1056$2560404.M.M$2560404.2M$
2560405.M1012$2559380.M$2559380.M.M$2559380.2M1008$2558356.M$2558356.
M.M$2558356.2M1026$2557332.M$2557332.M.M$2557332.2M1025$2556308.M$
2556308.M.M$2556308.2M1014$2555284.M$2555284.M.M$2555284.2M1024$
2554260.M$2554260.M.M$2554260.2M990$2553236.M.M$2553236.2M$2553237.M
1026$2552212.M$2552212.M.M$2552212.2M1027$2551188.M$2551188.M.M$
2551188.2M1032$2550164.M$2550164.M.M$2550164.2M1016$2549140.M$
2549140.M.M$2549140.2M1007$2548116.M$2548116.M.M$2548116.2M1029$
2547092.M$2547092.M.M$2547092.2M1025$2546068.M$2546068.M.M$2546068.2M
1027$2545044.M.M$2545044.2M$2545045.M1021$2544020.M.M$2544020.2M$
2544021.M1020$2542996.M$2542996.M.M$2542996.2M1020$2541972.M.M$
2541972.2M$2541973.M1021$2540948.M.M$2540948.2M$2540949.M1030$
2539924.M.M$2539924.2M$2539925.M1018$2538900.M.M$2538900.2M$2538901.M
1031$2537876.M.M$2537876.2M$2537877.M1008$2536852.M.M$2536852.2M$
2536853.M1025$2535828.M.M$2535828.2M$2535829.M1037$2534804.M.M$
2534804.2M$2534805.M1024$2533780.M.M$2533780.2M$2533781.M1020$
2532756.M.M$2532756.2M$2532757.M1015$2531732.M.M$2531732.2M$2531733.M
1054$2530708.M.M$2530708.2M$2530709.M1013$2529684.M$2529684.M.M$
2529684.2M1003$2528660.M$2528660.M.M$2528660.2M1032$2527636.M$
2527636.M.M$2527636.2M1057$2526612.M.M$2526612.2M$2526613.M1013$
2525588.M.M$2525588.2M$2525589.M1029$2524564.M$2524564.M.M$2524564.2M
1026$2523540.M$2523540.M.M$2523540.2M1020$2522516.M.M$2522516.2M$
2522517.M1003$2521492.M$2521492.M.M$2521492.2M1024$2520468.M$2520468.
M.M$2520468.2M1005$2519444.M$2519444.M.M$2519444.2M1015$2518420.M.M$
2518420.2M$2518421.M1019$2517396.M.M$2517396.2M$2517397.M1020$
2516372.M.M$2516372.2M$2516373.M1019$2515348.M.M$2515348.2M$2515349.M
1044$2514324.M.M$2514324.2M$2514325.M1011$2513300.M.M$2513300.2M$
2513301.M1017$2512276.M.M$2512276.2M$2512277.M1025$2511252.M.M$
2511252.2M$2511253.M1054$2510228.M$2510228.M.M$2510228.2M1021$
2509204.M$2509204.M.M$2509204.2M1018$2508180.M$2508180.M.M$2508180.2M
1022$2507156.M$2507156.M.M$2507156.2M1008$2506132.M$2506132.M.M$
2506132.2M1030$2505108.M$2505108.M.M$2505108.2M1015$2504084.M$
2504084.M.M$2504084.2M1035$2503060.M$2503060.M.M$2503060.2M1030$
2502036.M$2502036.M.M$2502036.2M1014$2501012.M$2501012.M.M$2501012.2M
1008$2499988.M$2499988.M.M$2499988.2M1040$2498964.M$2498964.M.M$
2498964.2M1023$2497940.M.M$2497940.2M$2497941.M1026$2496916.M.M$
2496916.2M$2496917.M1008$2495892.M$2495892.M.M$2495892.2M1016$
2494868.M$2494868.M.M$2494868.2M1024$2493844.M$2493844.M.M$2493844.2M
1019$2492820.M$2492820.M.M$2492820.2M1022$2491796.M$2491796.M.M$
2491796.2M979$2490772.M$2490772.M.M$2490772.2M1035$2489748.M.M$
2489748.2M$2489749.M1005$2488724.M.M$2488724.2M$2488725.M1056$
2487700.M.M$2487700.2M$2487701.M1020$2486676.M$2486676.M.M$2486676.2M
1018$2485652.M$2485652.M.M$2485652.2M1009$2484628.M.M$2484628.2M$
2484629.M1027$2483604.M.M$2483604.2M$2483605.M1013$2482580.M$2482580.
M.M$2482580.2M1023$2481556.M$2481556.M.M$2481556.2M1025$2480532.M$
2480532.M.M$2480532.2M1023$2479508.M$2479508.M.M$2479508.2M1015$
2478484.M$2478484.M.M$2478484.2M1009$2477460.M$2477460.M.M$2477460.2M
1030$2476436.M.M$2476436.2M$2476437.M1026$2475412.M.M$2475412.2M$
2475413.M1020$2474388.M$2474388.M.M$2474388.2M1019$2473364.M.M$
2473364.2M$2473365.M1034$2472340.M$2472340.M.M$2472340.2M1011$
2471316.M.M$2471316.2M$2471317.M1022$2470292.M$2470292.M.M$2470292.2M
1027$2469268.M$2469268.M.M$2469268.2M1019$2468244.M$2468244.M.M$
2468244.2M1022$2467220.M$2467220.M.M$2467220.2M1033$2466196.M$
2466196.M.M$2466196.2M1033$2465172.M$2465172.M.M$2465172.2M1010$
2464148.M.M$2464148.2M$2464149.M1035$2463124.M$2463124.M.M$2463124.2M
1019$2462100.M$2462100.M.M$2462100.2M1013$2461076.M$2461076.M.M$
2461076.2M1030$2460052.M.M$2460052.2M$2460053.M1028$2459028.M.M$
2459028.2M$2459029.M1003$2458004.M$2458004.M.M$2458004.2M1041$
2456980.M$2456980.M.M$2456980.2M1021$2455956.M$2455956.M.M$2455956.2M
1039$2454932.M$2454932.M.M$2454932.2M1014$2453908.M$2453908.M.M$
2453908.2M1022$2452884.M$2452884.M.M$2452884.2M1034$2451860.M$
2451860.M.M$2451860.2M1019$2450836.M$2450836.M.M$2450836.2M1030$
2449812.M$2449812.M.M$2449812.2M1007$2448788.M$2448788.M.M$2448788.2M
1028$2447764.M$2447764.M.M$2447764.2M1032$2446740.M$2446740.M.M$
2446740.2M1012$2445716.M$2445716.M.M$2445716.2M1022$2444692.M$
2444692.M.M$2444692.2M1028$2443668.M.M$2443668.2M$2443669.M1042$
2442644.M.M$2442644.2M$2442645.M1015$2441620.M.M$2441620.2M$2441621.M
1018$2440596.M.M$2440596.2M$2440597.M1023$2439572.M$2439572.M.M$
2439572.2M1022$2438548.M$2438548.M.M$2438548.2M1001$2437524.M$
2437524.M.M$2437524.2M1020$2436500.M.M$2436500.2M$2436501.M1043$
2435476.M$2435476.M.M$2435476.2M1015$2434452.M$2434452.M.M$2434452.2M
1030$2433428.M$2433428.M.M$2433428.2M1017$2432404.M$2432404.M.M$
2432404.2M1004$2431380.M$2431380.M.M$2431380.2M1020$2430356.M$
2430356.M.M$2430356.2M1017$2429332.M.M$2429332.2M$2429333.M1056$
2428308.M$2428308.M.M$2428308.2M1012$2427284.M.M$2427284.2M$2427285.M
1008$2426260.M.M$2426260.2M$2426261.M1026$2425236.M.M$2425236.2M$
2425237.M1025$2424212.M.M$2424212.2M$2424213.M1014$2423188.M.M$
2423188.2M$2423189.M1024$2422164.M.M$2422164.2M$2422165.M990$2421140.
M$2421140.M.M$2421140.2M1026$2420116.M.M$2420116.2M$2420117.M1027$
2419092.M.M$2419092.2M$2419093.M1032$2418068.M.M$2418068.2M$2418069.M
1016$2417044.M.M$2417044.2M$2417045.M1007$2416020.M.M$2416020.2M$
2416021.M1029$2414996.M.M$2414996.2M$2414997.M1025$2413972.M.M$
2413972.2M$2413973.M1027$2412948.M$2412948.M.M$2412948.2M1021$
2411924.M$2411924.M.M$2411924.2M1020$2410900.M.M$2410900.2M$2410901.M
1020$2409876.M$2409876.M.M$2409876.2M1021$2408852.M$2408852.M.M$
2408852.2M1030$2407828.M$2407828.M.M$2407828.2M1018$2406804.M$
2406804.M.M$2406804.2M1031$2405780.M$2405780.M.M$2405780.2M1008$
2404756.M$2404756.M.M$2404756.2M1025$2403732.M$2403732.M.M$2403732.2M
1037$2402708.M$2402708.M.M$2402708.2M1024$2401684.M$2401684.M.M$
2401684.2M1020$2400660.M$2400660.M.M$2400660.2M1015$2399636.M$
2399636.M.M$2399636.2M1054$2398612.M$2398612.M.M$2398612.2M1013$
2397588.M.M$2397588.2M$2397589.M1003$2396564.M.M$2396564.2M$2396565.M
1032$2395540.M.M$2395540.2M$2395541.M1057$2394516.M$2394516.M.M$
2394516.2M1013$2393492.M$2393492.M.M$2393492.2M1029$2392468.M.M$
2392468.2M$2392469.M1026$2391444.M.M$2391444.2M$2391445.M987$2390420.
M$2390420.M.M$2390420.2M1032$2389396.M$2389396.M.M$2389396.2M1023$
2388372.M$2388372.M.M$2388372.2M1018$2387348.M.M$2387348.2M$2387349.M
995$2386324.M$2386324.M.M$2386324.2M1025$2385300.M.M$2385300.2M$
2385301.M1026$2384276.M.M$2384276.2M$2384277.M1021$2383252.M$2383252.
M.M$2383252.2M1035$2382228.M$2382228.M.M$2382228.2M1026$2381204.M$
2381204.M.M$2381204.2M1013$2380180.M$2380180.M.M$2380180.2M1054$
2379157.M$2379155.2M$2379156.2M1021$2378132.M$2378132.M.M$2378132.2M
1018$2377108.M$2377108.M.M$2377108.2M1022$2376084.M$2376084.M.M$
2376084.2M1008$2375060.M$2375060.M.M$2375060.2M1030$2374036.M$
2374036.M.M$2374036.2M1015$2373012.M$2373012.M.M$2373012.2M1035$
2371988.M$2371988.M.M$2371988.2M1030$2370964.M$2370964.M.M$2370964.2M
1014$2369940.M$2369940.M.M$2369940.2M1008$2368916.M$2368916.M.M$
2368916.2M1040$2367892.M$2367892.M.M$2367892.2M1023$2366868.M.M$
2366868.2M$2366869.M1026$2365844.M.M$2365844.2M$2365845.M1008$
2364820.M$2364820.M.M$2364820.2M1016$2363796.M$2363796.M.M$2363796.2M
1024$2362772.M$2362772.M.M$2362772.2M1019$2361748.M$2361748.M.M$
2361748.2M1022$2360724.M$2360724.M.M$2360724.2M979$2359700.M$2359700.
M.M$2359700.2M1035$2358676.M.M$2358676.2M$2358677.M1005$2357652.M.M$
2357652.2M$2357653.M1056$2356628.M.M$2356628.2M$2356629.M1020$
2355604.M$2355604.M.M$2355604.2M1018$2354580.M$2354580.M.M$2354580.2M
1009$2353556.M.M$2353556.2M$2353557.M1027$2352532.M.M$2352532.2M$
2352533.M1013$2351508.M$2351508.M.M$2351508.2M1023$2350484.M$2350484.
M.M$2350484.2M1025$2349460.M$2349460.M.M$2349460.2M1023$2348436.M$
2348436.M.M$2348436.2M1015$2347412.M$2347412.M.M$2347412.2M1009$
2346388.M$2346388.M.M$2346388.2M1030$2345364.M.M$2345364.2M$2345365.M
1026$2344340.M.M$2344340.2M$2344341.M1020$2343316.M$2343316.M.M$
2343316.2M1019$2342292.M.M$2342292.2M$2342293.M1034$2341268.M$
2341268.M.M$2341268.2M1011$2340244.M.M$2340244.2M$2340245.M1022$
2339220.M$2339220.M.M$2339220.2M1027$2338196.M$2338196.M.M$2338196.2M
1019$2337172.M$2337172.M.M$2337172.2M1022$2336148.M$2336148.M.M$
2336148.2M1033$2335124.M$2335124.M.M$2335124.2M1033$2334100.M$
2334100.M.M$2334100.2M1010$2333076.M.M$2333076.2M$2333077.M1035$
2332052.M$2332052.M.M$2332052.2M1019$2331028.M$2331028.M.M$2331028.2M
1013$2330004.M$2330004.M.M$2330004.2M1030$2328980.M.M$2328980.2M$
2328981.M1028$2327956.M.M$2327956.2M$2327957.M1003$2326932.M$2326932.
M.M$2326932.2M1041$2325908.M$2325908.M.M$2325908.2M1021$2324884.M$
2324884.M.M$2324884.2M1039$2323860.M$2323860.M.M$2323860.2M1014$
2322836.M$2322836.M.M$2322836.2M1022$2321812.M$2321812.M.M$2321812.2M
1034$2320788.M$2320788.M.M$2320788.2M1019$2319764.M$2319764.M.M$
2319764.2M1030$2318740.M$2318740.M.M$2318740.2M1007$2317716.M$
2317716.M.M$2317716.2M1028$2316692.M$2316692.M.M$2316692.2M1032$
2315668.M$2315668.M.M$2315668.2M1012$2314644.M$2314644.M.M$2314644.2M
1022$2313620.M$2313620.M.M$2313620.2M1028$2312596.M.M$2312596.2M$
2312597.M1042$2311572.M.M$2311572.2M$2311573.M1015$2310548.M.M$
2310548.2M$2310549.M1018$2309524.M.M$2309524.2M$2309525.M1023$
2308500.M$2308500.M.M$2308500.2M1022$2307476.M$2307476.M.M$2307476.2M
1001$2306452.M$2306452.M.M$2306452.2M1020$2305428.M.M$2305428.2M$
2305429.M1043$2304404.M$2304404.M.M$2304404.2M1015$2303380.M$2303380.
M.M$2303380.2M1030$2302356.M$2302356.M.M$2302356.2M1017$2301332.M$
2301332.M.M$2301332.2M1004$2300308.M$2300308.M.M$2300308.2M1020$
2299284.M$2299284.M.M$2299284.2M1017$2298260.M.M$2298260.2M$2298261.M
1056$2297236.M$2297236.M.M$2297236.2M1012$2296212.M.M$2296212.2M$
2296213.M1008$2295188.M.M$2295188.2M$2295189.M1026$2294164.M.M$
2294164.2M$2294165.M1025$2293140.M.M$2293140.2M$2293141.M1014$
2292116.M.M$2292116.2M$2292117.M1024$2291092.M.M$2291092.2M$2291093.M
990$2290068.M$2290068.M.M$2290068.2M1026$2289044.M.M$2289044.2M$
2289045.M1027$2288020.M.M$2288020.2M$2288021.M1032$2286996.M.M$
2286996.2M$2286997.M1016$2285972.M.M$2285972.2M$2285973.M1007$
2284948.M.M$2284948.2M$2284949.M1029$2283924.M.M$2283924.2M$2283925.M
1025$2282900.M.M$2282900.2M$2282901.M1027$2281876.M$2281876.M.M$
2281876.2M1021$2280852.M$2280852.M.M$2280852.2M1020$2279828.M.M$
2279828.2M$2279829.M1020$2278804.M$2278804.M.M$2278804.2M1021$
2277780.M$2277780.M.M$2277780.2M1030$2276756.M$2276756.M.M$2276756.2M
1018$2275732.M$2275732.M.M$2275732.2M1031$2274708.M$2274708.M.M$
2274708.2M1008$2273684.M$2273684.M.M$2273684.2M1025$2272660.M$
2272660.M.M$2272660.2M1037$2271636.M$2271636.M.M$2271636.2M1024$
2270612.M$2270612.M.M$2270612.2M1020$2269588.M$2269588.M.M$2269588.2M
1015$2268564.M$2268564.M.M$2268564.2M1054$2267540.M$2267540.M.M$
2267540.2M1013$2266516.M.M$2266516.2M$2266517.M1003$2265492.M.M$
2265492.2M$2265493.M1032$2264468.M.M$2264468.2M$2264469.M1057$
2263444.M$2263444.M.M$2263444.2M1013$2262420.M$2262420.M.M$2262420.2M
1029$2261396.M.M$2261396.2M$2261397.M1026$2260372.M.M$2260372.2M$
2260373.M1015$2259348.M$2259348.M.M$2259348.2M1006$2258324.M$2258324.
M.M$2258324.2M1024$2257300.M$2257300.M.M$2257300.2M1005$2256276.M$
2256276.M.M$2256276.2M1015$2255252.M.M$2255252.2M$2255253.M1019$
2254228.M.M$2254228.2M$2254229.M1014$2253204.M$2253204.M.M$2253204.2M
1026$2252180.M.M$2252180.2M$2252181.M1027$2251156.M.M$2251156.2M$
2251157.M1008$2250132.M$2250132.M.M$2250132.2M1037$2249108.M$2249108.
M.M$2249108.2M1015$2248084.M$2248084.M.M$2248084.2M1054$2247060.M$
2247060.M.M$2247060.2M1021$2246036.M$2246036.M.M$2246036.2M1018$
2245012.M$2245012.M.M$2245012.2M1022$2243988.M$2243988.M.M$2243988.2M
1008$2242964.M$2242964.M.M$2242964.2M1030$2241940.M$2241940.M.M$
2241940.2M1015$2240916.M$2240916.M.M$2240916.2M1035$2239892.M$
2239892.M.M$2239892.2M1030$2238868.M$2238868.M.M$2238868.2M1014$
2237844.M$2237844.M.M$2237844.2M1008$2236820.M$2236820.M.M$2236820.2M
1040$2235796.M$2235796.M.M$2235796.2M1023$2234772.M.M$2234772.2M$
2234773.M1026$2233748.M.M$2233748.2M$2233749.M1008$2232724.M$2232724.
M.M$2232724.2M1016$2231700.M$2231700.M.M$2231700.2M1024$2230676.M$
2230676.M.M$2230676.2M1019$2229652.M$2229652.M.M$2229652.2M1022$
2228628.M$2228628.M.M$2228628.2M979$2227604.M$2227604.M.M$2227604.2M
1035$2226580.M.M$2226580.2M$2226581.M1005$2225556.M.M$2225556.2M$
2225557.M1056$2224532.M.M$2224532.2M$2224533.M1020$2223508.M$2223508.
M.M$2223508.2M1018$2222484.M$2222484.M.M$2222484.2M1009$2221460.M.M$
2221460.2M$2221461.M1027$2220436.M.M$2220436.2M$2220437.M1013$
2219412.M$2219412.M.M$2219412.2M1023$2218388.M$2218388.M.M$2218388.2M
1025$2217364.M$2217364.M.M$2217364.2M1023$2216340.M$2216340.M.M$
2216340.2M1015$2215316.M$2215316.M.M$2215316.2M1009$2214292.M$
2214292.M.M$2214292.2M1030$2213268.M.M$2213268.2M$2213269.M1026$
2212244.M.M$2212244.2M$2212245.M1020$2211220.M$2211220.M.M$2211220.2M
1019$2210196.M.M$2210196.2M$2210197.M1034$2209172.M$2209172.M.M$
2209172.2M1011$2208148.M.M$2208148.2M$2208149.M1022$2207124.M$
2207124.M.M$2207124.2M1027$2206100.M$2206100.M.M$2206100.2M1019$
2205076.M$2205076.M.M$2205076.2M1022$2204052.M$2204052.M.M$2204052.2M
1033$2203028.M$2203028.M.M$2203028.2M1033$2202004.M$2202004.M.M$
2202004.2M1010$2200980.M.M$2200980.2M$2200981.M1035$2199956.M$
2199956.M.M$2199956.2M1019$2198932.M$2198932.M.M$2198932.2M1013$
2197908.M$2197908.M.M$2197908.2M1030$2196884.M.M$2196884.2M$2196885.M
1028$2195860.M.M$2195860.2M$2195861.M1003$2194836.M$2194836.M.M$
2194836.2M1041$2193812.M$2193812.M.M$2193812.2M1021$2192788.M$
2192788.M.M$2192788.2M1039$2191764.M$2191764.M.M$2191764.2M1014$
2190740.M$2190740.M.M$2190740.2M1022$2189716.M$2189716.M.M$2189716.2M
1034$2188692.M$2188692.M.M$2188692.2M1019$2187668.M$2187668.M.M$
2187668.2M1030$2186644.M$2186644.M.M$2186644.2M1007$2185620.M$
2185620.M.M$2185620.2M1028$2184596.M$2184596.M.M$2184596.2M1032$
2183572.M$2183572.M.M$2183572.2M1012$2182548.M$2182548.M.M$2182548.2M
1022$2181524.M$2181524.M.M$2181524.2M1028$2180500.M.M$2180500.2M$
2180501.M1042$2179476.M.M$2179476.2M$2179477.M1015$2178452.M.M$
2178452.2M$2178453.M1018$2177428.M.M$2177428.2M$2177429.M1023$
2176404.M$2176404.M.M$2176404.2M1022$2175380.M$2175380.M.M$2175380.2M
1001$2174356.M$2174356.M.M$2174356.2M1020$2173332.M.M$2173332.2M$
2173333.M1043$2172308.M$2172308.M.M$2172308.2M1015$2171284.M$2171284.
M.M$2171284.2M1030$2170260.M$2170260.M.M$2170260.2M1017$2169236.M$
2169236.M.M$2169236.2M1004$2168212.M$2168212.M.M$2168212.2M1020$
2167188.M$2167188.M.M$2167188.2M1017$2166164.M.M$2166164.2M$2166165.M
1056$2165140.M$2165140.M.M$2165140.2M1012$2164116.M.M$2164116.2M$
2164117.M1008$2163092.M.M$2163092.2M$2163093.M1026$2162068.M.M$
2162068.2M$2162069.M1025$2161044.M.M$2161044.2M$2161045.M1014$
2160020.M.M$2160020.2M$2160021.M1024$2158996.M.M$2158996.2M$2158997.M
990$2157972.M$2157972.M.M$2157972.2M1026$2156948.M.M$2156948.2M$
2156949.M1027$2155924.M.M$2155924.2M$2155925.M1032$2154900.M.M$
2154900.2M$2154901.M1016$2153876.M.M$2153876.2M$2153877.M1007$
2152852.M.M$2152852.2M$2152853.M1029$2151828.M.M$2151828.2M$2151829.M
1025$2150804.M.M$2150804.2M$2150805.M1027$2149780.M$2149780.M.M$
2149780.2M1021$2148756.M$2148756.M.M$2148756.2M1020$2147732.M.M$
2147732.2M$2147733.M1020$2146708.M$2146708.M.M$2146708.2M1021$
2145684.M$2145684.M.M$2145684.2M1030$2144660.M$2144660.M.M$2144660.2M
1018$2143636.M$2143636.M.M$2143636.2M1031$2142612.M$2142612.M.M$
2142612.2M1008$2141588.M$2141588.M.M$2141588.2M1025$2140564.M$
2140564.M.M$2140564.2M1037$2139540.M$2139540.M.M$2139540.2M1024$
2138516.M$2138516.M.M$2138516.2M1020$2137492.M$2137492.M.M$2137492.2M
1015$2136468.M$2136468.M.M$2136468.2M1054$2135444.M$2135444.M.M$
2135444.2M1013$2134420.M.M$2134420.2M$2134421.M1003$2133396.M.M$
2133396.2M$2133397.M1032$2132372.M.M$2132372.2M$2132373.M1057$
2131348.M$2131348.M.M$2131348.2M1013$2130324.M$2130324.M.M$2130324.2M
1029$2129300.M.M$2129300.2M$2129301.M1026$2128276.M.M$2128276.2M$
2128277.M1015$2127252.M$2127252.M.M$2127252.2M1006$2126228.M$2126228.
M.M$2126228.2M1024$2125204.M$2125204.M.M$2125204.2M1005$2124180.M$
2124180.M.M$2124180.2M1015$2123156.M.M$2123156.2M$2123157.M1019$
2122132.M.M$2122132.2M$2122133.M1019$2121108.M.M$2121108.2M$2121109.M
1020$2120084.M.M$2120084.2M$2120085.M1024$2119060.M$2119060.M.M$
2119060.2M1019$2118036.M.M$2118036.2M$2118037.M1017$2117012.M.M$
2117012.2M$2117013.M1024$2115988.M.M$2115988.2M$2115989.M1063$
2114964.M$2114964.M.M$2114964.2M1021$2113940.M.M$2113940.2M$2113941.M
1018$2112916.M.M$2112916.2M$2112917.M1022$2111892.M.M$2111892.2M$
2111893.M1008$2110868.M.M$2110868.2M$2110869.M1030$2109844.M.M$
2109844.2M$2109845.M1015$2108820.M.M$2108820.2M$2108821.M1035$
2107796.M.M$2107796.2M$2107797.M1030$2106772.M.M$2106772.2M$2106773.M
1014$2105748.M.M$2105748.2M$2105749.M1008$2104724.M.M$2104724.2M$
2104725.M1040$2103700.M.M$2103700.2M$2103701.M1023$2102676.M$2102676.
M.M$2102676.2M1026$2101652.M$2101652.M.M$2101652.2M1008$2100628.M.M$
2100628.2M$2100629.M1016$2099604.M.M$2099604.2M$2099605.M1024$
2098580.M.M$2098580.2M$2098581.M1019$2097556.M.M$2097556.2M$2097557.M
1022$2096532.M.M$2096532.2M$2096533.M979$2095508.M.M$2095508.2M$
2095509.M1035$2094484.M$2094484.M.M$2094484.2M1005$2093460.M$2093460.
M.M$2093460.2M1056$2092436.M$2092436.M.M$2092436.2M1020$2091412.M.M$
2091412.2M$2091413.M1018$2090388.M.M$2090388.2M$2090389.M1009$
2089364.M$2089364.M.M$2089364.2M1027$2088340.M$2088340.M.M$2088340.2M
1013$2087316.M.M$2087316.2M$2087317.M1023$2086292.M.M$2086292.2M$
2086293.M1025$2085268.M.M$2085268.2M$2085269.M1023$2084244.M.M$
2084244.2M$2084245.M1015$2083220.M.M$2083220.2M$2083221.M1009$
2082196.M.M$2082196.2M$2082197.M1030$2081172.M$2081172.M.M$2081172.2M
1026$2080148.M$2080148.M.M$2080148.2M1020$2079124.M.M$2079124.2M$
2079125.M1019$2078100.M$2078100.M.M$2078100.2M1034$2077076.M.M$
2077076.2M$2077077.M1011$2076052.M$2076052.M.M$2076052.2M1022$
2075028.M.M$2075028.2M$2075029.M1027$2074004.M.M$2074004.2M$2074005.M
1019$2072980.M.M$2072980.2M$2072981.M1022$2071956.M.M$2071956.2M$
2071957.M1033$2070932.M.M$2070932.2M$2070933.M1033$2069908.M.M$
2069908.2M$2069909.M1010$2068884.M$2068884.M.M$2068884.2M1035$
2067860.M.M$2067860.2M$2067861.M1019$2066836.M.M$2066836.2M$2066837.M
1013$2065812.M.M$2065812.2M$2065813.M1030$2064788.M$2064788.M.M$
2064788.2M1028$2063764.M$2063764.M.M$2063764.2M1003$2062740.M.M$
2062740.2M$2062741.M1041$2061716.M.M$2061716.2M$2061717.M1021$
2060692.M.M$2060692.2M$2060693.M1039$2059668.M.M$2059668.2M$2059669.M
1014$2058644.M.M$2058644.2M$2058645.M1022$2057620.M.M$2057620.2M$
2057621.M1034$2056596.M.M$2056596.2M$2056597.M1019$2055572.M.M$
2055572.2M$2055573.M1030$2054548.M.M$2054548.2M$2054549.M1007$
2053524.M.M$2053524.2M$2053525.M1028$2052500.M.M$2052500.2M$2052501.M
1032$2051476.M.M$2051476.2M$2051477.M1012$2050452.M.M$2050452.2M$
2050453.M1022$2049428.M.M$2049428.2M$2049429.M1028$2048404.M$2048404.
M.M$2048404.2M1042$2047380.M$2047380.M.M$2047380.2M1015$2046356.M$
2046356.M.M$2046356.2M1018$2045332.M$2045332.M.M$2045332.2M1023$
2044308.M.M$2044308.2M$2044309.M1022$2043284.M.M$2043284.2M$2043285.M
1001$2042260.M.M$2042260.2M$2042261.M1020$2041236.M$2041236.M.M$
2041236.2M1043$2040212.M.M$2040212.2M$2040213.M1015$2039188.M.M$
2039188.2M$2039189.M1030$2038164.M.M$2038164.2M$2038165.M1017$
2037140.M.M$2037140.2M$2037141.M1004$2036116.M.M$2036116.2M$2036117.M
1020$2035092.M.M$2035092.2M$2035093.M1017$2034068.M$2034068.M.M$
2034068.2M1056$2033044.M.M$2033044.2M$2033045.M1012$2032020.M$
2032020.M.M$2032020.2M1008$2030996.M$2030996.M.M$2030996.2M1026$
2029972.M$2029972.M.M$2029972.2M1025$2028948.M$2028948.M.M$2028948.2M
1014$2027924.M$2027924.M.M$2027924.2M1024$2026900.M$2026900.M.M$
2026900.2M990$2025876.M.M$2025876.2M$2025877.M1026$2024852.M$2024852.
M.M$2024852.2M1027$2023828.M$2023828.M.M$2023828.2M1032$2022804.M$
2022804.M.M$2022804.2M1016$2021780.M$2021780.M.M$2021780.2M1007$
2020756.M$2020756.M.M$2020756.2M1029$2019732.M$2019732.M.M$2019732.2M
1025$2018708.M$2018708.M.M$2018708.2M1027$2017684.M.M$2017684.2M$
2017685.M1021$2016660.M.M$2016660.2M$2016661.M1020$2015636.M$2015636.
M.M$2015636.2M1020$2014612.M.M$2014612.2M$2014613.M1021$2013588.M.M$
2013588.2M$2013589.M1030$2012564.M.M$2012564.2M$2012565.M1018$
2011540.M.M$2011540.2M$2011541.M1031$2010516.M.M$2010516.2M$2010517.M
1008$2009492.M.M$2009492.2M$2009493.M1025$2008468.M.M$2008468.2M$
2008469.M1037$2007444.M.M$2007444.2M$2007445.M1024$2006420.M.M$
2006420.2M$2006421.M1020$2005396.M.M$2005396.2M$2005397.M1015$
2004372.M.M$2004372.2M$2004373.M1054$2003348.M.M$2003348.2M$2003349.M
1013$2002324.M$2002324.M.M$2002324.2M1003$2001300.M$2001300.M.M$
2001300.2M1032$2000276.M$2000276.M.M$2000276.2M1057$1999252.M.M$
1999252.2M$1999253.M1013$1998228.M.M$1998228.2M$1998229.M1029$
1997204.M$1997204.M.M$1997204.2M1026$1996180.M$1996180.M.M$1996180.2M
1015$1995156.M.M$1995156.2M$1995157.M1006$1994132.M.M$1994132.2M$
1994133.M1024$1993108.M.M$1993108.2M$1993109.M1005$1992084.M.M$
1992084.2M$1992085.M1015$1991060.M$1991060.M.M$1991060.2M1019$
1990036.M$1990036.M.M$1990036.2M1016$1989012.M$1989012.M.M$1989012.2M
1025$1987988.M$1987988.M.M$1987988.2M1037$1986964.M$1986964.M.M$
1986964.2M1000$1985940.M.M$1985940.2M$1985941.M1037$1984916.M.M$
1984916.2M$1984917.M1015$1983892.M.M$1983892.2M$1983893.M1054$
1982868.M$1982868.M.M$1982868.2M1021$1981844.M$1981844.M.M$1981844.2M
1018$1980820.M$1980820.M.M$1980820.2M1022$1979796.M$1979796.M.M$
1979796.2M1008$1978772.M$1978772.M.M$1978772.2M1030$1977748.M$
1977748.M.M$1977748.2M1015$1976724.M$1976724.M.M$1976724.2M1035$
1975700.M$1975700.M.M$1975700.2M1030$1974676.M$1974676.M.M$1974676.2M
1014$1973652.M$1973652.M.M$1973652.2M1008$1972628.M$1972628.M.M$
1972628.2M1040$1971604.M$1971604.M.M$1971604.2M1023$1970580.M.M$
1970580.2M$1970581.M1026$1969556.M.M$1969556.2M$1969557.M1008$
1968532.M$1968532.M.M$1968532.2M1016$1967508.M$1967508.M.M$1967508.2M
1024$1966484.M$1966484.M.M$1966484.2M1019$1965460.M$1965460.M.M$
1965460.2M1022$1964436.M$1964436.M.M$1964436.2M979$1963412.M$1963412.
M.M$1963412.2M1035$1962388.M.M$1962388.2M$1962389.M1005$1961364.M.M$
1961364.2M$1961365.M1056$1960340.M.M$1960340.2M$1960341.M1020$
1959316.M$1959316.M.M$1959316.2M1018$1958292.M$1958292.M.M$1958292.2M
1009$1957268.M.M$1957268.2M$1957269.M1027$1956244.M.M$1956244.2M$
1956245.M1013$1955220.M$1955220.M.M$1955220.2M1023$1954196.M$1954196.
M.M$1954196.2M1025$1953172.M$1953172.M.M$1953172.2M1023$1952148.M$
1952148.M.M$1952148.2M1015$1951124.M$1951124.M.M$1951124.2M1009$
1950100.M$1950100.M.M$1950100.2M1030$1949076.M.M$1949076.2M$1949077.M
1026$1948052.M.M$1948052.2M$1948053.M1020$1947028.M$1947028.M.M$
1947028.2M1019$1946004.M.M$1946004.2M$1946005.M1034$1944980.M$
1944980.M.M$1944980.2M1011$1943956.M.M$1943956.2M$1943957.M1022$
1942932.M$1942932.M.M$1942932.2M1027$1941908.M$1941908.M.M$1941908.2M
1019$1940884.M$1940884.M.M$1940884.2M1022$1939860.M$1939860.M.M$
1939860.2M1033$1938836.M$1938836.M.M$1938836.2M1033$1937812.M$
1937812.M.M$1937812.2M1010$1936788.M.M$1936788.2M$1936789.M1035$
1935764.M$1935764.M.M$1935764.2M1019$1934740.M$1934740.M.M$1934740.2M
1013$1933716.M$1933716.M.M$1933716.2M1030$1932692.M.M$1932692.2M$
1932693.M1028$1931668.M.M$1931668.2M$1931669.M1003$1930644.M$1930644.
M.M$1930644.2M1041$1929620.M$1929620.M.M$1929620.2M1021$1928596.M$
1928596.M.M$1928596.2M1039$1927572.M$1927572.M.M$1927572.2M1014$
1926548.M$1926548.M.M$1926548.2M1022$1925524.M$1925524.M.M$1925524.2M
1034$1924500.M$1924500.M.M$1924500.2M1019$1923476.M$1923476.M.M$
1923476.2M1030$1922452.M$1922452.M.M$1922452.2M1007$1921428.M$
1921428.M.M$1921428.2M1028$1920404.M$1920404.M.M$1920404.2M1032$
1919380.M$1919380.M.M$1919380.2M1012$1918356.M$1918356.M.M$1918356.2M
1022$1917332.M$1917332.M.M$1917332.2M1028$1916308.M.M$1916308.2M$
1916309.M1042$1915284.M.M$1915284.2M$1915285.M1015$1914260.M.M$
1914260.2M$1914261.M1018$1913236.M.M$1913236.2M$1913237.M1023$
1912212.M$1912212.M.M$1912212.2M1022$1911188.M$1911188.M.M$1911188.2M
1001$1910164.M$1910164.M.M$1910164.2M1020$1909140.M.M$1909140.2M$
1909141.M1043$1908116.M$1908116.M.M$1908116.2M1015$1907092.M$1907092.
M.M$1907092.2M1030$1906068.M$1906068.M.M$1906068.2M1017$1905044.M$
1905044.M.M$1905044.2M1004$1904020.M$1904020.M.M$1904020.2M1020$
1902996.M$1902996.M.M$1902996.2M1017$1901972.M.M$1901972.2M$1901973.M
1056$1900948.M$1900948.M.M$1900948.2M1012$1899924.M.M$1899924.2M$
1899925.M1008$1898900.M.M$1898900.2M$1898901.M1026$1897876.M.M$
1897876.2M$1897877.M1025$1896852.M.M$1896852.2M$1896853.M1014$
1895828.M.M$1895828.2M$1895829.M1024$1894804.M.M$1894804.2M$1894805.M
990$1893780.M$1893780.M.M$1893780.2M1026$1892756.M.M$1892756.2M$
1892757.M1027$1891732.M.M$1891732.2M$1891733.M1032$1890708.M.M$
1890708.2M$1890709.M1016$1889684.M.M$1889684.2M$1889685.M1007$
1888660.M.M$1888660.2M$1888661.M1029$1887636.M.M$1887636.2M$1887637.M
1025$1886612.M.M$1886612.2M$1886613.M1027$1885588.M$1885588.M.M$
1885588.2M1021$1884564.M$1884564.M.M$1884564.2M1020$1883540.M.M$
1883540.2M$1883541.M1020$1882516.M$1882516.M.M$1882516.2M1021$
1881492.M$1881492.M.M$1881492.2M1030$1880468.M$1880468.M.M$1880468.2M
1018$1879444.M$1879444.M.M$1879444.2M1031$1878420.M$1878420.M.M$
1878420.2M1008$1877396.M$1877396.M.M$1877396.2M1025$1876372.M$
1876372.M.M$1876372.2M1037$1875348.M$1875348.M.M$1875348.2M1024$
1874324.M$1874324.M.M$1874324.2M1020$1873300.M$1873300.M.M$1873300.2M
1015$1872276.M$1872276.M.M$1872276.2M1054$1871252.M$1871252.M.M$
1871252.2M1013$1870228.M.M$1870228.2M$1870229.M1003$1869204.M.M$
1869204.2M$1869205.M1032$1868180.M.M$1868180.2M$1868181.M1057$
1867156.M$1867156.M.M$1867156.2M1013$1866132.M$1866132.M.M$1866132.2M
1029$1865108.M.M$1865108.2M$1865109.M1026$1864084.M.M$1864084.2M$
1864085.M1015$1863060.M$1863060.M.M$1863060.2M1006$1862036.M$1862036.
M.M$1862036.2M1024$1861012.M$1861012.M.M$1861012.2M1005$1859988.M$
1859988.M.M$1859988.2M1015$1858964.M.M$1858964.2M$1858965.M1019$
1857940.M.M$1857940.2M$1857941.M1020$1856916.M$1856916.M.M$1856916.2M
1021$1855892.M$1855892.M.M$1855892.2M1021$1854868.M$1854868.M.M$
1854868.2M1015$1853844.M$1853844.M.M$1853844.2M1025$1852820.M$
1852820.M.M$1852820.2M1014$1851796.M$1851796.M.M$1851796.2M1063$
1850772.M$1850772.M.M$1850772.2M1021$1849748.M$1849748.M.M$1849748.2M
1018$1848724.M$1848724.M.M$1848724.2M1022$1847700.M$1847700.M.M$
1847700.2M1008$1846676.M$1846676.M.M$1846676.2M1030$1845652.M$
1845652.M.M$1845652.2M1015$1844628.M$1844628.M.M$1844628.2M1035$
1843604.M$1843604.M.M$1843604.2M1030$1842580.M$1842580.M.M$1842580.2M
1014$1841556.M$1841556.M.M$1841556.2M1008$1840532.M$1840532.M.M$
1840532.2M1040$1839508.M$1839508.M.M$1839508.2M1023$1838484.M.M$
1838484.2M$1838485.M1026$1837460.M.M$1837460.2M$1837461.M1008$
1836436.M$1836436.M.M$1836436.2M1016$1835412.M$1835412.M.M$1835412.2M
1024$1834388.M$1834388.M.M$1834388.2M1019$1833364.M$1833364.M.M$
1833364.2M1022$1832340.M$1832340.M.M$1832340.2M979$1831316.M$1831316.
M.M$1831316.2M1035$1830292.M.M$1830292.2M$1830293.M1005$1829268.M.M$
1829268.2M$1829269.M1056$1828244.M.M$1828244.2M$1828245.M1020$
1827220.M$1827220.M.M$1827220.2M1018$1826196.M$1826196.M.M$1826196.2M
1009$1825172.M.M$1825172.2M$1825173.M1027$1824148.M.M$1824148.2M$
1824149.M1013$1823124.M$1823124.M.M$1823124.2M1023$1822100.M$1822100.
M.M$1822100.2M1025$1821076.M$1821076.M.M$1821076.2M1023$1820052.M$
1820052.M.M$1820052.2M1015$1819028.M$1819028.M.M$1819028.2M1009$
1818004.M$1818004.M.M$1818004.2M1030$1816980.M.M$1816980.2M$1816981.M
1026$1815956.M.M$1815956.2M$1815957.M1020$1814932.M$1814932.M.M$
1814932.2M1019$1813908.M.M$1813908.2M$1813909.M1034$1812884.M$
1812884.M.M$1812884.2M1011$1811860.M.M$1811860.2M$1811861.M1022$
1810836.M$1810836.M.M$1810836.2M1027$1809812.M$1809812.M.M$1809812.2M
1019$1808788.M$1808788.M.M$1808788.2M1022$1807764.M$1807764.M.M$
1807764.2M1033$1806740.M$1806740.M.M$1806740.2M1033$1805716.M$
1805716.M.M$1805716.2M1010$1804692.M.M$1804692.2M$1804693.M1035$
1803668.M$1803668.M.M$1803668.2M1019$1802644.M$1802644.M.M$1802644.2M
1013$1801620.M$1801620.M.M$1801620.2M1030$1800596.M.M$1800596.2M$
1800597.M1028$1799572.M.M$1799572.2M$1799573.M1003$1798548.M$1798548.
M.M$1798548.2M1041$1797524.M$1797524.M.M$1797524.2M1021$1796500.M$
1796500.M.M$1796500.2M1039$1795476.M$1795476.M.M$1795476.2M1014$
1794452.M$1794452.M.M$1794452.2M1022$1793428.M$1793428.M.M$1793428.2M
1034$1792404.M$1792404.M.M$1792404.2M1019$1791380.M$1791380.M.M$
1791380.2M1030$1790356.M$1790356.M.M$1790356.2M1007$1789332.M$
1789332.M.M$1789332.2M1028$1788308.M$1788308.M.M$1788308.2M1032$
1787284.M$1787284.M.M$1787284.2M1012$1786260.M$1786260.M.M$1786260.2M
1022$1785236.M$1785236.M.M$1785236.2M1028$1784212.M.M$1784212.2M$
1784213.M1042$1783188.M.M$1783188.2M$1783189.M1015$1782164.M.M$
1782164.2M$1782165.M1018$1781140.M.M$1781140.2M$1781141.M1023$
1780116.M$1780116.M.M$1780116.2M1022$1779092.M$1779092.M.M$1779092.2M
1001$1778068.M$1778068.M.M$1778068.2M1020$1777044.M.M$1777044.2M$
1777045.M1043$1776020.M$1776020.M.M$1776020.2M1015$1774996.M$1774996.
M.M$1774996.2M1030$1773972.M$1773972.M.M$1773972.2M1017$1772948.M$
1772948.M.M$1772948.2M1004$1771924.M$1771924.M.M$1771924.2M1020$
1770900.M$1770900.M.M$1770900.2M1017$1769876.M.M$1769876.2M$1769877.M
1056$1768852.M$1768852.M.M$1768852.2M1012$1767828.M.M$1767828.2M$
1767829.M1008$1766804.M.M$1766804.2M$1766805.M1026$1765780.M.M$
1765780.2M$1765781.M1025$1764756.M.M$1764756.2M$1764757.M1014$
1763732.M.M$1763732.2M$1763733.M1024$1762708.M.M$1762708.2M$1762709.M
990$1761684.M$1761684.M.M$1761684.2M1026$1760660.M.M$1760660.2M$
1760661.M1027$1759636.M.M$1759636.2M$1759637.M1032$1758612.M.M$
1758612.2M$1758613.M1016$1757588.M.M$1757588.2M$1757589.M1007$
1756564.M.M$1756564.2M$1756565.M1029$1755540.M.M$1755540.2M$1755541.M
1025$1754516.M.M$1754516.2M$1754517.M1027$1753492.M$1753492.M.M$
1753492.2M1021$1752468.M$1752468.M.M$1752468.2M1020$1751444.M.M$
1751444.2M$1751445.M1020$1750420.M$1750420.M.M$1750420.2M1021$
1749396.M$1749396.M.M$1749396.2M1030$1748372.M$1748372.M.M$1748372.2M
1018$1747348.M$1747348.M.M$1747348.2M1031$1746324.M$1746324.M.M$
1746324.2M1008$1745300.M$1745300.M.M$1745300.2M1025$1744276.M$
1744276.M.M$1744276.2M1037$1743252.M$1743252.M.M$1743252.2M1024$
1742228.M$1742228.M.M$1742228.2M1020$1741204.M$1741204.M.M$1741204.2M
1015$1740180.M$1740180.M.M$1740180.2M1054$1739156.M$1739156.M.M$
1739156.2M1013$1738132.M.M$1738132.2M$1738133.M1003$1737108.M.M$
1737108.2M$1737109.M1032$1736084.M.M$1736084.2M$1736085.M1057$
1735060.M$1735060.M.M$1735060.2M1013$1734036.M$1734036.M.M$1734036.2M
1029$1733012.M.M$1733012.2M$1733013.M1026$1731988.M.M$1731988.2M$
1731989.M1015$1730964.M$1730964.M.M$1730964.2M1006$1729940.M$1729940.
M.M$1729940.2M1024$1728916.M$1728916.M.M$1728916.2M1005$1727892.M$
1727892.M.M$1727892.2M1015$1726868.M.M$1726868.2M$1726869.M1019$
1725844.M.M$1725844.2M$1725845.M1020$1724820.M$1724820.M.M$1724820.2M
1021$1723796.M$1723796.M.M$1723796.2M1021$1722772.M$1722772.M.M$
1722772.2M1015$1721748.M$1721748.M.M$1721748.2M1025$1720724.M$
1720724.M.M$1720724.2M1014$1719700.M$1719700.M.M$1719700.2M1063$
1718676.M$1718676.M.M$1718676.2M1021$1717652.M$1717652.M.M$1717652.2M
1018$1716628.M$1716628.M.M$1716628.2M1022$1715604.M$1715604.M.M$
1715604.2M1008$1714580.M$1714580.M.M$1714580.2M1030$1713556.M$
1713556.M.M$1713556.2M1015$1712532.M$1712532.M.M$1712532.2M1035$
1711508.M$1711508.M.M$1711508.2M1030$1710484.M$1710484.M.M$1710484.2M
1014$1709460.M$1709460.M.M$1709460.2M1008$1708436.M$1708436.M.M$
1708436.2M1040$1707412.M$1707412.M.M$1707412.2M1023$1706388.M.M$
1706388.2M$1706389.M1026$1705364.M.M$1705364.2M$1705365.M1008$
1704340.M$1704340.M.M$1704340.2M1016$1703316.M$1703316.M.M$1703316.2M
1024$1702292.M$1702292.M.M$1702292.2M1019$1701268.M$1701268.M.M$
1701268.2M1022$1700244.M$1700244.M.M$1700244.2M979$1699220.M$1699220.
M.M$1699220.2M1035$1698196.M.M$1698196.2M$1698197.M1005$1697172.M.M$
1697172.2M$1697173.M1056$1696148.M.M$1696148.2M$1696149.M1020$
1695124.M$1695124.M.M$1695124.2M1018$1694100.M$1694100.M.M$1694100.2M
1009$1693076.M.M$1693076.2M$1693077.M1027$1692052.M.M$1692052.2M$
1692053.M1013$1691028.M$1691028.M.M$1691028.2M1023$1690004.M$1690004.
M.M$1690004.2M1025$1688980.M$1688980.M.M$1688980.2M1023$1687956.M$
1687956.M.M$1687956.2M1015$1686932.M$1686932.M.M$1686932.2M1009$
1685908.M$1685908.M.M$1685908.2M1030$1684884.M.M$1684884.2M$1684885.M
1026$1683860.M.M$1683860.2M$1683861.M1020$1682836.M$1682836.M.M$
1682836.2M1019$1681812.M.M$1681812.2M$1681813.M1034$1680788.M$
1680788.M.M$1680788.2M1011$1679764.M.M$1679764.2M$1679765.M1022$
1678740.M$1678740.M.M$1678740.2M1027$1677716.M$1677716.M.M$1677716.2M
1019$1676692.M$1676692.M.M$1676692.2M1022$1675668.M$1675668.M.M$
1675668.2M1033$1674644.M$1674644.M.M$1674644.2M1033$1673620.M$
1673620.M.M$1673620.2M1010$1672596.M.M$1672596.2M$1672597.M1035$
1671572.M$1671572.M.M$1671572.2M1019$1670548.M$1670548.M.M$1670548.2M
1013$1669524.M$1669524.M.M$1669524.2M1030$1668500.M.M$1668500.2M$
1668501.M1028$1667476.M.M$1667476.2M$1667477.M1003$1666452.M$1666452.
M.M$1666452.2M1041$1665428.M$1665428.M.M$1665428.2M1021$1664404.M$
1664404.M.M$1664404.2M1039$1663380.M$1663380.M.M$1663380.2M1014$
1662356.M$1662356.M.M$1662356.2M1022$1661332.M$1661332.M.M$1661332.2M
1034$1660308.M$1660308.M.M$1660308.2M1019$1659284.M$1659284.M.M$
1659284.2M1030$1658260.M$1658260.M.M$1658260.2M1007$1657236.M$
1657236.M.M$1657236.2M1028$1656212.M$1656212.M.M$1656212.2M1032$
1655188.M$1655188.M.M$1655188.2M1012$1654164.M$1654164.M.M$1654164.2M
1022$1653140.M$1653140.M.M$1653140.2M1028$1652116.M.M$1652116.2M$
1652117.M1042$1651092.M.M$1651092.2M$1651093.M1015$1650068.M.M$
1650068.2M$1650069.M1018$1649044.M.M$1649044.2M$1649045.M1023$
1648020.M$1648020.M.M$1648020.2M1022$1646996.M$1646996.M.M$1646996.2M
1001$1645972.M$1645972.M.M$1645972.2M1020$1644948.M.M$1644948.2M$
1644949.M1043$1643924.M$1643924.M.M$1643924.2M1015$1642900.M$1642900.
M.M$1642900.2M1030$1641876.M$1641876.M.M$1641876.2M1017$1640852.M$
1640852.M.M$1640852.2M1004$1639828.M$1639828.M.M$1639828.2M1020$
1638804.M$1638804.M.M$1638804.2M1017$1637780.M.M$1637780.2M$1637781.M
1056$1636756.M$1636756.M.M$1636756.2M1012$1635732.M.M$1635732.2M$
1635733.M1008$1634708.M.M$1634708.2M$1634709.M1026$1633684.M.M$
1633684.2M$1633685.M1025$1632660.M.M$1632660.2M$1632661.M1014$
1631636.M.M$1631636.2M$1631637.M1024$1630612.M.M$1630612.2M$1630613.M
990$1629588.M$1629588.M.M$1629588.2M1026$1628564.M.M$1628564.2M$
1628565.M1027$1627540.M.M$1627540.2M$1627541.M1032$1626516.M.M$
1626516.2M$1626517.M1016$1625492.M.M$1625492.2M$1625493.M1007$
1624468.M.M$1624468.2M$1624469.M1029$1623444.M.M$1623444.2M$1623445.M
1025$1622420.M.M$1622420.2M$1622421.M1027$1621396.M$1621396.M.M$
1621396.2M1021$1620372.M$1620372.M.M$1620372.2M1020$1619348.M.M$
1619348.2M$1619349.M1020$1618324.M$1618324.M.M$1618324.2M1021$
1617300.M$1617300.M.M$1617300.2M1030$1616276.M$1616276.M.M$1616276.2M
1018$1615252.M$1615252.M.M$1615252.2M1031$1614228.M$1614228.M.M$
1614228.2M1008$1613204.M$1613204.M.M$1613204.2M1025$1612180.M$
1612180.M.M$1612180.2M1037$1611156.M$1611156.M.M$1611156.2M1024$
1610132.M$1610132.M.M$1610132.2M1020$1609108.M$1609108.M.M$1609108.2M
1015$1608084.M$1608084.M.M$1608084.2M1054$1607060.M$1607060.M.M$
1607060.2M1013$1606036.M.M$1606036.2M$1606037.M1003$1605012.M.M$
1605012.2M$1605013.M1032$1603988.M.M$1603988.2M$1603989.M1057$
1602964.M$1602964.M.M$1602964.2M1013$1601940.M$1601940.M.M$1601940.2M
1029$1600916.M.M$1600916.2M$1600917.M1026$1599892.M.M$1599892.2M$
1599893.M1015$1598868.M$1598868.M.M$1598868.2M1006$1597844.M$1597844.
M.M$1597844.2M1024$1596820.M$1596820.M.M$1596820.2M1005$1595796.M$
1595796.M.M$1595796.2M1015$1594772.M.M$1594772.2M$1594773.M1019$
1593748.M.M$1593748.2M$1593749.M1020$1592724.M$1592724.M.M$1592724.2M
1021$1591700.M$1591700.M.M$1591700.2M1026$1590676.M$1590676.M.M$
1590676.2M1020$1589652.M$1589652.M.M$1589652.2M1025$1588628.M$
1588628.M.M$1588628.2M1054$1587604.M$1587604.M.M$1587604.2M1021$
1586580.M$1586580.M.M$1586580.2M1018$1585556.M$1585556.M.M$1585556.2M
1022$1584532.M$1584532.M.M$1584532.2M1008$1583508.M$1583508.M.M$
1583508.2M1030$1582484.M$1582484.M.M$1582484.2M1015$1581460.M$
1581460.M.M$1581460.2M1035$1580436.M$1580436.M.M$1580436.2M1030$
1579412.M$1579412.M.M$1579412.2M1014$1578388.M$1578388.M.M$1578388.2M
1008$1577364.M$1577364.M.M$1577364.2M1040$1576340.M$1576340.M.M$
1576340.2M1023$1575316.M.M$1575316.2M$1575317.M1026$1574292.M.M$
1574292.2M$1574293.M1008$1573268.M$1573268.M.M$1573268.2M1016$
1572244.M$1572244.M.M$1572244.2M1024$1571220.M$1571220.M.M$1571220.2M
1019$1570196.M$1570196.M.M$1570196.2M1022$1569172.M$1569172.M.M$
1569172.2M979$1568148.M$1568148.M.M$1568148.2M1035$1567124.M.M$
1567124.2M$1567125.M1005$1566100.M.M$1566100.2M$1566101.M1056$
1565076.M.M$1565076.2M$1565077.M1020$1564052.M$1564052.M.M$1564052.2M
1018$1563028.M$1563028.M.M$1563028.2M1009$1562004.M.M$1562004.2M$
1562005.M1027$1560980.M.M$1560980.2M$1560981.M1013$1559956.M$1559956.
M.M$1559956.2M1023$1558932.M$1558932.M.M$1558932.2M1025$1557908.M$
1557908.M.M$1557908.2M1023$1556884.M$1556884.M.M$1556884.2M1015$
1555860.M$1555860.M.M$1555860.2M1009$1554836.M$1554836.M.M$1554836.2M
1030$1553812.M.M$1553812.2M$1553813.M1026$1552788.M.M$1552788.2M$
1552789.M1020$1551764.M$1551764.M.M$1551764.2M1019$1550740.M.M$
1550740.2M$1550741.M1034$1549716.M$1549716.M.M$1549716.2M1011$
1548692.M.M$1548692.2M$1548693.M1022$1547668.M$1547668.M.M$1547668.2M
1027$1546644.M$1546644.M.M$1546644.2M1019$1545620.M$1545620.M.M$
1545620.2M1022$1544596.M$1544596.M.M$1544596.2M1033$1543572.M$
1543572.M.M$1543572.2M1033$1542548.M$1542548.M.M$1542548.2M1010$
1541524.M.M$1541524.2M$1541525.M1035$1540500.M$1540500.M.M$1540500.2M
1019$1539476.M$1539476.M.M$1539476.2M1013$1538452.M$1538452.M.M$
1538452.2M1030$1537428.M.M$1537428.2M$1537429.M1028$1536404.M.M$
1536404.2M$1536405.M1003$1535380.M$1535380.M.M$1535380.2M1041$
1534356.M$1534356.M.M$1534356.2M1021$1533332.M$1533332.M.M$1533332.2M
1039$1532308.M$1532308.M.M$1532308.2M1014$1531284.M$1531284.M.M$
1531284.2M1022$1530260.M$1530260.M.M$1530260.2M1034$1529236.M$
1529236.M.M$1529236.2M1019$1528212.M$1528212.M.M$1528212.2M1030$
1527188.M$1527188.M.M$1527188.2M1007$1526164.M$1526164.M.M$1526164.2M
1028$1525140.M$1525140.M.M$1525140.2M1032$1524116.M$1524116.M.M$
1524116.2M1012$1523092.M$1523092.M.M$1523092.2M1022$1522068.M$
1522068.M.M$1522068.2M1028$1521044.M.M$1521044.2M$1521045.M1042$
1520020.M.M$1520020.2M$1520021.M1015$1518996.M.M$1518996.2M$1518997.M
1018$1517972.M.M$1517972.2M$1517973.M1023$1516948.M$1516948.M.M$
1516948.2M1022$1515924.M$1515924.M.M$1515924.2M1001$1514900.M$
1514900.M.M$1514900.2M1020$1513876.M.M$1513876.2M$1513877.M1043$
1512852.M$1512852.M.M$1512852.2M1015$1511828.M$1511828.M.M$1511828.2M
1030$1510804.M$1510804.M.M$1510804.2M1017$1509780.M$1509780.M.M$
1509780.2M1004$1508756.M$1508756.M.M$1508756.2M1020$1507732.M$
1507732.M.M$1507732.2M1017$1506708.M.M$1506708.2M$1506709.M1056$
1505684.M$1505684.M.M$1505684.2M1012$1504660.M.M$1504660.2M$1504661.M
1008$1503636.M.M$1503636.2M$1503637.M1026$1502612.M.M$1502612.2M$
1502613.M1025$1501588.M.M$1501588.2M$1501589.M1014$1500564.M.M$
1500564.2M$1500565.M1024$1499540.M.M$1499540.2M$1499541.M990$1498516.
M$1498516.M.M$1498516.2M1026$1497492.M.M$1497492.2M$1497493.M1027$
1496468.M.M$1496468.2M$1496469.M1032$1495444.M.M$1495444.2M$1495445.M
1016$1494420.M.M$1494420.2M$1494421.M1007$1493396.M.M$1493396.2M$
1493397.M1029$1492372.M.M$1492372.2M$1492373.M1025$1491348.M.M$
1491348.2M$1491349.M1027$1490324.M$1490324.M.M$1490324.2M1021$
1489300.M$1489300.M.M$1489300.2M1020$1488276.M.M$1488276.2M$1488277.M
1020$1487252.M$1487252.M.M$1487252.2M1021$1486228.M$1486228.M.M$
1486228.2M1030$1485204.M$1485204.M.M$1485204.2M1018$1484180.M$
1484180.M.M$1484180.2M1031$1483156.M$1483156.M.M$1483156.2M1008$
1482132.M$1482132.M.M$1482132.2M1025$1481108.M$1481108.M.M$1481108.2M
1037$1480084.M$1480084.M.M$1480084.2M1024$1479060.M$1479060.M.M$
1479060.2M1020$1478036.M$1478036.M.M$1478036.2M1015$1477012.M$
1477012.M.M$1477012.2M1054$1475988.M$1475988.M.M$1475988.2M1013$
1474964.M.M$1474964.2M$1474965.M1003$1473940.M.M$1473940.2M$1473941.M
1032$1472916.M.M$1472916.2M$1472917.M1057$1471892.M$1471892.M.M$
1471892.2M1013$1470868.M$1470868.M.M$1470868.2M1029$1469844.M.M$
1469844.2M$1469845.M1026$1468820.M.M$1468820.2M$1468821.M1015$
1467796.M$1467796.M.M$1467796.2M1006$1466772.M$1466772.M.M$1466772.2M
1024$1465748.M$1465748.M.M$1465748.2M1005$1464724.M$1464724.M.M$
1464724.2M1015$1463700.M.M$1463700.2M$1463701.M1019$1462676.M.M$
1462676.2M$1462677.M1021$1461652.M.M$1461652.2M$1461653.M1010$
1460628.M.M$1460628.2M$1460629.M1032$1459604.M.M$1459604.2M$1459605.M
1022$1458580.M.M$1458580.2M$1458581.M1025$1457556.M.M$1457556.2M$
1457557.M1054$1456532.M$1456532.M.M$1456532.2M1021$1455508.M$1455508.
M.M$1455508.2M1018$1454484.M$1454484.M.M$1454484.2M1022$1453460.M$
1453460.M.M$1453460.2M1008$1452436.M$1452436.M.M$1452436.2M1030$
1451412.M$1451412.M.M$1451412.2M1015$1450388.M$1450388.M.M$1450388.2M
1035$1449364.M$1449364.M.M$1449364.2M1030$1448340.M$1448340.M.M$
1448340.2M1014$1447316.M$1447316.M.M$1447316.2M1008$1446292.M$
1446292.M.M$1446292.2M1040$1445268.M$1445268.M.M$1445268.2M1023$
1444244.M.M$1444244.2M$1444245.M1026$1443220.M.M$1443220.2M$1443221.M
1008$1442196.M$1442196.M.M$1442196.2M1016$1441172.M$1441172.M.M$
1441172.2M1024$1440148.M$1440148.M.M$1440148.2M1019$1439124.M$
1439124.M.M$1439124.2M1022$1438100.M$1438100.M.M$1438100.2M979$
1437076.M$1437076.M.M$1437076.2M1035$1436052.M.M$1436052.2M$1436053.M
1005$1435028.M.M$1435028.2M$1435029.M1056$1434004.M.M$1434004.2M$
1434005.M1020$1432980.M$1432980.M.M$1432980.2M1018$1431956.M$1431956.
M.M$1431956.2M1009$1430932.M.M$1430932.2M$1430933.M1027$1429908.M.M$
1429908.2M$1429909.M1013$1428884.M$1428884.M.M$1428884.2M1023$
1427860.M$1427860.M.M$1427860.2M1025$1426836.M$1426836.M.M$1426836.2M
1023$1425812.M$1425812.M.M$1425812.2M1015$1424788.M$1424788.M.M$
1424788.2M1009$1423764.M$1423764.M.M$1423764.2M1030$1422740.M.M$
1422740.2M$1422741.M1026$1421716.M.M$1421716.2M$1421717.M1020$
1420692.M$1420692.M.M$1420692.2M1019$1419668.M.M$1419668.2M$1419669.M
1034$1418644.M$1418644.M.M$1418644.2M1011$1417620.M.M$1417620.2M$
1417621.M1022$1416596.M$1416596.M.M$1416596.2M1027$1415572.M$1415572.
M.M$1415572.2M1019$1414548.M$1414548.M.M$1414548.2M1022$1413524.M$
1413524.M.M$1413524.2M1033$1412500.M$1412500.M.M$1412500.2M1033$
1411476.M$1411476.M.M$1411476.2M1010$1410452.M.M$1410452.2M$1410453.M
1035$1409428.M$1409428.M.M$1409428.2M1019$1408404.M$1408404.M.M$
1408404.2M1013$1407380.M$1407380.M.M$1407380.2M1030$1406356.M.M$
1406356.2M$1406357.M1028$1405332.M.M$1405332.2M$1405333.M1003$
1404308.M$1404308.M.M$1404308.2M1041$1403284.M$1403284.M.M$1403284.2M
1021$1402260.M$1402260.M.M$1402260.2M1039$1401236.M$1401236.M.M$
1401236.2M1014$1400212.M$1400212.M.M$1400212.2M1022$1399188.M$
1399188.M.M$1399188.2M1034$1398164.M$1398164.M.M$1398164.2M1019$
1397140.M$1397140.M.M$1397140.2M1030$1396116.M$1396116.M.M$1396116.2M
1007$1395092.M$1395092.M.M$1395092.2M1028$1394068.M$1394068.M.M$
1394068.2M1032$1393044.M$1393044.M.M$1393044.2M1012$1392020.M$
1392020.M.M$1392020.2M1022$1390996.M$1390996.M.M$1390996.2M1028$
1389972.M.M$1389972.2M$1389973.M1042$1388948.M.M$1388948.2M$1388949.M
1015$1387924.M.M$1387924.2M$1387925.M1018$1386900.M.M$1386900.2M$
1386901.M1023$1385876.M$1385876.M.M$1385876.2M1022$1384852.M$1384852.
M.M$1384852.2M1001$1383828.M$1383828.M.M$1383828.2M1020$1382804.M.M$
1382804.2M$1382805.M1043$1381780.M$1381780.M.M$1381780.2M1015$
1380756.M$1380756.M.M$1380756.2M1030$1379732.M$1379732.M.M$1379732.2M
1017$1378708.M$1378708.M.M$1378708.2M1004$1377684.M$1377684.M.M$
1377684.2M1020$1376660.M$1376660.M.M$1376660.2M1017$1375636.M.M$
1375636.2M$1375637.M1056$1374612.M$1374612.M.M$1374612.2M1012$
1373588.M.M$1373588.2M$1373589.M1008$1372564.M.M$1372564.2M$1372565.M
1026$1371540.M.M$1371540.2M$1371541.M1025$1370516.M.M$1370516.2M$
1370517.M1014$1369492.M.M$1369492.2M$1369493.M1024$1368468.M.M$
1368468.2M$1368469.M990$1367444.M$1367444.M.M$1367444.2M1026$1366420.
M.M$1366420.2M$1366421.M1027$1365396.M.M$1365396.2M$1365397.M1032$
1364372.M.M$1364372.2M$1364373.M1016$1363348.M.M$1363348.2M$1363349.M
1007$1362324.M.M$1362324.2M$1362325.M1029$1361300.M.M$1361300.2M$
1361301.M1025$1360276.M.M$1360276.2M$1360277.M1027$1359252.M$1359252.
M.M$1359252.2M1021$1358228.M$1358228.M.M$1358228.2M1020$1357204.M.M$
1357204.2M$1357205.M1020$1356180.M$1356180.M.M$1356180.2M1021$
1355156.M$1355156.M.M$1355156.2M1030$1354132.M$1354132.M.M$1354132.2M
1018$1353108.M$1353108.M.M$1353108.2M1031$1352084.M$1352084.M.M$
1352084.2M1008$1351060.M$1351060.M.M$1351060.2M1025$1350036.M$
1350036.M.M$1350036.2M1037$1349012.M$1349012.M.M$1349012.2M1024$
1347988.M$1347988.M.M$1347988.2M1020$1346964.M$1346964.M.M$1346964.2M
1015$1345940.M$1345940.M.M$1345940.2M1054$1344916.M$1344916.M.M$
1344916.2M1013$1343892.M.M$1343892.2M$1343893.M1003$1342868.M.M$
1342868.2M$1342869.M1032$1341844.M.M$1341844.2M$1341845.M1057$
1340820.M$1340820.M.M$1340820.2M1013$1339796.M$1339796.M.M$1339796.2M
1029$1338772.M.M$1338772.2M$1338773.M1026$1337748.M.M$1337748.2M$
1337749.M996$1336724.M$1336724.M.M$1336724.2M1019$1335700.M$1335700.M
.M$1335700.2M1020$1334676.M$1334676.M.M$1334676.2M1026$1333652.M$
1333652.M.M$1333652.2M998$1332628.M$1332628.M.M$1332628.2M1012$
1331604.M$1331604.M.M$1331604.2M1033$1330580.M$1330580.M.M$1330580.2M
1015$1329556.M$1329556.M.M$1329556.2M1022$1328532.M$1328532.M.M$
1328532.2M1028$1327508.M$1327508.M.M$1327508.2M1020$1326484.M$
1326484.M.M$1326484.2M1024$1325460.M$1325460.M.M$1325460.2M262624$
1062850.M.M$1062850.2M$1062851.M105$1062729.M.M$1062729.2M$1062730.M
105$1062612.M$1062611.M$1062611.3M106$1062515.M$1062514.M$1062514.3M
105$1062401.M$1062400.M$1062400.3M112$1062297.M$1062296.M$1062296.3M
1059$1061269.M$1061267.2M$1061268.2M1021$1060244.M$1060244.M.M$
1060244.2M1018$1059220.M$1059220.M.M$1059220.2M1022$1058196.M$
1058196.M.M$1058196.2M1008$1057172.M$1057172.M.M$1057172.2M1030$
1056148.M$1056148.M.M$1056148.2M1015$1055124.M$1055124.M.M$1055124.2M
1035$1054100.M$1054100.M.M$1054100.2M1030$1053076.M$1053076.M.M$
1053076.2M1014$1052052.M$1052052.M.M$1052052.2M1008$1051028.M$
1051028.M.M$1051028.2M1040$1050004.M$1050004.M.M$1050004.2M1023$
1048980.M.M$1048980.2M$1048981.M1026$1047956.M.M$1047956.2M$1047957.M
1008$1046932.M$1046932.M.M$1046932.2M1016$1045908.M$1045908.M.M$
1045908.2M1024$1044884.M$1044884.M.M$1044884.2M1019$1043860.M$
1043860.M.M$1043860.2M1022$1042836.M$1042836.M.M$1042836.2M979$
1041812.M$1041812.M.M$1041812.2M1035$1040788.M.M$1040788.2M$1040789.M
1005$1039764.M.M$1039764.2M$1039765.M1056$1038740.M.M$1038740.2M$
1038741.M1020$1037716.M$1037716.M.M$1037716.2M1018$1036692.M$1036692.
M.M$1036692.2M1009$1035668.M.M$1035668.2M$1035669.M1027$1034644.M.M$
1034644.2M$1034645.M1013$1033620.M$1033620.M.M$1033620.2M1023$
1032596.M$1032596.M.M$1032596.2M1025$1031572.M$1031572.M.M$1031572.2M
1023$1030548.M$1030548.M.M$1030548.2M1015$1029524.M$1029524.M.M$
1029524.2M1009$1028500.M$1028500.M.M$1028500.2M1030$1027476.M.M$
1027476.2M$1027477.M1026$1026452.M.M$1026452.2M$1026453.M1020$
1025428.M$1025428.M.M$1025428.2M1019$1024404.M.M$1024404.2M$1024405.M
1034$1023380.M$1023380.M.M$1023380.2M1011$1022356.M.M$1022356.2M$
1022357.M1022$1021332.M$1021332.M.M$1021332.2M1027$1020308.M$1020308.
M.M$1020308.2M1019$1019284.M$1019284.M.M$1019284.2M1022$1018260.M$
1018260.M.M$1018260.2M1033$1017236.M$1017236.M.M$1017236.2M1033$
1016212.M$1016212.M.M$1016212.2M1010$1015188.M.M$1015188.2M$1015189.M
1035$1014164.M$1014164.M.M$1014164.2M1019$1013140.M$1013140.M.M$
1013140.2M1013$1012116.M$1012116.M.M$1012116.2M1030$1011092.M.M$
1011092.2M$1011093.M1028$1010068.M.M$1010068.2M$1010069.M1003$
1009044.M$1009044.M.M$1009044.2M1041$1008020.M$1008020.M.M$1008020.2M
1021$1006996.M$1006996.M.M$1006996.2M1039$1005972.M$1005972.M.M$
1005972.2M1014$1004948.M$1004948.M.M$1004948.2M1022$1003924.M$
1003924.M.M$1003924.2M1034$1002900.M$1002900.M.M$1002900.2M1019$
1001876.M$1001876.M.M$1001876.2M1030$1000852.M$1000852.M.M$1000852.2M
1007$999828.M$999828.M.M$999828.2M1028$998804.M$998804.M.M$998804.2M
1032$997780.M$997780.M.M$997780.2M1012$996756.M$996756.M.M$996756.2M
1022$995732.M$995732.M.M$995732.2M1028$994708.M.M$994708.2M$994709.M
1042$993684.M.M$993684.2M$993685.M1015$992660.M.M$992660.2M$992661.M
1018$991636.M.M$991636.2M$991637.M1023$990612.M$990612.M.M$990612.2M
1022$989588.M$989588.M.M$989588.2M1001$988564.M$988564.M.M$988564.2M
1020$987540.M.M$987540.2M$987541.M1043$986516.M$986516.M.M$986516.2M
1015$985492.M$985492.M.M$985492.2M1030$984468.M$984468.M.M$984468.2M
1017$983444.M$983444.M.M$983444.2M1004$982420.M$982420.M.M$982420.2M
1020$981396.M$981396.M.M$981396.2M1017$980372.M.M$980372.2M$980373.M
1056$979348.M$979348.M.M$979348.2M1012$978324.M.M$978324.2M$978325.M
1008$977300.M.M$977300.2M$977301.M1026$976276.M.M$976276.2M$976277.M
1025$975252.M.M$975252.2M$975253.M1014$974228.M.M$974228.2M$974229.M
1024$973204.M.M$973204.2M$973205.M990$972180.M$972180.M.M$972180.2M
1026$971156.M.M$971156.2M$971157.M1027$970132.M.M$970132.2M$970133.M
1032$969108.M.M$969108.2M$969109.M1016$968084.M.M$968084.2M$968085.M
1007$967060.M.M$967060.2M$967061.M1029$966036.M.M$966036.2M$966037.M
1025$965012.M.M$965012.2M$965013.M1027$963988.M$963988.M.M$963988.2M
1021$962964.M$962964.M.M$962964.2M1020$961940.M.M$961940.2M$961941.M
1020$960916.M$960916.M.M$960916.2M1021$959892.M$959892.M.M$959892.2M
1030$958868.M$958868.M.M$958868.2M1018$957844.M$957844.M.M$957844.2M
1031$956820.M$956820.M.M$956820.2M1008$955796.M$955796.M.M$955796.2M
1025$954772.M$954772.M.M$954772.2M1037$953748.M$953748.M.M$953748.2M
1024$952724.M$952724.M.M$952724.2M1020$951700.M$951700.M.M$951700.2M
1015$950676.M$950676.M.M$950676.2M1054$949652.M$949652.M.M$949652.2M
1013$948628.M.M$948628.2M$948629.M1003$947604.M.M$947604.2M$947605.M
1032$946580.M.M$946580.2M$946581.M1057$945556.M$945556.M.M$945556.2M
1013$944532.M$944532.M.M$944532.2M1029$943508.M.M$943508.2M$943509.M
1026$942484.M.M$942484.2M$942485.M1015$941460.M$941460.M.M$941460.2M
1006$940436.M$940436.M.M$940436.2M1024$939412.M$939412.M.M$939412.2M
1005$938388.M$938388.M.M$938388.2M1015$937364.M.M$937364.2M$937365.M
1018$936340.M.M$936340.2M$936341.M1019$935316.M$935316.M.M$935316.2M
1021$934292.M$934292.M.M$934292.2M1036$933268.M.M$933268.2M$933269.M
1005$932244.M.M$932244.2M$932245.M1029$931220.M.M$931220.2M$931221.M
1063$930196.M$930196.M.M$930196.2M1021$929172.M$929172.M.M$929172.2M
1018$928148.M$928148.M.M$928148.2M1022$927124.M$927124.M.M$927124.2M
1008$926100.M$926100.M.M$926100.2M1030$925076.M$925076.M.M$925076.2M
1015$924052.M$924052.M.M$924052.2M1035$923028.M$923028.M.M$923028.2M
1030$922004.M$922004.M.M$922004.2M1014$920980.M$920980.M.M$920980.2M
1008$919956.M$919956.M.M$919956.2M1040$918932.M$918932.M.M$918932.2M
1023$917908.M.M$917908.2M$917909.M1026$916884.M.M$916884.2M$916885.M
1008$915860.M$915860.M.M$915860.2M1016$914836.M$914836.M.M$914836.2M
1024$913812.M$913812.M.M$913812.2M1019$912788.M$912788.M.M$912788.2M
1022$911764.M$911764.M.M$911764.2M979$910740.M$910740.M.M$910740.2M
1035$909716.M.M$909716.2M$909717.M1005$908692.M.M$908692.2M$908693.M
1056$907668.M.M$907668.2M$907669.M1020$906644.M$906644.M.M$906644.2M
1018$905620.M$905620.M.M$905620.2M1009$904596.M.M$904596.2M$904597.M
1027$903572.M.M$903572.2M$903573.M1013$902548.M$902548.M.M$902548.2M
1023$901524.M$901524.M.M$901524.2M1025$900500.M$900500.M.M$900500.2M
1023$899476.M$899476.M.M$899476.2M1015$898452.M$898452.M.M$898452.2M
1009$897428.M$897428.M.M$897428.2M1030$896404.M.M$896404.2M$896405.M
1026$895380.M.M$895380.2M$895381.M1020$894356.M$894356.M.M$894356.2M
1019$893332.M.M$893332.2M$893333.M1034$892308.M$892308.M.M$892308.2M
1011$891284.M.M$891284.2M$891285.M1022$890260.M$890260.M.M$890260.2M
1027$889236.M$889236.M.M$889236.2M1019$888212.M$888212.M.M$888212.2M
1022$887188.M$887188.M.M$887188.2M1033$886164.M$886164.M.M$886164.2M
1033$885140.M$885140.M.M$885140.2M1010$884116.M.M$884116.2M$884117.M
1035$883092.M$883092.M.M$883092.2M1019$882068.M$882068.M.M$882068.2M
1013$881044.M$881044.M.M$881044.2M1030$880020.M.M$880020.2M$880021.M
1028$878996.M.M$878996.2M$878997.M1003$877972.M$877972.M.M$877972.2M
1041$876948.M$876948.M.M$876948.2M1021$875924.M$875924.M.M$875924.2M
1039$874900.M$874900.M.M$874900.2M1014$873876.M$873876.M.M$873876.2M
1022$872852.M$872852.M.M$872852.2M1034$871828.M$871828.M.M$871828.2M
1019$870804.M$870804.M.M$870804.2M1030$869780.M$869780.M.M$869780.2M
1007$868756.M$868756.M.M$868756.2M1028$867732.M$867732.M.M$867732.2M
1032$866708.M$866708.M.M$866708.2M1012$865684.M$865684.M.M$865684.2M
1022$864660.M$864660.M.M$864660.2M1028$863636.M.M$863636.2M$863637.M
1042$862612.M.M$862612.2M$862613.M1015$861588.M.M$861588.2M$861589.M
1018$860564.M.M$860564.2M$860565.M1023$859540.M$859540.M.M$859540.2M
1022$858516.M$858516.M.M$858516.2M1001$857492.M$857492.M.M$857492.2M
1020$856468.M.M$856468.2M$856469.M1043$855444.M$855444.M.M$855444.2M
1015$854420.M$854420.M.M$854420.2M1030$853396.M$853396.M.M$853396.2M
1017$852372.M$852372.M.M$852372.2M1004$851348.M$851348.M.M$851348.2M
1020$850324.M$850324.M.M$850324.2M1017$849300.M.M$849300.2M$849301.M
1056$848276.M$848276.M.M$848276.2M1012$847252.M.M$847252.2M$847253.M
1008$846228.M.M$846228.2M$846229.M1026$845204.M.M$845204.2M$845205.M
1025$844180.M.M$844180.2M$844181.M1014$843156.M.M$843156.2M$843157.M
1024$842132.M.M$842132.2M$842133.M990$841108.M$841108.M.M$841108.2M
1026$840084.M.M$840084.2M$840085.M1027$839060.M.M$839060.2M$839061.M
1032$838036.M.M$838036.2M$838037.M1016$837012.M.M$837012.2M$837013.M
1007$835988.M.M$835988.2M$835989.M1029$834964.M.M$834964.2M$834965.M
1025$833940.M.M$833940.2M$833941.M1027$832916.M$832916.M.M$832916.2M
1021$831892.M$831892.M.M$831892.2M1020$830868.M.M$830868.2M$830869.M
1020$829844.M$829844.M.M$829844.2M1021$828820.M$828820.M.M$828820.2M
1030$827796.M$827796.M.M$827796.2M1018$826772.M$826772.M.M$826772.2M
1031$825748.M$825748.M.M$825748.2M1008$824724.M$824724.M.M$824724.2M
1025$823700.M$823700.M.M$823700.2M1037$822676.M$822676.M.M$822676.2M
1024$821652.M$821652.M.M$821652.2M1020$820628.M$820628.M.M$820628.2M
1015$819604.M$819604.M.M$819604.2M1054$818580.M$818580.M.M$818580.2M
1013$817556.M.M$817556.2M$817557.M1003$816532.M.M$816532.2M$816533.M
1032$815508.M.M$815508.2M$815509.M1057$814484.M$814484.M.M$814484.2M
1013$813460.M$813460.M.M$813460.2M1029$812436.M.M$812436.2M$812437.M
1026$811412.M.M$811412.2M$811413.M1015$810388.M$810388.M.M$810388.2M
1006$809364.M$809364.M.M$809364.2M1024$808340.M$808340.M.M$808340.2M
1005$807316.M$807316.M.M$807316.2M1015$806292.M.M$806292.2M$806293.M
1019$805268.M.M$805268.2M$805269.M1019$804244.M.M$804244.2M$804245.M
1019$803220.M.M$803220.2M$803221.M1007$802196.M.M$802196.2M$802197.M
1044$801172.M$801172.M.M$801172.2M1007$800148.M$800148.M.M$800148.2M
1029$799124.M$799124.M.M$799124.2M1063$798101.M$798099.2M$798100.2M
1021$797076.M$797076.M.M$797076.2M1018$796052.M$796052.M.M$796052.2M
1022$795028.M$795028.M.M$795028.2M1008$794004.M$794004.M.M$794004.2M
1030$792980.M$792980.M.M$792980.2M1015$791956.M$791956.M.M$791956.2M
1035$790932.M$790932.M.M$790932.2M1030$789908.M$789908.M.M$789908.2M
1014$788884.M$788884.M.M$788884.2M1008$787860.M$787860.M.M$787860.2M
1040$786836.M$786836.M.M$786836.2M1023$785812.M.M$785812.2M$785813.M
1026$784788.M.M$784788.2M$784789.M1008$783764.M$783764.M.M$783764.2M
1016$782740.M$782740.M.M$782740.2M1024$781716.M$781716.M.M$781716.2M
1019$780692.M$780692.M.M$780692.2M1022$779668.M$779668.M.M$779668.2M
979$778644.M$778644.M.M$778644.2M1035$777620.M.M$777620.2M$777621.M
1005$776596.M.M$776596.2M$776597.M1056$775572.M.M$775572.2M$775573.M
1020$774548.M$774548.M.M$774548.2M1018$773524.M$773524.M.M$773524.2M
1009$772500.M.M$772500.2M$772501.M1027$771476.M.M$771476.2M$771477.M
1013$770452.M$770452.M.M$770452.2M1023$769428.M$769428.M.M$769428.2M
1025$768404.M$768404.M.M$768404.2M1023$767380.M$767380.M.M$767380.2M
1015$766356.M$766356.M.M$766356.2M1009$765332.M$765332.M.M$765332.2M
1030$764308.M.M$764308.2M$764309.M1026$763284.M.M$763284.2M$763285.M
1020$762260.M$762260.M.M$762260.2M1019$761236.M.M$761236.2M$761237.M
1034$760212.M$760212.M.M$760212.2M1011$759188.M.M$759188.2M$759189.M
1022$758164.M$758164.M.M$758164.2M1027$757140.M$757140.M.M$757140.2M
1019$756116.M$756116.M.M$756116.2M1022$755092.M$755092.M.M$755092.2M
1033$754068.M$754068.M.M$754068.2M1033$753044.M$753044.M.M$753044.2M
1010$752020.M.M$752020.2M$752021.M1035$750996.M$750996.M.M$750996.2M
1019$749972.M$749972.M.M$749972.2M1013$748948.M$748948.M.M$748948.2M
1030$747924.M.M$747924.2M$747925.M1028$746900.M.M$746900.2M$746901.M
1003$745876.M$745876.M.M$745876.2M1041$744852.M$744852.M.M$744852.2M
1021$743828.M$743828.M.M$743828.2M1039$742804.M$742804.M.M$742804.2M
1014$741780.M$741780.M.M$741780.2M1022$740756.M$740756.M.M$740756.2M
1034$739732.M$739732.M.M$739732.2M1019$738708.M$738708.M.M$738708.2M
1030$737684.M$737684.M.M$737684.2M1007$736660.M$736660.M.M$736660.2M
1028$735636.M$735636.M.M$735636.2M1032$734612.M$734612.M.M$734612.2M
1012$733588.M$733588.M.M$733588.2M1022$732564.M$732564.M.M$732564.2M
1028$731540.M.M$731540.2M$731541.M1042$730516.M.M$730516.2M$730517.M
1015$729492.M.M$729492.2M$729493.M1018$728468.M.M$728468.2M$728469.M
1023$727444.M$727444.M.M$727444.2M1022$726420.M$726420.M.M$726420.2M
1001$725396.M$725396.M.M$725396.2M1020$724372.M.M$724372.2M$724373.M
1043$723348.M$723348.M.M$723348.2M1015$722324.M$722324.M.M$722324.2M
1030$721300.M$721300.M.M$721300.2M1017$720276.M$720276.M.M$720276.2M
1004$719252.M$719252.M.M$719252.2M1020$718228.M$718228.M.M$718228.2M
1017$717204.M.M$717204.2M$717205.M1056$716180.M$716180.M.M$716180.2M
1012$715156.M.M$715156.2M$715157.M1008$714132.M.M$714132.2M$714133.M
1026$713108.M.M$713108.2M$713109.M1025$712084.M.M$712084.2M$712085.M
1014$711060.M.M$711060.2M$711061.M1024$710036.M.M$710036.2M$710037.M
990$709012.M$709012.M.M$709012.2M1026$707988.M.M$707988.2M$707989.M
1027$706964.M.M$706964.2M$706965.M1032$705940.M.M$705940.2M$705941.M
1016$704916.M.M$704916.2M$704917.M1007$703892.M.M$703892.2M$703893.M
1029$702868.M.M$702868.2M$702869.M1025$701844.M.M$701844.2M$701845.M
1027$700820.M$700820.M.M$700820.2M1021$699796.M$699796.M.M$699796.2M
1020$698772.M.M$698772.2M$698773.M1020$697748.M$697748.M.M$697748.2M
1021$696724.M$696724.M.M$696724.2M1030$695700.M$695700.M.M$695700.2M
1018$694676.M$694676.M.M$694676.2M1031$693652.M$693652.M.M$693652.2M
1008$692628.M$692628.M.M$692628.2M1025$691604.M$691604.M.M$691604.2M
1037$690580.M$690580.M.M$690580.2M1024$689556.M$689556.M.M$689556.2M
1020$688532.M$688532.M.M$688532.2M1015$687508.M$687508.M.M$687508.2M
1054$686484.M$686484.M.M$686484.2M1013$685460.M.M$685460.2M$685461.M
1003$684436.M.M$684436.2M$684437.M1032$683412.M.M$683412.2M$683413.M
1057$682388.M$682388.M.M$682388.2M1013$681364.M$681364.M.M$681364.2M
1029$680340.M.M$680340.2M$680341.M1026$679316.M.M$679316.2M$679317.M
1015$678292.M$678292.M.M$678292.2M1006$677268.M$677268.M.M$677268.2M
1024$676244.M$676244.M.M$676244.2M1005$675220.M$675220.M.M$675220.2M
1015$674196.M.M$674196.2M$674197.M1019$673172.M.M$673172.2M$673173.M
1014$672148.M.M$672148.2M$672149.M1020$671124.M.M$671124.2M$671125.M
1035$670100.M.M$670100.2M$670101.M1020$669076.M.M$669076.2M$669077.M
1018$668052.M.M$668052.2M$668053.M1018$667028.M.M$667028.2M$667029.M
1063$666004.M$666004.M.M$666004.2M1021$664980.M.M$664980.2M$664981.M
1018$663956.M.M$663956.2M$663957.M1022$662932.M.M$662932.2M$662933.M
1008$661908.M.M$661908.2M$661909.M1030$660884.M.M$660884.2M$660885.M
1015$659860.M.M$659860.2M$659861.M1035$658836.M.M$658836.2M$658837.M
1030$657812.M.M$657812.2M$657813.M1014$656788.M.M$656788.2M$656789.M
1008$655764.M.M$655764.2M$655765.M1040$654740.M.M$654740.2M$654741.M
1023$653716.M$653716.M.M$653716.2M1026$652692.M$652692.M.M$652692.2M
1008$651668.M.M$651668.2M$651669.M1016$650644.M.M$650644.2M$650645.M
1024$649620.M.M$649620.2M$649621.M1019$648596.M.M$648596.2M$648597.M
1022$647572.M.M$647572.2M$647573.M979$646548.M.M$646548.2M$646549.M
1035$645524.M$645524.M.M$645524.2M1005$644500.M$644500.M.M$644500.2M
1056$643476.M$643476.M.M$643476.2M1020$642452.M.M$642452.2M$642453.M
1018$641428.M.M$641428.2M$641429.M1009$640404.M$640404.M.M$640404.2M
1027$639380.M$639380.M.M$639380.2M1013$638356.M.M$638356.2M$638357.M
1023$637332.M.M$637332.2M$637333.M1025$636308.M.M$636308.2M$636309.M
1023$635284.M.M$635284.2M$635285.M1015$634260.M.M$634260.2M$634261.M
1009$633236.M.M$633236.2M$633237.M1030$632212.M$632212.M.M$632212.2M
1026$631188.M$631188.M.M$631188.2M1020$630164.M.M$630164.2M$630165.M
1019$629140.M$629140.M.M$629140.2M1034$628116.M.M$628116.2M$628117.M
1011$627092.M$627092.M.M$627092.2M1022$626068.M.M$626068.2M$626069.M
1027$625044.M.M$625044.2M$625045.M1019$624020.M.M$624020.2M$624021.M
1022$622996.M.M$622996.2M$622997.M1033$621972.M.M$621972.2M$621973.M
1033$620948.M.M$620948.2M$620949.M1010$619924.M$619924.M.M$619924.2M
1035$618900.M.M$618900.2M$618901.M1019$617876.M.M$617876.2M$617877.M
1013$616852.M.M$616852.2M$616853.M1030$615828.M$615828.M.M$615828.2M
1028$614804.M$614804.M.M$614804.2M1003$613780.M.M$613780.2M$613781.M
1041$612756.M.M$612756.2M$612757.M1021$611732.M.M$611732.2M$611733.M
1039$610708.M.M$610708.2M$610709.M1014$609684.M.M$609684.2M$609685.M
1022$608660.M.M$608660.2M$608661.M1034$607636.M.M$607636.2M$607637.M
1019$606612.M.M$606612.2M$606613.M1030$605588.M.M$605588.2M$605589.M
1007$604564.M.M$604564.2M$604565.M1028$603540.M.M$603540.2M$603541.M
1032$602516.M.M$602516.2M$602517.M1012$601492.M.M$601492.2M$601493.M
1022$600468.M.M$600468.2M$600469.M1028$599444.M$599444.M.M$599444.2M
1042$598420.M$598420.M.M$598420.2M1015$597396.M$597396.M.M$597396.2M
1018$596372.M$596372.M.M$596372.2M1023$595348.M.M$595348.2M$595349.M
1022$594324.M.M$594324.2M$594325.M1001$593300.M.M$593300.2M$593301.M
1020$592276.M$592276.M.M$592276.2M1043$591252.M.M$591252.2M$591253.M
1015$590228.M.M$590228.2M$590229.M1030$589204.M.M$589204.2M$589205.M
1017$588180.M.M$588180.2M$588181.M1004$587156.M.M$587156.2M$587157.M
1020$586132.M.M$586132.2M$586133.M1017$585108.M$585108.M.M$585108.2M
1056$584084.M.M$584084.2M$584085.M1012$583060.M$583060.M.M$583060.2M
1008$582036.M$582036.M.M$582036.2M1026$581012.M$581012.M.M$581012.2M
1025$579988.M$579988.M.M$579988.2M1014$578964.M$578964.M.M$578964.2M
1024$577940.M$577940.M.M$577940.2M990$576916.M.M$576916.2M$576917.M
1026$575892.M$575892.M.M$575892.2M1027$574868.M$574868.M.M$574868.2M
1032$573844.M$573844.M.M$573844.2M1016$572820.M$572820.M.M$572820.2M
1007$571796.M$571796.M.M$571796.2M1029$570772.M$570772.M.M$570772.2M
1025$569748.M$569748.M.M$569748.2M1027$568724.M.M$568724.2M$568725.M
1021$567700.M.M$567700.2M$567701.M1020$566676.M$566676.M.M$566676.2M
1020$565652.M.M$565652.2M$565653.M1021$564628.M.M$564628.2M$564629.M
1030$563604.M.M$563604.2M$563605.M1018$562580.M.M$562580.2M$562581.M
1031$561556.M.M$561556.2M$561557.M1008$560532.M.M$560532.2M$560533.M
1025$559508.M.M$559508.2M$559509.M1037$558484.M.M$558484.2M$558485.M
1024$557460.M.M$557460.2M$557461.M1020$556436.M.M$556436.2M$556437.M
1015$555412.M.M$555412.2M$555413.M1054$554388.M.M$554388.2M$554389.M
1013$553364.M$553364.M.M$553364.2M1003$552340.M$552340.M.M$552340.2M
1032$551316.M$551316.M.M$551316.2M1057$550292.M.M$550292.2M$550293.M
1013$549268.M.M$549268.2M$549269.M1029$548244.M$548244.M.M$548244.2M
1026$547220.M$547220.M.M$547220.2M1015$546196.M.M$546196.2M$546197.M
1006$545172.M.M$545172.2M$545173.M1024$544148.M.M$544148.2M$544149.M
1005$543124.M.M$543124.2M$543125.M1015$542100.M$542100.M.M$542100.2M
1019$541076.M$541076.M.M$541076.2M1003$540052.M.M$540052.2M$540053.M
1039$539028.M$539028.M.M$539028.2M1019$538004.M.M$538004.2M$538005.M
1029$536980.M.M$536980.2M$536981.M1013$535956.M.M$535956.2M$535957.M
1054$534932.M$534932.M.M$534932.2M1021$533908.M$533908.M.M$533908.2M
1018$532884.M$532884.M.M$532884.2M1022$531860.M$531860.M.M$531860.2M
1008$530836.M$530836.M.M$530836.2M1030$529812.M$529812.M.M$529812.2M
1015$528788.M$528788.M.M$528788.2M1035$527764.M$527764.M.M$527764.2M
1030$526740.M$526740.M.M$526740.2M1014$525716.M$525716.M.M$525716.2M
1008$524692.M$524692.M.M$524692.2M1040$523668.M$523668.M.M$523668.2M
1023$522644.M.M$522644.2M$522645.M1026$521620.M.M$521620.2M$521621.M
1008$520596.M$520596.M.M$520596.2M1016$519572.M$519572.M.M$519572.2M
1024$518548.M$518548.M.M$518548.2M1019$517524.M$517524.M.M$517524.2M
1022$516500.M$516500.M.M$516500.2M979$515476.M$515476.M.M$515476.2M
1035$514452.M.M$514452.2M$514453.M1005$513428.M.M$513428.2M$513429.M
1056$512404.M.M$512404.2M$512405.M1020$511380.M$511380.M.M$511380.2M
1018$510356.M$510356.M.M$510356.2M1009$509332.M.M$509332.2M$509333.M
1027$508308.M.M$508308.2M$508309.M1013$507284.M$507284.M.M$507284.2M
1023$506260.M$506260.M.M$506260.2M1025$505236.M$505236.M.M$505236.2M
1023$504212.M$504212.M.M$504212.2M1015$503188.M$503188.M.M$503188.2M
1009$502164.M$502164.M.M$502164.2M1030$501140.M.M$501140.2M$501141.M
1026$500116.M.M$500116.2M$500117.M1020$499092.M$499092.M.M$499092.2M
1019$498068.M.M$498068.2M$498069.M1034$497044.M$497044.M.M$497044.2M
1011$496020.M.M$496020.2M$496021.M1022$494996.M$494996.M.M$494996.2M
1027$493972.M$493972.M.M$493972.2M1019$492948.M$492948.M.M$492948.2M
1022$491924.M$491924.M.M$491924.2M1033$490900.M$490900.M.M$490900.2M
1033$489876.M$489876.M.M$489876.2M1010$488852.M.M$488852.2M$488853.M
1035$487828.M$487828.M.M$487828.2M1019$486804.M$486804.M.M$486804.2M
1013$485780.M$485780.M.M$485780.2M1030$484756.M.M$484756.2M$484757.M
1028$483732.M.M$483732.2M$483733.M1003$482708.M$482708.M.M$482708.2M
1041$481684.M$481684.M.M$481684.2M1021$480660.M$480660.M.M$480660.2M
1039$479636.M$479636.M.M$479636.2M1014$478612.M$478612.M.M$478612.2M
1022$477588.M$477588.M.M$477588.2M1034$476564.M$476564.M.M$476564.2M
1019$475540.M$475540.M.M$475540.2M1030$474516.M$474516.M.M$474516.2M
1007$473492.M$473492.M.M$473492.2M1028$472468.M$472468.M.M$472468.2M
1032$471444.M$471444.M.M$471444.2M1012$470420.M$470420.M.M$470420.2M
1022$469396.M$469396.M.M$469396.2M1028$468372.M.M$468372.2M$468373.M
1042$467348.M.M$467348.2M$467349.M1015$466324.M.M$466324.2M$466325.M
1018$465300.M.M$465300.2M$465301.M1023$464276.M$464276.M.M$464276.2M
1022$463252.M$463252.M.M$463252.2M1001$462228.M$462228.M.M$462228.2M
1020$461204.M.M$461204.2M$461205.M1043$460180.M$460180.M.M$460180.2M
1015$459156.M$459156.M.M$459156.2M1030$458132.M$458132.M.M$458132.2M
1017$457108.M$457108.M.M$457108.2M1004$456084.M$456084.M.M$456084.2M
1020$455060.M$455060.M.M$455060.2M1017$454036.M.M$454036.2M$454037.M
1056$453012.M$453012.M.M$453012.2M1012$451988.M.M$451988.2M$451989.M
1008$450964.M.M$450964.2M$450965.M1026$449940.M.M$449940.2M$449941.M
1025$448916.M.M$448916.2M$448917.M1014$447892.M.M$447892.2M$447893.M
1024$446868.M.M$446868.2M$446869.M990$445844.M$445844.M.M$445844.2M
1026$444820.M.M$444820.2M$444821.M1027$443796.M.M$443796.2M$443797.M
1032$442772.M.M$442772.2M$442773.M1016$441748.M.M$441748.2M$441749.M
1007$440724.M.M$440724.2M$440725.M1029$439700.M.M$439700.2M$439701.M
1025$438676.M.M$438676.2M$438677.M1027$437652.M$437652.M.M$437652.2M
1021$436628.M$436628.M.M$436628.2M1020$435604.M.M$435604.2M$435605.M
1020$434580.M$434580.M.M$434580.2M1021$433556.M$433556.M.M$433556.2M
1030$432532.M$432532.M.M$432532.2M1018$431508.M$431508.M.M$431508.2M
1031$430484.M$430484.M.M$430484.2M1008$429460.M$429460.M.M$429460.2M
1025$428436.M$428436.M.M$428436.2M1037$427412.M$427412.M.M$427412.2M
1024$426388.M$426388.M.M$426388.2M1020$425364.M$425364.M.M$425364.2M
1015$424340.M$424340.M.M$424340.2M1054$423316.M$423316.M.M$423316.2M
1013$422292.M.M$422292.2M$422293.M1003$421268.M.M$421268.2M$421269.M
1032$420244.M.M$420244.2M$420245.M1057$419220.M$419220.M.M$419220.2M
1013$418196.M$418196.M.M$418196.2M1029$417172.M.M$417172.2M$417173.M
1026$416148.M.M$416148.2M$416149.M1015$415124.M$415124.M.M$415124.2M
1006$414100.M$414100.M.M$414100.2M1024$413076.M$413076.M.M$413076.2M
1005$412052.M$412052.M.M$412052.2M1015$411028.M.M$411028.2M$411029.M
1019$410004.M.M$410004.2M$410005.M994$408980.M$408980.M.M$408980.2M
1044$407956.M.M$407956.2M$407957.M1022$406932.M.M$406932.2M$406933.M
1015$405908.M.M$405908.2M$405909.M1029$404884.M.M$404884.2M$404885.M
1012$403860.M.M$403860.2M$403861.M1063$402836.M$402836.M.M$402836.2M
1021$401812.M$401812.M.M$401812.2M1018$400788.M$400788.M.M$400788.2M
1022$399764.M$399764.M.M$399764.2M1008$398740.M$398740.M.M$398740.2M
1030$397716.M$397716.M.M$397716.2M1015$396692.M$396692.M.M$396692.2M
1035$395668.M$395668.M.M$395668.2M1030$394644.M$394644.M.M$394644.2M
1014$393620.M$393620.M.M$393620.2M1008$392596.M$392596.M.M$392596.2M
1040$391572.M$391572.M.M$391572.2M1023$390548.M.M$390548.2M$390549.M
1026$389524.M.M$389524.2M$389525.M1008$388500.M$388500.M.M$388500.2M
1016$387476.M$387476.M.M$387476.2M1024$386452.M$386452.M.M$386452.2M
1019$385428.M$385428.M.M$385428.2M1022$384404.M$384404.M.M$384404.2M
979$383380.M$383380.M.M$383380.2M1035$382356.M.M$382356.2M$382357.M
1005$381332.M.M$381332.2M$381333.M1056$380308.M.M$380308.2M$380309.M
1020$379284.M$379284.M.M$379284.2M1018$378260.M$378260.M.M$378260.2M
1009$377236.M.M$377236.2M$377237.M1027$376212.M.M$376212.2M$376213.M
1013$375188.M$375188.M.M$375188.2M1023$374164.M$374164.M.M$374164.2M
1025$373140.M$373140.M.M$373140.2M1023$372116.M$372116.M.M$372116.2M
1015$371092.M$371092.M.M$371092.2M1009$370068.M$370068.M.M$370068.2M
1030$369044.M.M$369044.2M$369045.M1026$368020.M.M$368020.2M$368021.M
1020$366996.M$366996.M.M$366996.2M1019$365972.M.M$365972.2M$365973.M
1034$364948.M$364948.M.M$364948.2M1011$363924.M.M$363924.2M$363925.M
1022$362900.M$362900.M.M$362900.2M1027$361876.M$361876.M.M$361876.2M
1019$360852.M$360852.M.M$360852.2M1022$359828.M$359828.M.M$359828.2M
1033$358804.M$358804.M.M$358804.2M1033$357780.M$357780.M.M$357780.2M
1010$356756.M.M$356756.2M$356757.M1035$355732.M$355732.M.M$355732.2M
1019$354708.M$354708.M.M$354708.2M1013$353684.M$353684.M.M$353684.2M
1030$352660.M.M$352660.2M$352661.M1028$351636.M.M$351636.2M$351637.M
1003$350612.M$350612.M.M$350612.2M1041$349588.M$349588.M.M$349588.2M
1021$348564.M$348564.M.M$348564.2M1039$347540.M$347540.M.M$347540.2M
1014$346516.M$346516.M.M$346516.2M1022$345492.M$345492.M.M$345492.2M
1034$344468.M$344468.M.M$344468.2M1019$343444.M$343444.M.M$343444.2M
1030$342420.M$342420.M.M$342420.2M1007$341396.M$341396.M.M$341396.2M
1028$340372.M$340372.M.M$340372.2M1032$339348.M$339348.M.M$339348.2M
1012$338324.M$338324.M.M$338324.2M1022$337300.M$337300.M.M$337300.2M
1028$336276.M.M$336276.2M$336277.M1042$335252.M.M$335252.2M$335253.M
1015$334228.M.M$334228.2M$334229.M1018$333204.M.M$333204.2M$333205.M
1023$332180.M$332180.M.M$332180.2M1022$331156.M$331156.M.M$331156.2M
1001$330132.M$330132.M.M$330132.2M1020$329108.M.M$329108.2M$329109.M
1043$328084.M$328084.M.M$328084.2M1015$327060.M$327060.M.M$327060.2M
1030$326036.M$326036.M.M$326036.2M1017$325012.M$325012.M.M$325012.2M
1004$323988.M$323988.M.M$323988.2M1020$322964.M$322964.M.M$322964.2M
1017$321940.M.M$321940.2M$321941.M1056$320916.M$320916.M.M$320916.2M
1012$319892.M.M$319892.2M$319893.M1008$318868.M.M$318868.2M$318869.M
1026$317844.M.M$317844.2M$317845.M1025$316820.M.M$316820.2M$316821.M
1014$315796.M.M$315796.2M$315797.M1024$314772.M.M$314772.2M$314773.M
990$313748.M$313748.M.M$313748.2M1026$312724.M.M$312724.2M$312725.M
1027$311700.M.M$311700.2M$311701.M1032$310676.M.M$310676.2M$310677.M
1016$309652.M.M$309652.2M$309653.M1007$308628.M.M$308628.2M$308629.M
1029$307604.M.M$307604.2M$307605.M1025$306580.M.M$306580.2M$306581.M
1027$305556.M$305556.M.M$305556.2M1021$304532.M$304532.M.M$304532.2M
1020$303508.M.M$303508.2M$303509.M1020$302484.M$302484.M.M$302484.2M
1021$301460.M$301460.M.M$301460.2M1030$300436.M$300436.M.M$300436.2M
1018$299412.M$299412.M.M$299412.2M1031$298388.M$298388.M.M$298388.2M
1008$297364.M$297364.M.M$297364.2M1025$296340.M$296340.M.M$296340.2M
1037$295316.M$295316.M.M$295316.2M1024$294292.M$294292.M.M$294292.2M
1020$293268.M$293268.M.M$293268.2M1015$292244.M$292244.M.M$292244.2M
1054$291220.M$291220.M.M$291220.2M1013$290196.M.M$290196.2M$290197.M
1003$289172.M.M$289172.2M$289173.M1032$288148.M.M$288148.2M$288149.M
1057$287124.M$287124.M.M$287124.2M1013$286100.M$286100.M.M$286100.2M
1029$285076.M.M$285076.2M$285077.M1026$284052.M.M$284052.2M$284053.M
1003$283028.M$283028.M.M$283028.2M1005$282004.M$282004.M.M$282004.2M
1031$280980.M$280980.M.M$280980.2M1015$279956.M.M$279956.2M$279957.M
1019$278932.M.M$278932.2M$278933.M1022$277908.M$277908.M.M$277908.2M
1015$276884.M.M$276884.2M$276885.M1026$275860.M.M$275860.2M$275861.M
1019$274836.M.M$274836.2M$274837.M1025$273812.M.M$273812.2M$273813.M
1054$272788.M$272788.M.M$272788.2M1021$271764.M$271764.M.M$271764.2M
1018$270740.M$270740.M.M$270740.2M1022$269716.M$269716.M.M$269716.2M
1008$268692.M$268692.M.M$268692.2M1030$267668.M$267668.M.M$267668.2M
1015$266644.M$266644.M.M$266644.2M1035$265620.M$265620.M.M$265620.2M
1030$264596.M$264596.M.M$264596.2M1014$263572.M$263572.M.M$263572.2M
1008$262548.M$262548.M.M$262548.2M1040$261524.M$261524.M.M$261524.2M
1023$260500.M.M$260500.2M$260501.M1026$259476.M.M$259476.2M$259477.M
1008$258452.M$258452.M.M$258452.2M1016$257428.M$257428.M.M$257428.2M
1024$256404.M$256404.M.M$256404.2M1019$255380.M$255380.M.M$255380.2M
1022$254356.M$254356.M.M$254356.2M979$253332.M$253332.M.M$253332.2M
1035$252308.M.M$252308.2M$252309.M1005$251284.M.M$251284.2M$251285.M
1056$250260.M.M$250260.2M$250261.M1020$249236.M$249236.M.M$249236.2M
1018$248212.M$248212.M.M$248212.2M1009$247188.M.M$247188.2M$247189.M
1027$246164.M.M$246164.2M$246165.M1013$245140.M$245140.M.M$245140.2M
1023$244116.M$244116.M.M$244116.2M1025$243092.M$243092.M.M$243092.2M
1023$242068.M$242068.M.M$242068.2M1015$241044.M$241044.M.M$241044.2M
1009$240020.M$240020.M.M$240020.2M1030$238996.M.M$238996.2M$238997.M
1026$237972.M.M$237972.2M$237973.M1020$236948.M$236948.M.M$236948.2M
1019$235924.M.M$235924.2M$235925.M1034$234900.M$234900.M.M$234900.2M
1011$233876.M.M$233876.2M$233877.M1022$232852.M$232852.M.M$232852.2M
1027$231828.M$231828.M.M$231828.2M1019$230804.M$230804.M.M$230804.2M
1022$229780.M$229780.M.M$229780.2M1033$228756.M$228756.M.M$228756.2M
1033$227732.M$227732.M.M$227732.2M1010$226708.M.M$226708.2M$226709.M
1035$225684.M$225684.M.M$225684.2M1019$224660.M$224660.M.M$224660.2M
1013$223636.M$223636.M.M$223636.2M1030$222612.M.M$222612.2M$222613.M
1028$221588.M.M$221588.2M$221589.M1003$220564.M$220564.M.M$220564.2M
1041$219540.M$219540.M.M$219540.2M1021$218516.M$218516.M.M$218516.2M
1039$217492.M$217492.M.M$217492.2M1014$216468.M$216468.M.M$216468.2M
1022$215444.M$215444.M.M$215444.2M1034$214420.M$214420.M.M$214420.2M
1019$213396.M$213396.M.M$213396.2M1030$212372.M$212372.M.M$212372.2M
1007$211348.M$211348.M.M$211348.2M1028$210324.M$210324.M.M$210324.2M
1032$209300.M$209300.M.M$209300.2M1012$208276.M$208276.M.M$208276.2M
1022$207252.M$207252.M.M$207252.2M1028$206228.M.M$206228.2M$206229.M
1042$205204.M.M$205204.2M$205205.M1015$204180.M.M$204180.2M$204181.M
1018$203156.M.M$203156.2M$203157.M1023$202132.M$202132.M.M$202132.2M
1022$201108.M$201108.M.M$201108.2M1001$200084.M$200084.M.M$200084.2M
1020$199060.M.M$199060.2M$199061.M1043$198036.M$198036.M.M$198036.2M
1015$197012.M$197012.M.M$197012.2M1030$195988.M$195988.M.M$195988.2M
1017$194964.M$194964.M.M$194964.2M1004$193940.M$193940.M.M$193940.2M
1020$192916.M$192916.M.M$192916.2M1017$191892.M.M$191892.2M$191893.M
1056$190868.M$190868.M.M$190868.2M1012$189844.M.M$189844.2M$189845.M
1008$188820.M.M$188820.2M$188821.M1026$187796.M.M$187796.2M$187797.M
1025$186772.M.M$186772.2M$186773.M1014$185748.M.M$185748.2M$185749.M
1024$184724.M.M$184724.2M$184725.M990$183700.M$183700.M.M$183700.2M
1026$182676.M.M$182676.2M$182677.M1027$181652.M.M$181652.2M$181653.M
1032$180628.M.M$180628.2M$180629.M1016$179604.M.M$179604.2M$179605.M
1007$178580.M.M$178580.2M$178581.M1029$177556.M.M$177556.2M$177557.M
1025$176532.M.M$176532.2M$176533.M1027$175508.M$175508.M.M$175508.2M
1021$174484.M$174484.M.M$174484.2M1020$173460.M.M$173460.2M$173461.M
1020$172436.M$172436.M.M$172436.2M1021$171412.M$171412.M.M$171412.2M
1030$170388.M$170388.M.M$170388.2M1018$169364.M$169364.M.M$169364.2M
1031$168340.M$168340.M.M$168340.2M1008$167316.M$167316.M.M$167316.2M
1025$166292.M$166292.M.M$166292.2M1037$165268.M$165268.M.M$165268.2M
1024$164244.M$164244.M.M$164244.2M1020$163220.M$163220.M.M$163220.2M
1015$162196.M$162196.M.M$162196.2M1054$161172.M$161172.M.M$161172.2M
1013$160148.M.M$160148.2M$160149.M1003$159124.M.M$159124.2M$159125.M
1032$158100.M.M$158100.2M$158101.M1057$157076.M$157076.M.M$157076.2M
1013$156052.M$156052.M.M$156052.2M1029$155028.M.M$155028.2M$155029.M
1026$154004.M.M$154004.2M$154005.M987$152980.M$152980.M.M$152980.2M
1032$151956.M$151956.M.M$151956.2M1023$150932.M$150932.M.M$150932.2M
1018$149908.M.M$149908.2M$149909.M995$148884.M$148884.M.M$148884.2M
1025$147860.M.M$147860.2M$147861.M1027$146836.M.M$146836.2M$146837.M
1031$145812.M$145812.M.M$145812.2M1011$144788.M.M$144788.2M$144789.M
1023$143764.M$143764.M.M$143764.2M1034$142740.M$142740.M.M$142740.2M
1015$141716.M$141716.M.M$141716.2M1054$140692.M$140692.M.M$140692.2M
1021$139668.M$139668.M.M$139668.2M1018$138644.M$138644.M.M$138644.2M
1022$137620.M$137620.M.M$137620.2M1008$136596.M$136596.M.M$136596.2M
1030$135572.M$135572.M.M$135572.2M1015$134548.M$134548.M.M$134548.2M
1035$133524.M$133524.M.M$133524.2M1030$132500.M$132500.M.M$132500.2M
1014$131476.M$131476.M.M$131476.2M1008$130452.M$130452.M.M$130452.2M
1040$129428.M$129428.M.M$129428.2M1023$128404.M.M$128404.2M$128405.M
1026$127380.M.M$127380.2M$127381.M1008$126356.M$126356.M.M$126356.2M
1016$125332.M$125332.M.M$125332.2M1024$124308.M$124308.M.M$124308.2M
1019$123284.M$123284.M.M$123284.2M1022$122260.M$122260.M.M$122260.2M
979$121236.M$121236.M.M$121236.2M1035$120212.M.M$120212.2M$120213.M
1005$119188.M.M$119188.2M$119189.M1056$118164.M.M$118164.2M$118165.M
1020$117140.M$117140.M.M$117140.2M1018$116116.M$116116.M.M$116116.2M
1009$115092.M.M$115092.2M$115093.M1027$114068.M.M$114068.2M$114069.M
1013$113044.M$113044.M.M$113044.2M1023$112020.M$112020.M.M$112020.2M
1025$110996.M$110996.M.M$110996.2M1023$109972.M$109972.M.M$109972.2M
1015$108948.M$108948.M.M$108948.2M1009$107924.M$107924.M.M$107924.2M
1030$106900.M.M$106900.2M$106901.M1026$105876.M.M$105876.2M$105877.M
1020$104852.M$104852.M.M$104852.2M1019$103828.M.M$103828.2M$103829.M
1034$102804.M$102804.M.M$102804.2M1011$101780.M.M$101780.2M$101781.M
1022$100756.M$100756.M.M$100756.2M1027$99732.M$99732.M.M$99732.2M
1019$98708.M$98708.M.M$98708.2M1022$97684.M$97684.M.M$97684.2M1033$
96660.M$96660.M.M$96660.2M1033$95636.M$95636.M.M$95636.2M1010$94612.M
.M$94612.2M$94613.M1035$93588.M$93588.M.M$93588.2M1019$92564.M$92564.
M.M$92564.2M1013$91540.M$91540.M.M$91540.2M1030$90516.M.M$90516.2M$
90517.M1028$89492.M.M$89492.2M$89493.M1003$88468.M$88468.M.M$88468.2M
1041$87444.M$87444.M.M$87444.2M1021$86420.M$86420.M.M$86420.2M1039$
85396.M$85396.M.M$85396.2M1014$84372.M$84372.M.M$84372.2M1022$83348.M
$83348.M.M$83348.2M1034$82324.M$82324.M.M$82324.2M1019$81300.M$81300.
M.M$81300.2M1030$80276.M$80276.M.M$80276.2M1007$79252.M$79252.M.M$
79252.2M1028$78228.M$78228.M.M$78228.2M1032$77204.M$77204.M.M$77204.
2M1012$76180.M$76180.M.M$76180.2M1022$75156.M$75156.M.M$75156.2M1028$
74132.M.M$74132.2M$74133.M1042$73108.M.M$73108.2M$73109.M1015$72084.M
.M$72084.2M$72085.M1018$71060.M.M$71060.2M$71061.M1023$70036.M$70036.
M.M$70036.2M1022$69012.M$69012.M.M$69012.2M1001$67988.M$67988.M.M$
67988.2M1020$66964.M.M$66964.2M$66965.M1043$65940.M$65940.M.M$65940.
2M1015$64916.M$64916.M.M$64916.2M1030$63892.M$63892.M.M$63892.2M1017$
62868.M$62868.M.M$62868.2M1004$61844.M$61844.M.M$61844.2M1020$60820.M
$60820.M.M$60820.2M1017$59796.M.M$59796.2M$59797.M1056$58772.M$58772.
M.M$58772.2M1012$57748.M.M$57748.2M$57749.M1008$56724.M.M$56724.2M$
56725.M1026$55700.M.M$55700.2M$55701.M1025$54676.M.M$54676.2M$54677.M
1014$53652.M.M$53652.2M$53653.M1024$52628.M.M$52628.2M$52629.M990$
51604.M$51604.M.M$51604.2M1026$50580.M.M$50580.2M$50581.M1027$49556.M
.M$49556.2M$49557.M1032$48532.M.M$48532.2M$48533.M1016$47508.M.M$
47508.2M$47509.M1007$46484.M.M$46484.2M$46485.M1029$45460.M.M$45460.
2M$45461.M1025$44436.M.M$44436.2M$44437.M1027$43412.M$43412.M.M$
43412.2M1021$42388.M$42388.M.M$42388.2M1020$41364.M.M$41364.2M$41365.
M1020$40340.M$40340.M.M$40340.2M1021$39316.M$39316.M.M$39316.2M1030$
38292.M$38292.M.M$38292.2M1018$37268.M$37268.M.M$37268.2M1031$36244.M
$36244.M.M$36244.2M1008$35220.M$35220.M.M$35220.2M1025$34196.M$34196.
M.M$34196.2M1037$33172.M$33172.M.M$33172.2M1024$32148.M$32148.M.M$
32148.2M1020$31124.M$31124.M.M$31124.2M1015$30100.M$30100.M.M$30100.
2M1054$29076.M$29076.M.M$29076.2M1013$28052.M.M$28052.2M$28053.M1003$
27028.M.M$27028.2M$27029.M1032$26004.M.M$26004.2M$26005.M1057$24980.M
$24980.M.M$24980.2M1013$23956.M$23956.M.M$23956.2M1029$22932.M.M$
22932.2M$22933.M1026$21908.M.M$21908.2M$21909.M1003$20884.M$20884.M.M
$20884.2M1005$19860.M$19860.M.M$19860.2M1031$18836.M$18836.M.M$18836.
2M1015$17812.M.M$17812.2M$17813.M1019$16788.M.M$16788.2M$16789.M1015$
15764.M$15764.M.M$15764.2M1005$14740.M.M$14740.2M$14741.M1024$13716.M
.M$13716.2M$13717.M1026$12692.M.M$12692.2M$12693.M1025$11668.M.M$
11668.2M$11669.M2138$9569.M.M$9569.2M$9570.M54$9513.M$9511.2M$9512.2M
27$9480.M$9478.2M$9479.2M31$9447.M$9445.2M$9446.2M17$9414.M$9412.2M$
9413.2M39$9381.M$9379.2M$9380.2M24$9348.M$9346.2M$9347.2M45$9314.M$
9312.2M$9313.2M39$9281.M$9279.2M$9280.2M23$9248.M$9246.2M$9247.2M29$
9203.M$9201.2M$9202.2M49$9170.M$9168.2M$9169.2M31$9137.M$9136.M$9136.
3M35$9104.M$9103.M$9103.3M18$9071.M$9069.2M$9070.2M25$9038.M$9036.2M$
9037.2M33$9005.M$9003.2M$9004.2M28$8972.M$8970.2M$8971.2M21$8906.M$
8904.2M$8905.2M8$8939.M$8937.2M$8938.2M33$8873.M$8872.M$8872.3M17$
8837.M$8836.M$8836.3M65$8804.M$8803.M$8803.3M30$8771.M$8769.2M$8770.
2M27$8738.M$8736.2M$8737.2M25$8697.M$8696.M$8696.3M36$8664.M$8663.M$
8663.3M23$8631.M$8629.2M$8630.2M32$8598.M$8596.2M$8597.2M34$8565.M$
8563.2M$8564.2M32$8532.M$8530.2M$8531.2M24$8499.M$8497.2M$8498.2M18$
8466.M$8464.2M$8465.2M38$8433.M$8432.M$8432.3M35$8400.M$8399.M$8399.
3M30$8367.M$8365.2M$8366.2M27$8334.M$8333.M$8333.3M44$8301.M$8299.2M$
8300.2M19$8268.M$8267.M$8267.3M32$8235.M$8233.2M$8234.2M36$8202.M$
8200.2M$8201.2M28$8169.M$8167.2M$8168.2M31$8136.M$8134.2M$8135.2M42$
8103.M$8101.2M$8102.2M42$8070.M$8068.2M$8069.2M18$8037.M$8036.M$8036.
3M45$8004.M$8002.2M$8003.2M28$7971.M$7969.2M$7970.2M22$7938.M$7936.2M
$7937.2M38$7905.M$7904.M$7904.3M37$7872.M$7871.M$7871.3M13$7839.M$
7837.2M$7838.2M55$7801.M$7799.2M$7800.2M30$7768.M$7766.2M$7767.2M48$
7735.M$7733.2M$7734.2M23$7702.M$7700.2M$7701.2M31$7669.M$7667.2M$
7668.2M43$7636.M$7634.2M$7635.2M28$7603.M$7601.2M$7602.2M39$7570.M$
7568.2M$7569.2M16$7537.M$7535.2M$7536.2M37$7504.M$7502.2M$7503.2M41$
7471.M$7469.2M$7470.2M21$7438.M$7436.2M$7437.2M31$7405.M$7403.2M$
7404.2M36$7372.M$7371.M$7371.3M51$7339.M$7338.M$7338.3M24$7306.M$
7305.M$7305.3M27$7273.M$7272.M$7272.3M33$7240.M$7238.2M$7239.2M31$
7207.M$7205.2M$7206.2M10$7174.M$7172.2M$7173.2M28$7141.M$7140.M$7140.
3M53$7108.M$7106.2M$7107.2M24$7075.M$7073.2M$7074.2M39$7042.M$7040.2M
$7041.2M26$7009.M$7007.2M$7008.2M13$6976.M$6974.2M$6975.2M29$6943.M$
6941.2M$6942.2M25$6910.M$6909.M$6909.3M66$6877.M$6875.2M$6876.2M20$
6844.M$6843.M$6843.3M17$6811.M$6810.M$6810.3M35$6778.M$6777.M$6777.3M
34$6745.M$6744.M$6744.3M23$6712.M$6711.M$6711.3M33$6679.M$6678.M$
6646.M31.3M$6644.2M$6645.2M34$6613.M$6612.M$6612.3M36$6580.M$6579.M$
6579.3M52$6536.M$6535.M$6535.3M25$6503.M$6502.M$6502.3M16$6470.M$
6469.M$6469.3M38$6437.M$6436.M$6436.3M34$6404.M$6403.M$6403.3M37$
6371.M$6369.2M$6370.2M30$6338.M$6336.2M$6337.2M28$6305.M$6304.M$6304.
3M30$6272.M$6270.2M$6271.2M30$6239.M$6237.2M$6238.2M39$6206.M$6204.2M
$6205.2M27$6173.M$6171.2M$6172.2M40$6140.M$6138.2M$6139.2M17$6107.M$
6105.2M$6106.2M34$6074.M$6072.2M$6073.2M46$6041.M$6039.2M$6040.2M33$
6008.M$6006.2M$6007.2M29$5975.M$5973.2M$5974.2M24$5942.M$5940.2M$
5941.2M63$5909.M$5907.2M$5908.2M21$5876.M$5875.M$5875.3M12$5843.M$
5842.M$5842.3M41$5810.M$5809.M$5809.3M67$5777.M$5775.2M$5776.2M22$
5744.M$5742.2M$5743.2M37$5711.M$5710.M$5710.3M35$5678.M$5677.M$5677.
3M155$22.2W$22.2W12$21.2W$20.W2.W$16.W4.2W$15.W.W$15.W.W$16.W4$34.2W$
34.2W10$12.2W3096.2A$11.W2.W3095.2A$12.2W19.2W3061.A13.2A$32.W2.W
3060.3A12.A$.2W25.W4.2W3064.A10.A.A$W2.W23.W.W3068.2A9.2A.A$W.W24.W.W
$.W26.W3074.A$3102.A.A5.2A$3.2W3097.A2.A4.2A$4.W3098.2A$4.W.W$5.2W$
49.2W$49.2W6$3074.A.A$3077.A82.A$3073.A4.A2.2A$3073.2A.A2.A.2A75.3A.A
$3077.2A69.A8.A.2A$3148.3A6.2A.A$48.2W3101.A3.A.3A$47.W2.W3099.2A$43.
W4.2W3032.A74.A$42.W.W3036.A.A69.A$42.W.W3035.A2.A68.A.A$43.W3037.2A
65.2A2.2A$3148.2A2$3077.2A$62.2W3012.A.A$62.2W3012.A$3075.2A5$3125.2A
$3118.2A5.2A$3118.2A3$3120.2A27.2A$61.2W3057.2A27.2A$60.W2.W3050.2A$
56.W4.2W3051.2A$55.W.W19.2W3076.2A$55.W.W19.2W3076.2A$56.W3094.2A$
3151.2A$3077.2A$3076.A2.A$3063.A15.A$3063.3A13.A76.2A$3066.A9.2A.A76.
2A$3065.2A9.2A107.2A5.2A$3185.2A5.A$3070.A119.A.A$3069.A.A5.2A111.2A$
76.2W11.2W2978.A2.A4.2A107.2A$75.W2.W10.2W2979.2A114.A.A$71.W4.2W
3037.2A70.A$70.W.W3042.2A73.3A$70.W.W3116.A$71.W3117.A3.A$3189.A2.A.A
$3156.A34.A.A2.A$3155.A.A34.A3.A$3155.A.A38.A$3150.3A3.A36.3A2$3148.A
5.A5.2A$88.2W3025.2A31.A5.A4.A2.A$87.W2.W3024.A.A5.2A23.A5.A5.2A$83.W
4.2W3026.A6.2A$82.W.W3065.3A$82.W.W$83.W2$3145.2A$3145.2A$106.2W3013.
A$106.2W3012.A.A$3120.A.A24.2A$3121.A18.2A5.2A$3140.2A$3116.2A7.2A$
3115.A2.A5.A2.A$3116.2A7.2A9.3A2$3121.A$3120.A.A$3120.A.A11.2A$3121.A
11.A2.A$105.2W3027.2A39.A$104.W2.W3066.A.A$100.W4.2W3068.A$99.W.W$99.
W.W3013.2A$100.W22.2W2990.2A$123.2W2998.A$3123.A$3123.A2$3119.3A3.3A
2$3123.A$3123.A$3123.A$3060.2A125.2A$3060.A124.A.2A$132.2W2924.A.A
105.2A7.A8.A$122.2W8.2W2909.2A13.2A79.2A25.2A7.3A9.A$121.W2.W2918.2A
94.2A37.A4.2A.A$117.W4.2W3005.A47.2A4.2A$116.W.W3009.A.A$116.W.W2904.
2A102.A2.A49.A$117.W2905.2A97.3A3.2A49.A.A$3179.2A$3126.A$3022.A103.A
17.A$3021.A.A102.A16.A.A$3022.A120.A.A$3019.3A122.A$131.2W2886.A$130.
W2.W9.2W$126.W4.2W10.2W$125.W.W$125.W.W2934.2A$126.W2935.2A7$3059.2A$
3059.A$142.2W2916.3A$141.W2.W2917.A$137.W4.2W$136.W.W$136.W.W19.2W$
137.W20.2W2$3030.2A$3030.2A2$3007.2A$3007.2A$3029.2A$3029.A186.2A5.2A
$2987.2A38.A.A186.2A5.A$2987.2A38.2A192.A.A$3221.2A$157.2W3058.2A$
156.W2.W2826.A230.A.A$152.W4.2W2826.A.A230.A3.A$151.W.W2832.A234.2A$
151.W.W2829.3A234.A.2A$152.W22.2W2806.A235.3A2.A$175.2W3044.A.A.A$
3222.A.A.A$3223.A2.3A$3026.2A196.2A.A$3026.2A197.2A$3225.A6$3023.2A$
174.2W2847.A$173.W2.W10.2W2835.3A$169.W4.2W11.2W2837.A$168.W.W$168.W.
W$169.W3$2994.2A$2994.2A2$2971.2A$2971.2A$2993.2A$186.2W2805.A$185.W
2.W2762.2A38.A.A$181.W4.2W2763.2A38.2A$180.W.W16.2W$180.W.W16.2W$181.
W2768.A$2949.A.A$2950.A$2947.3A$2947.A4$2990.2A$2990.2A2$198.2W7.2W$
197.W2.W6.2W$193.W4.2W$192.W.W3076.2A$192.W.W$193.W2793.2A281.A3.A$
2987.A281.A4.A$2988.3A277.A.A.A$2990.A276.A.A.A$3265.A4.A$3265.A3.A$
218.2W$218.2W3044.A2.2A$206.2W3055.A.A$205.W2.W2749.2A303.2A$201.W4.
2W2750.2A307.2A$200.W.W3064.A.A$200.W.W2732.2A325.2A5.A$201.W2733.2A
325.2A5.2A$2957.2A$2957.A$2915.2A38.A.A$2915.2A38.2A2$217.2W$216.W2.W
2694.A$212.W4.2W2694.A.A$211.W.W2700.A$211.W.W2697.3A$212.W2698.A124.
A$3034.3A$3033.A$3032.A.A$2954.2A76.A.A$2954.2A77.A42.A$236.2W2836.3A
$236.2W2835.A$3073.2A2$3017.2A99.A$3017.2A97.3A$2951.2A162.A$2951.A
100.2A60.A.A$2952.3A96.A.A60.A.A$2954.A82.2A12.A63.A$3037.A.A10.2A$
3039.A$3030.2A7.2A$235.2W2793.2A23.2A$234.W2.W2816.A.A42.2A$230.W4.2W
2685.2A96.A.2A30.A44.2A$229.W.W19.2W2669.2A94.3A.2A29.2A$229.W.W19.2W
2764.A$230.W2668.2A117.3A.2A$2899.2A119.A.A96.2A158.2A$2921.2A97.A.A
96.A.A155.A.2A$2921.A99.A99.A145.A8.A$2879.2A38.A.A142.2A46.2A7.2A
144.3A9.A$2879.2A38.2A143.2A46.2A156.A4.2A.A$3072.2A195.2A4.2A$3072.A
29.A.2A$2878.A194.3A24.3A.2A166.A$2877.A.A150.2A43.A23.A171.A.A$2878.
A151.2A68.3A.2A161.2A2.2A$250.2W2623.3A196.A27.A.A162.2A$249.W2.W
2622.A197.A.A26.A.A$245.W4.2W13.2W2806.A.A27.A$244.W.W18.2W2750.A54.
2A.3A$244.W.W2769.A.A59.A$245.W2672.2A96.A.A53.2A.3A$2918.2A94.3A.2A
52.2A.A$3013.A$3014.3A.2A44.2A46.2A$3016.A.2A35.2A7.2A46.2A$3056.A$
3056.A.A$3057.2A$2915.2A182.A$2915.A182.A.A$264.2W10.2W2638.3A96.2A
81.A.A$263.W2.W9.2W2640.A95.A.A60.2A17.3A.2A$259.W4.2W2748.A62.2A16.A
$258.W.W2752.2A7.A73.3A.2A$258.W.W2760.A.A74.A.2A$259.W2762.A$3029.2A
$2886.2A141.2A31.A$2886.2A173.A.A$3061.A.A$2863.2A197.A34.2A$2863.2A
194.3A34.A.A$2885.2A172.A36.A$275.2W10.2W2596.A209.2A7.A$274.W2.W9.2W
2554.2A38.A.A217.A.A$270.W4.2W2566.2A38.2A219.A$269.W.W2809.2A28.2A$
269.W.W2807.A2.A28.2A195.2A5.2A$270.W2571.A253.A211.2A5.A$2841.A.A
235.A2.A11.3A216.A.A$2842.A237.A2.A9.A49.2A168.2A$2839.3A239.A.A9.2A
46.A2.A164.2A$2839.A29.2A211.A75.A150.A.A$2868.A.A218.A51.A2.A11.3A
151.A3.A$2869.A211.2A5.A.A51.A2.A9.A157.2A$3081.2A4.A2.A52.A.A9.2A
155.A.2A$286.2W2800.2A54.A166.3A2.A$285.W2.W2862.A161.A.A.A$281.W4.2W
2855.2A5.A.A161.A.A.A$280.W.W2860.2A4.A2.A162.A2.3A$280.W.W2867.2A
164.2A.A$281.W3035.2A$3317.A$3115.A$2879.2A233.A.A$298.2W2579.A233.A
3.A$298.2W2580.3A229.A3.A$2882.A228.A3.A$3110.A3.A$3044.2A65.A.A118.A
$3044.A15.A9.A41.A117.3A$3042.A.A15.3A5.3A37.A120.A$3042.2A19.A3.A39.
A.A119.2A$2850.2A210.2A3.2A38.2A$2850.2A259.2A161.A$3111.A.A158.3A
163.A$2827.2A192.2A83.2A5.A157.A164.3A$2827.2A192.2A83.2A5.2A93.2A60.
A.A162.A$297.2W2550.2A356.A.A60.A.A162.2A$296.W2.W2549.A357.A63.A$
292.W4.2W2508.2A38.A.A356.2A$291.W.W2513.2A38.2A204.2A$291.W.W18.2W
2739.2A$292.W19.2W2751.2A144.2A$2806.A257.A2.A142.A.A42.2A$2805.A.A
257.2A4.2A137.A44.2A$2806.A264.A.A135.2A$2803.3A267.A$2803.A29.2A238.
2A$2832.A.A228.2A210.2A$2833.A199.2A29.A210.A.A$3033.A27.3A138.2A73.A
$3034.3A11.2A11.A158.2A46.2A7.2A$3036.A11.2A2.2A147.A3.A14.2A46.2A
127.2A$3052.A.A145.A4.A22.2A163.2A2.2A2.2A$311.2W2740.A2.2A141.A.A.A
24.A29.A.2A131.A.A2.A2.2A$310.W2.W2884.A.A.A26.3A24.3A.2A132.3A$306.W
4.2W2737.2A2.A3.A137.A4.A29.A23.A139.2A$305.W.W2743.A2.A4.A136.A3.A
55.3A.2A$305.W.W2740.3A5.A.A.A169.A27.A.A$306.W2536.2A203.A8.A.A.A
133.A2.2A29.A.A26.A.A132.A$2843.A214.A4.A130.A.A32.A.A27.A132.A.A$
2844.3A212.A3.A130.2A32.2A.3A135.2A21.A2.A$325.2W2519.A351.2A34.A134.
2A22.2A$325.2W2733.2A136.A.A27.2A.3A$3193.2A5.A27.2A.A$3193.2A5.2A
195.2A$3220.2A46.2A127.A.A$3211.2A7.2A46.2A129.A$2814.2A312.A83.A186.
2A$2814.2A310.3A83.A.A$3125.A87.2A$2791.2A332.2A128.A$2791.2A461.A.A
57.2A$2813.2A439.A.A57.2A.A$2813.A419.2A17.3A.2A60.A$324.2W2445.2A38.
A.A419.2A16.A63.A$323.W2.W2444.2A38.2A141.A149.2A146.3A.2A58.A.2A$
319.W4.2W2627.A.A147.A.A148.A.2A60.2A$318.W.W2631.A3.A146.A$318.W.W
2449.A182.A3.A144.2A218.A$319.W2449.A.A182.A3.A259.A102.A.A$2770.A
184.A3.A257.A.A102.2A$2767.3A186.A.A96.2A50.2A108.A.A98.2A85.2A$2767.
A29.2A158.A96.A2.A4.2A42.A.A109.A34.2A62.A.A84.A2.A4.2A$2796.A.A162.A
92.A.A4.A2.A41.A108.3A34.A.A62.A5.2A79.A.A3.A2.A$341.2W2454.A162.A.A
92.A5.A43.2A108.A36.A63.2A5.2A80.A$341.2W2618.2A98.A189.2A7.A149.A2.A
$2957.2A91.2A9.A.2A194.A.A138.2A9.A2.A$2956.A.A92.A11.2A195.A140.A10.
A.A$2956.A5.2A84.3A186.2A28.2A129.3A12.A$2955.2A5.2A84.A186.A2.A28.2A
129.A$3062.2A52.2A134.A159.2A$3062.2A52.2A117.A2.A11.3A159.2A36.2A$
3124.2A110.A2.A9.A200.3A17.2A$3124.A112.A.A9.2A193.2A2.A2.A.A16.2A$
2807.2A316.3A110.A205.2A2.2A2.2A$2807.A319.A117.A202.2A$2808.3A426.2A
5.A.A$340.2W2468.A315.A110.2A4.A2.A$339.W2.W2782.A.A116.2A$335.W4.2W
2639.2A142.A.A316.A$334.W.W2640.2A2.2A141.2A.3A313.A.A$334.W.W20.2W
2617.A.A75.A75.A312.A2.A$335.W21.2W2614.A3.A76.3A67.2A.3A314.2A9.2A$
2778.2A193.2A82.A66.2A.A327.2A$2778.2A192.2A.A3.2A75.2A$2971.A2.3A2.A
91.2A43.2A153.A176.2A$2755.2A213.A.A.A5.3A88.A35.2A7.2A152.A.A175.A.A
$2755.2A212.A.A.A8.A86.A.A36.A160.A3.A176.A$2777.2A188.3A2.A85.A10.2A
37.A.A157.A3.A177.2A$2777.A190.A.2A85.A.A49.2A156.A3.A$2735.2A38.A.A
191.2A86.A.A206.A3.A$2735.2A38.2A193.A81.2A4.A141.2A65.A.A$3051.A.A
15.2A129.A15.A9.A41.A$3040.3A8.A17.A.A57.2A67.A.A15.3A5.3A37.A210.2A$
356.2W2376.A304.A10.2A19.A57.2A67.2A19.A3.A39.A.A209.A$355.W2.W2374.A
.A303.A3.A27.2A145.2A3.2A38.2A211.3A$351.W4.2W2376.A304.A2.A.A222.2A
209.A$350.W.W2378.3A307.A.A2.A220.A.A$350.W.W2378.A29.2A279.A3.A130.
2A83.2A5.A$351.W20.2W2386.A.A283.A67.A62.2A83.2A5.2A176.2A5.2A$372.2W
2387.A281.3A67.A.A332.A5.2A$3048.A11.2A51.A.A332.A.A$3047.A.A10.2A52.
A334.2A$3048.2A61.3A95.2A242.2A$3044.2A65.A97.2A241.A.A10.2A$3043.A.A
175.2A230.A11.2A$3043.A5.2A169.A2.A224.3A$3042.2A5.2A91.A78.2A4.2A
222.A$3141.A.A83.A.A217.A3.A$3140.A3.A84.A216.A.A2.A$2771.2A300.A67.A
3.A83.2A213.A2.A.A$2771.A299.3A68.A3.A72.2A134.2A87.A3.A27.2A$371.2W
2399.3A295.A72.A3.A41.2A29.A109.A9.A15.A87.A10.2A19.A$370.W2.W2400.A
295.2A72.A.A42.A27.3A110.3A5.3A15.A.A86.3A8.A17.A.A$366.W4.2W2772.A
44.3A11.2A11.A115.A3.A19.2A97.A.A15.2A$365.W.W2781.A42.A11.2A2.2A122.
2A3.2A118.2A4.A$365.W.W2780.A.A57.A.A251.A.A$366.W2782.2A58.A2.2A248.
A.A$3145.2A231.2A83.A10.2A$2742.2A305.2A93.A.A59.2A2.A3.A163.2A94.A.A
$2742.2A306.A93.A5.2A55.A2.A4.A260.A$2718.A331.A.A90.2A5.2A52.3A5.A.A
.A259.2A$2714.2A2.2A.3A327.2A151.A8.A.A.A243.2A$388.2W2324.2A4.4A490.
A4.A126.2A114.A$388.2W2328.2A495.A3.A126.2A111.3A$2673.2A659.2A123.A$
2666.2A5.2A541.2A115.A2.A$2606.2A58.2A660.2A4.2A$2606.2A115.A603.A.A$
2592.A13.2A114.A.A602.A$2592.3A12.A60.2A27.2A22.A2.A601.2A$2595.A10.A
.A59.2A27.2A23.2A445.2A165.2A$2594.2A9.2A.A53.2A501.2A2.2A165.A29.2A$
2662.2A401.2A97.A.A74.A95.3A27.A$2599.A103.2A13.2A345.2A94.A3.A74.2A
97.A11.2A11.3A$400.2W2196.A.A5.2A95.2A12.A.A441.2A76.A.2A104.2A2.2A
11.A$387.2W11.2W2196.A2.A4.2A91.2A16.A442.2A.A3.2A69.3A2.A102.A.A$
386.W2.W2209.2A98.2A15.2A441.A2.3A2.A72.A.A.A102.A$382.W4.2W2769.A.A.
A5.3A70.A.A.A$381.W.W2773.A.A.A8.A71.A2.3A94.3A4.2A$381.W.W2771.3A2.A
82.2A.A95.3A4.A$382.W2321.2A450.A.2A84.2A96.3A5.3A$2661.2A41.2A451.2A
85.A3.A90.3A10.A$2662.A495.A88.A.A89.3A$2662.A.A583.2A89.3A$2663.2A
546.2A31.2A$3210.A2.A4.2A23.A.A55.2A$3210.A.A4.A2.A22.A5.2A50.A238.2A
$399.2W2810.A5.A24.2A5.2A48.A.A208.A2.2A25.2A$398.W2.W2815.A81.2A208.
A3.2A2.2A$394.W4.2W2342.2A461.2A9.A.2A288.A7.2A$393.W.W2340.2A4.A2.A
461.A11.2A289.4A$393.W.W2340.A2.A3.A.A458.3A88.2A$394.W2349.A459.A89.
A2.A$2698.2A36.A2.A478.2A74.A.A$2698.A36.A2.A9.2A327.2A139.2A75.A213.
A$2657.2A40.3A33.A.A10.A327.A2.A4.2A422.A.A$2657.2A42.A34.A12.3A324.A
.A4.A2.A421.A2.A13.2A$2751.A325.A5.A212.A.A210.2A14.2A$2736.2A345.A
215.A$2736.2A334.2A9.A.2A208.A4.A2.2A$2662.2A409.A11.2A208.2A.A2.A.2A
208.2A$2662.2A406.3A226.2A212.A.A$2658.2A410.A444.A$2658.2A424.2A429.
2A$2699.2A383.2A$2699.2A$407.2W2255.2A27.2A$407.2W2255.2A27.2A850.2A$
3545.A$3276.2A268.3A$2695.2A572.2A4.A2.A269.A$2688.2A5.2A572.2A5.A.A$
2669.2A17.2A587.A$2670.A$2667.3A598.A.2A9.2A$2667.A600.A.A10.A247.2A$
417.2W2850.A12.3A245.A23.2A$417.2W2850.2A13.A242.3A24.A$3269.2A256.A
7.2A15.A.A$406.2W2861.2A264.2A15.2A$405.W2.W$401.W4.2W$400.W.W$400.W.
W$401.W4$2528.A.A$416.2W2113.A$415.W2.W2108.A4.A2.2A$411.W4.2W2109.2A
.A2.A.2A997.2A$410.W.W2118.2A1000.A.A$410.W.W3120.A$411.W3120.2A2$
2536.A$2535.A.A$2534.A2.A$2535.2A$3550.2A$3550.A$2531.2A1018.3A$426.
2W2102.A.A1020.A$426.2W2102.A$2529.2A4$3542.2A$3533.2A7.2A$3534.A$
3448.2A84.A.A$3448.2A2.2A81.2A$3452.A.A$3453.A$425.2W$424.W2.W3022.2A
4.2A$420.W4.2W3024.A4.2A.A$419.W.W3026.3A9.A$419.W.W3026.A8.A$420.W
3037.A.2A$3460.2A151.2A$3219.A393.2A$2629.4A584.3A346.2A4.2A$2628.A7.
2A578.A348.A2.A3.2A$2628.A3.2A2.2A578.2A348.2A$2629.A2.2A$3540.A$
3539.A.A$3539.A.A$2637.A557.2A343.A$2636.A.A555.A.A401.2A$2635.A2.A
555.A376.2A25.2A$2636.2A59.A495.2A353.2A21.2A$2697.A841.2A7.2A$2697.A
231.2A5.2A601.2A33.2A$2632.2A296.A5.2A260.2A374.2A$2631.A.A296.A.A
264.A.A384.2A$2631.A299.2A264.A386.A$2630.2A303.2A259.2A384.A.A$2934.
A.A645.2A$2935.A$2931.A686.2A$2930.3A685.A$2929.A.3A685.3A$2928.A3.A
274.2A412.A$2927.A3.A275.2A$2926.3A.A284.2A$2927.3A285.A$2928.A287.3A
359.2A22.2A$3218.A359.A.A20.A.A$3580.A20.A25.2A$3217.A362.2A18.2A25.A
$3216.A.A389.2A15.A.A$2947.2A267.A.A389.2A15.2A$2947.2A2.2A262.2A.3A$
2951.A.A267.A$2952.A262.2A.3A$3215.2A.A344.2A$2949.2A4.2A606.2A$2950.
A4.2A.A248.2A362.2A$2947.3A9.A238.2A7.2A362.A$2947.A8.A242.A372.3A$
2957.A.2A238.A.A372.A$2959.2A239.2A$3573.A$3572.A.A32.2A$3572.A.A31.A
.A$3220.2A349.2A.3A29.A$3220.2A355.A27.2A$3571.2A.3A$3571.2A.A2$3563.
2A63.2A5.2A$3205.A348.2A7.2A63.2A5.A$3204.A.A348.A77.A.A$3204.A.A348.
A.A75.2A$3205.A350.2A71.2A$3202.3A412.2A10.A.A$3202.A414.2A11.A2$
3576.2A55.3A$3576.2A55.3A36.2A$3633.3A36.2A$3636.3A$3606.2A28.3A$
3607.A19.2A7.3A$3561.A45.A.A17.A$3560.A.A45.2A15.A.A$3560.A.A57.A4.2A
$3561.A57.A.A$3558.3A58.A.A$3558.A49.2A10.A36.2A$3607.A.A47.2A$3607.A
$3606.2A$3237.A383.2A$3235.3A383.A$3234.A387.3A$3234.2A388.A4$3677.2A
$3213.2A462.A$3212.A.A463.3A$3212.A467.A$3211.2A3$3101.A114.2A$3101.
3A111.A.A443.2A$3104.A110.A446.A23.2A$3103.A.A108.2A443.3A24.A$3103.A
.A553.A24.A.A$3104.A579.2A4$3225.2A$3119.2A62.A41.2A442.2A$3119.2A62.
3A47.2A434.2A7.2A$3186.A46.A444.A$3185.A.A46.3A439.A.A$3185.A.A48.A
439.2A$3099.2A85.A472.2A$3098.A.A134.A423.2A$3098.A135.A.A412.2A$
3097.2A7.2A126.A.A413.A$3106.2A125.2A.3A411.A.A$3201.2A36.A411.2A$
3114.2A.A83.2A30.2A.3A$3114.2A.3A113.2A.A$3120.A$3114.2A.3A105.2A$
3115.A.A63.2A33.2A7.2A$3115.A.A62.A.A34.A$3116.A63.A36.A.A$3179.2A7.
2A28.2A$3117.A70.2A465.2A$3115.3A536.A.A$3114.A81.2A.A454.A$3114.2A
80.2A.3A36.2A413.2A$3106.2A94.A35.2A$3106.2A88.2A.3A$3197.A.A$3197.A.
A$3198.A$3223.A446.2A$3199.A22.A.A445.2A$3095.2A100.3A22.A.A437.2A$
3096.A99.A26.A439.A$3096.A.A97.2A22.3A437.3A$3097.2A89.2A30.A439.A$
3188.2A$3661.A$3092.2A566.A.A$3093.A566.A.A$3093.A.A562.3A.2A$3094.2A
561.A$3177.2A479.3A.2A$3178.A481.A.2A$3178.A.A$3179.2A489.2A$3115.2A
553.2A7.2A72.2A$3115.A563.A73.2A$3116.3A55.2A501.A.A$3118.A56.A501.2A
$3175.A.A$3176.2A2$3657.2A$3657.2A2$3197.2A539.2A$3197.A540.2A$3198.
3A$3200.A472.A$3672.A.A$3672.A.A$3673.A$3674.3A$3029.A646.A$3029.3A$
3032.A$3031.A.A724.2A$3031.A.A724.A$3032.A726.3A$3761.A$3661.2A11.A$
3661.2A10.A.A$3673.A.A31.2A21.2A5.2A$3047.2A62.A560.2A.3A2.2A25.A23.A
5.2A$3047.2A62.3A564.A2.A23.A.A23.A.A$3114.A557.2A.3A3.A.A21.2A25.2A$
3113.A.A556.2A.A6.2A52.2A$3113.A.A619.A.A10.2A$3027.2A85.A617.A3.A11.
2A$3026.A.A703.2A$3026.A704.2A.A$3025.2A7.2A694.A2.3A$3034.2A693.A.A.
A$3129.2A538.2A13.2A42.A.A.A$3042.2A.A83.2A538.2A13.2A40.3A2.A27.2A$
3042.2A.3A606.2A71.A.2A7.2A19.A$3048.A604.A2.A71.2A9.A17.A.A$3042.2A.
3A604.A.2A73.A9.A.A15.2A$3043.A.A63.2A541.A87.2A4.A$3043.A.A62.A.A
540.2A92.A.A$3044.A63.A557.2A77.A.A$3107.2A7.2A548.A79.A10.2A$3045.A
70.2A549.3A23.2A62.A.A$3043.3A623.A24.A64.A$3042.A81.2A.A563.3A4.2A
59.2A$3042.2A80.2A.3A561.A6.2A44.2A$3034.2A94.A614.A$3034.2A88.2A.3A
612.3A$3125.A.A614.A$3125.A.A$3126.A2$3127.A$3023.2A100.3A$3024.A99.A
$3024.A.A97.2A$3025.2A89.2A$3116.2A$3420.A$3020.2A398.3A$3021.A401.A$
3021.A.A398.A.A361.2A$3022.2A398.A.A357.2A2.2A2.2A$3105.2A316.A358.A.
A2.A2.2A$3106.A676.3A$3106.A.A675.2A$3107.2A$3043.2A$3043.A394.2A342.
A$3044.3A55.2A334.2A341.A.A$3046.A56.A677.A2.A$3103.A.A676.2A$3104.2A
$3418.2A$3417.A.A366.2A$3417.A368.A.A$3416.2A7.2A361.A$3125.2A298.2A
361.2A$3125.A$3126.3A304.2A.A$3128.A304.2A.3A$3439.A$3433.2A.3A$3434.
A.A$3434.A.A$3435.A2$3436.A$3434.3A$3433.A$3433.2A$3425.2A$3425.2A6$
3414.2A$3415.A$3415.A.A$3416.2A4$3414.2A$3414.2A6$3434.2A$3434.A$
3435.3A$3437.A32$3264.A$3264.3A$3267.A$3266.A.A$3266.A.A$3267.A5$
3282.2A$3282.2A4$3262.2A$3261.A.A$3261.A$3260.2A7.2A$3269.2A2$3277.2A
.A$3277.2A.3A$3283.A$3277.2A.3A$3278.A.A$3278.A.A$3279.A2$3280.A$
3278.3A$3277.A$3277.2A$3269.2A$3269.2A6$3258.2A$3259.A$3259.A.A$3260.
2A4$3258.2A$3258.2A6$3278.2A$3278.A$3279.3A$3281.A21$3414.A$3414.3A$
3417.A$3416.A.A$3416.A.A$3417.A5$3432.2A$3432.2A4$3412.2A$3411.A.A$
3411.A$3410.2A7.2A$3419.2A2$3427.2A.A$3427.2A.3A$3433.A$3427.2A.3A$
3428.A.A$3428.A.A$3429.A2$3430.A$3428.3A$3213.2A212.A$3213.2A2.2A208.
2A$3217.A.A199.2A$3218.A2.2A196.2A2$3215.2A2.A3.A$3216.A2.A4.A$3213.
3A5.A.A.A$3213.A8.A.A.A$3223.A4.A179.2A$3224.A3.A180.A$3409.A.A$3225.
2A183.2A3$3405.2A$3406.A$3406.A.A$3407.2A4$3573.2A$3428.2A142.A2.A4.
2A$3428.A143.A.A5.2A$3429.3A141.A$3431.A$3568.2A9.2A$3569.A9.2A.A$
3566.3A13.A$3566.A15.A$3579.A2.A$3580.2A46$3363.2A$3363.2A2.2A$3367.A
.A$3368.A2.2A2$3365.2A2.A3.A$3366.A2.A4.A$3363.3A5.A.A.A$3363.A8.A.A.
A$3373.A4.A$3374.A3.A2$3375.2A525$1584.2M$1584.2M4$1512.2M$1511.M2.M$
1512.M.M$1513.M66.2M$1567.2M11.2M$1567.2M2.2M$1543.2M26.2M$1542.M.M$
1543.M2$1553.3M2$1506.2M$1505.M2.M$1506.2M54.M$1562.M$1562.M9.2M33.2M
$1572.2M32.M.M$1606.2M2$1574.3M2$1578.M$1578.M$1578.M$1574.2M$1573.M
2.M$1574.2M40.2M$1616.2M4$1544.2M$1543.M2.M$1544.M.M$1545.M66.2M$
1612.2M2$1575.2M$1574.M.M$1575.M2$1585.3M2$1538.2M$1537.M2.M$1538.2M
54.M$1594.M$1594.M9.2M33.2M$1604.2M32.M.M$1638.2M2$1606.3M2$1610.M$
1610.M$1610.M$1606.2M$1605.M2.M$1606.2M40.2M$1648.2M4$1576.2M$1575.M
2.M$1576.M.M$1577.M66.2M$1644.2M2$1607.2M$1606.M.M$1607.M2$1617.3M2$
1570.2M$1569.M2.M$1570.2M54.M$1626.M$1626.M9.2M33.2M$1636.2M32.M.M$
1670.2M2$1638.3M2$1642.M37.2pA$1642.M37.2pA$1642.M$1638.2M$1637.M2.M$
1638.2M5$1608.2M$1607.M2.M$1608.M.M$1609.M66.2M$1676.2M2$1639.2M$
1638.M.M$1639.M2$1649.3M2$1602.2M$1601.M2.M$1602.2M54.M$1658.M$1658.M
9.2M33.2M$1668.2M32.M.M$1702.2M2$1670.3M2$1674.M$1674.M$1674.M$1670.
2M$1669.M2.M$1670.2M40.2M$1712.2M4$1640.2M$1639.M2.M$1640.M.M$1641.M
66.2M$1708.2M2$1671.2M$1670.M.M$1671.M2$1681.3M2$1634.2M$1633.M2.M$
1634.2M54.M$1690.M$1690.M9.2M33.2M$1700.2M32.M.M$1734.2M2$1702.3M2$
1706.M$1706.M$1706.M$1702.2M$1701.M2.M$1702.2M40.2M$1744.2M4$1672.2M$
1671.M2.M$1672.M.M$1673.M66.2M$1740.2M2$1703.2M$1702.M.M$1703.M2$
1713.3M2$1666.2M$1665.M2.M$1666.2M54.M$1722.M$1722.M9.2M33.2M$1732.2M
32.M.M$1766.2M2$1734.3M2$1738.M$1738.M$1738.M$1734.2M$1733.M2.M$1734.
2M40.2M$1776.2M4$1704.2M$1703.M2.M$1704.M.M$1705.M66.2M$1772.2M2$
1735.2M$1734.M.M$1735.M2$1745.3M2$1698.2M$1697.M2.M$1698.2M54.M$1754.
M$1754.M9.2M33.2M$1764.2M32.M.M$1798.2M2$1766.3M2$1770.M$1770.M$1770.
M$1766.2M$1765.M2.M$1766.2M40.2M$1808.2M4$1736.2M$1735.M2.M$1736.M.M$
1737.M66.2M$1804.2M2$1767.2M$1766.M.M$1767.M2$1777.3M2$1730.2M$1729.M
2.M$1730.2M54.M$1786.M$1786.M9.2M33.2M$1796.2M32.M.M$1830.2M2$1798.3M
2$1802.M$1802.M$1802.M$1798.2M$1797.M2.M$1798.2M40.2M$1840.2M4$1768.
2M$1767.M2.M$1768.M.M$1769.M66.2M$1836.2M2$1799.2M$1798.M.M$1799.M2$
1809.3M2$1762.2M$1761.M2.M$1762.2M54.M$1818.M$1818.M9.2M33.2M$1828.2M
32.M.M$1862.2M2$1830.3M2$1834.M$1834.M$1834.M$1830.2M$1829.M2.M$1830.
2M40.2M$1872.2M4$1800.2M$1799.M2.M$1800.M.M$1801.M66.2M$1868.2M2$
1831.2M$1830.M.M$1831.M2$1841.3M2$1794.2M$1793.M2.M$1794.2M54.M$1850.
M$1850.M9.2M33.2M$1860.2M32.M.M$1894.2M2$1862.3M2$1866.M$1866.M$1866.
M$1862.2M$1861.M2.M$1862.2M40.2M$1904.2M4$1832.2M$1831.M2.M$1832.M.M$
1833.M66.2M$1900.2M2$1863.2M$1862.M.M$1863.M2$1873.3M2$1826.2M$1825.M
2.M$1826.2M54.M$1882.M$1882.M9.2M33.2M$1892.2M32.M.M$1926.2M2$1894.3M
2$1898.M$1898.M$1898.M$1894.2M$1893.M2.M$1894.2M40.2M$1936.2M4$1864.
2M$1863.M2.M$1864.M.M$1865.M66.2M$1932.2M2$1895.2M$1894.M.M$1895.M2$
1905.3M2$1858.2M$1857.M2.M$1858.2M54.M$1914.M$1914.M9.2M33.2M$1924.2M
32.M.M$1958.2M2$1926.3M2$1930.M$1930.M$1930.M$1926.2M$1925.M2.M$1926.
2M40.2M$1968.2M4$1896.2M$1895.M2.M$1896.M.M$1897.M66.2M$1964.2M2$
1927.2M$1926.M.M$1927.M2$1937.3M2$1890.2M$1889.M2.M$1890.2M54.M$1946.
M$1946.M9.2M33.2M$1956.2M32.M.M$1990.2M2$1958.3M2$1962.M$1962.M$1962.
M$1958.2M$1957.M2.M$1958.2M40.2M$2000.2M4$1928.2M$1927.M2.M$1928.M.M$
1929.M66.2M$1996.2M2$1959.2M$1958.M.M$1959.M2$1969.3M2$1922.2M$1921.M
2.M$1922.2M54.M$1978.M$1978.M9.2M33.2M$1988.2M32.M.M$2022.2M2$1990.3M
2$1994.M79.2M$1994.M78.M2.M$1994.M79.2M$1990.2M$1989.M2.M$1990.2M40.
2M$2032.2M2$3839.A$2091.3M1743.3A$1960.2M1874.A$1959.M2.M1873.2A$
1960.M.M$1961.M66.2M$2028.2M1783.2A4.2A$3813.2A3.A2.A$1991.2M1826.2A$
1990.M.M1846.2A$1991.M73.2M1772.2A$2065.2M$2001.3M57.2M$2061.2M$1954.
2M$1953.M2.M1857.2A$1954.2M54.M66.M1736.2A$2010.M66.M1771.2A6.2A$
2010.M9.2M55.M1772.A7.A$2020.2M1817.A7.3A5.3A$3810.2A26.A.A6.A7.A$
2068.M5.M9.2M1725.A26.A2.A$2022.3M43.M5.M9.2M1725.A.A25.2A$2068.M5.M
20.2M1715.2A$2026.M25.2M41.2M1768.2A$2026.M25.2M16.3M1787.2A3.2A$
2026.M55.2M1742.2A32.2A$2022.2M58.2M1742.A.A8.A5.2A$2021.M2.M1769.2A
32.A7.A.A3.A2.A$2022.2M32.3M1734.A2.A31.2A6.2A5.A.A13.2A12.2A$3794.2A
48.A15.A5.2A5.A$2093.2M1762.3A6.2A6.3A8.2A$2093.2M1762.A18.A8.2A$
2068.M$1992.2M74.M$1991.M2.M73.M1735.2A$1992.M.M1808.A.A17.2A$1993.M
1810.A18.A26.2A$2082.2M10.M1729.3A22.A2.A$2082.2M9.M.M1730.A23.A.A$
2023.2M68.2M1756.A$2022.M.M$2023.M1833.2A$3807.2A47.A2.A$2033.3M1770.
A.A48.A.A38.2A$2072.2M1732.A25.2A24.A12.A27.A$1986.2M84.2M1731.2A25.A
37.A.A26.A.A$1985.M2.M1824.2A15.A.A37.2A13.2A13.2A$1986.2M54.M1770.2A
15.2A53.2A$2042.M$2042.M9.2M21.2M1780.2A$2052.2M21.2M2.2M1776.2A20.2A
40.2A$2079.2M1798.2A40.2A$3883.2A$2054.3M1826.2A$3802.2A$2058.M1742.A
2.A$2058.M1743.A.A$2058.M1744.A74.2A39.2A$2054.2M1822.2A39.2A$2053.M
2.M1755.2A$2054.2M40.2M1713.A.A$2096.2M1713.A$3810.2A3$2024.2M1885.2A
$2023.M2.M1884.2A$2024.M.M1890.2A$2025.M66.2M1822.A2.A$2079.2M11.2M
1823.A.A$2079.2M2.2M1833.A$2055.2M26.2M$2054.M.M$2055.M1842.2A$3898.A
.A7.A$2065.3M1832.A6.A.A$3900.2A5.A2.A$2018.2M1800.2A86.2A$2017.M2.M
1790.2A7.2A$2018.2M54.M1737.A$2074.M1737.A.A$2074.M9.2M33.2M1692.2A$
2084.2M32.M.M1799.A$2118.2M1770.2A27.A.A$3827.2A6.A45.2A7.2A26.A2.A$
2086.3M1738.A.A4.A.A45.A36.2A$3797.2A30.A4.A2.A44.A.A$2090.M1706.2A
30.2A4.2A46.2A$2090.M1809.2A15.2A18.A$2090.M1809.2A15.2A17.A.A3.2A$
2086.2M1714.A47.2A58.2A24.A2.A2.2A$2085.M2.M1712.A.A46.A59.A26.2A$
2086.2M40.2M1624.2A45.A2.A46.3A54.A.A$2128.2M1623.A.A46.2A50.A53.2A$
3752.A.A3.2A93.2A$3753.A4.A.A107.2A$3759.A51.2A55.A55.2A$2056.2M1752.
A.A52.2A.A55.2A$2055.M2.M1751.A53.A2.A$2056.M.M1750.2A54.2A77.A$2057.
M66.2M1709.2A13.2A90.3A$2124.2M1709.2A13.2A89.A$3904.2A35.2A$2087.2M
1815.A.A$2086.M.M1817.A$2087.M1818.2A10.2A4.2A$3811.2A100.2A3.2A3.A2.
A$2097.3M1711.2A100.2A9.2A$3837.2A6.A.2A95.2A$2050.2M1785.A.A3.3A.2A
59.A35.2A$2049.M2.M1786.A2.A64.A.A$2050.2M54.M1704.2A26.2A2.3A.2A40.
2A17.2A$2106.M1704.2A32.A.A41.2A$2106.M9.2M33.2M1672.2A18.A.A10.2A37.
2A$2116.2M32.M.M1672.A.A18.A11.2A37.A21.2A$2150.2M1675.A70.3A18.2A$
3817.2A8.2A40.2A29.A53.2A6.2A$2118.3M1697.A50.2A84.A7.A$3815.3A81.A
52.3A5.3A$2122.M1692.A50.2A30.A.A14.2A35.A7.A$2122.M1656.A85.A2.A29.A
.A15.A$2122.M1650.A4.A.A85.2A29.2A.3A13.A.A$2118.2M1652.A.A3.2A123.A
13.2A$2117.M2.M1652.A.A79.2A40.2A.3A67.2A$2118.2M40.2M1612.2A79.2A40.
2A.A64.2A3.2A14.2A7.A$2160.2M1701.2A66.2A32.2A19.2A6.A.A$3863.2A24.2A
40.A.A60.A.A$3858.2A20.2A7.2A42.A10.2A49.A$3858.2A21.A51.2A9.2A18.2A
12.2A8.2A$2088.2M1791.A.A81.A5.2A5.A8.A2.A$2087.M2.M1791.2A78.3A6.2A
6.3A6.2A$2088.M.M1871.A18.A$2089.M66.2M$2156.2M$3902.2A$2119.2M1781.
2A24.2A$2118.M.M1807.A45.2A$2119.M1809.3A41.A.A$3931.A42.A14.2A$2129.
3M1824.2A30.A.A$3887.A67.A.A31.A$2082.2M1802.A.A67.A$2081.M2.M1801.A.
A9.A13.2A$2082.2M54.M1748.A9.A.A11.A.A$2138.M1745.3A10.2A12.A25.2A63.
2A$2138.M9.2M33.2M1699.A25.2A25.A65.A$2148.2M32.M.M1733.2A15.A.A37.A
27.A.A$2182.2M1734.2A15.2A37.A.A12.2A13.2A$3974.2A13.2A$2150.3M2$
2154.M1828.2A40.2A$2154.M1828.2A40.2A$2154.M1832.2A$2150.2M1700.2A
133.2A$2149.M2.M1699.2A20.A$2150.2M40.2M1679.A.A$2192.2M1674.2A3.2A$
3838.2A27.A2.A22.A88.2A$3839.A28.2A22.A.A15.A6.2A63.2A$3839.A.A50.A2.
A13.A.A4.A.A$2120.2M1718.2A33.2A16.2A13.A2.A4.A$2119.M2.M1751.A2.A31.
2A4.2A$2120.M.M1751.A.A$2121.M66.2M1685.A$2188.2M$3864.2A149.2A$2151.
2M1711.2A149.2A$2150.M.M$2151.M$3838.A.2A$2161.3M1672.3A.2A$3835.A$
2114.2M1720.3A.2A$2113.M2.M1721.A.A31.A129.2A$2114.2M54.M1667.A.A30.A
.A128.A.A$2170.M1668.A31.A2.A129.A$2170.M9.2M33.2M1636.2A17.2A51.2A
77.2A$2180.2M32.M.M1636.2A61.2A7.2A$2214.2M1701.A$3917.A.A94.2A$2182.
3M1733.2A94.2A2$2186.M$2186.M1657.A87.2A6.A53.2A$2186.M1656.A.A86.A.A
4.A.A43.2A7.2A$2182.2M1659.A.A56.2A30.A4.A2.A43.A$2181.M2.M1656.3A.2A
55.2A30.2A4.2A44.A.A$2182.2M40.2M1614.A146.2A$2224.2M1615.3A.2A157.2A
$3843.A.2A60.A47.2A47.2A$3906.A.A46.A58.2A$3853.2A51.A2.A46.3A55.A$
2152.2M1699.2A7.2A43.2A50.A52.A.A$2151.M2.M1707.A95.2A52.2A$2152.M.M
1705.A.A110.2A$2153.M66.2M1638.2A54.2A55.A$2220.2M1592.A100.A.A52.2A.
A$3813.A.A99.A53.A2.A$2183.2M1627.A.A99.2A54.2A$2182.M.M1627.2A26.2A
98.2A13.2A$2183.M1656.2A98.2A13.2A60.2A$3871.2A143.A2.A$2193.3M1618.
2A54.A.A135.2A7.A.A$3814.A.A54.A136.A.A7.A$2146.2M1667.A194.A68.2A$
2145.M2.M1707.A59.2A92.2A67.2A$2146.2M54.M1652.A.A58.2A102.2A$2202.M
1652.A.A84.2A6.A.2A62.A3.A.A$2202.M9.2M33.2M1607.A85.A.A3.3A.2A61.A.A
3.A$2212.2M32.M.M1608.3A84.A2.A67.2A$2246.2M1611.A56.2A26.2A2.3A.2A
99.A$3916.2A32.A.A40.2A57.A.A23.2A$2214.3M1713.2A18.A.A10.2A28.2A58.
2A24.A$3807.A122.A.A18.A11.2A36.2A13.2A61.A.A$2218.M1587.A.A3.2A118.A
68.A13.A2.A46.2A13.2A$2218.M1588.2A3.A.A107.2A8.2A40.2A26.3A11.A.A46.
2A$2218.M1594.2A108.A50.2A28.A12.A$2214.2M1704.3A123.A$2213.M2.M1703.
A50.2A30.A41.A.A11.2A40.2A$2214.2M40.2M1712.A2.A28.A.A41.2A11.2A40.2A
$2256.2M1713.2A29.A.A58.2A$4001.2A.3A56.2A$3960.2A45.A$3960.2A39.2A.
3A$2184.2M1782.2A31.2A.A$2183.M2.M1781.2A88.2A$2184.M.M1776.2A28.2A
63.2A$2185.M66.2M1709.2A19.2A7.2A$2252.2M1731.A$3985.A.A60.A$2215.2M
1769.2A58.3A$2214.M.M1828.A$2215.M1611.A209.2A6.2A$3826.A.A208.A.A51.
2A$2225.3M1581.2A15.2A178.2A4.A25.A52.2A$3803.2A3.A.A23.A27.2A142.2A
3.A.A$2178.2M1622.A.A3.2A23.A.A6.A19.2A147.2A$2177.M2.M1622.A28.A2.A
5.A.A206.2A12.2A30.A$2178.2M54.M1598.2A6.2A199.2A6.2A11.A.A29.A.A$
2234.M1622.2A183.2A19.A31.A2.A$2234.M9.2M33.2M1576.2A132.A13.2A55.2A
32.2A$2244.2M32.M.M1709.A.A11.A2.A25.2A43.2A$2278.2M1710.A.A12.A.A25.
2A43.A.A$3991.A14.A73.A$2246.3M1739.3A57.2A30.2A6.2A$3988.A59.A.A36.A
2.A$2250.M1574.A224.A37.A.A$2250.M1574.3A7.2A213.2A37.A$2250.M1577.A
6.A5.A$2246.2M1579.2A4.A.A3.3A$2245.M2.M1584.2A3.A169.2A$2246.2M40.2M
1548.2A167.A2.A59.2A$2288.2M1718.2A51.2A7.2A$3814.A247.A$3814.3A245.A
.A$3817.A245.2A37.2A$2216.2M1598.2A262.2A20.2A$2215.M2.M1861.2A$2216.
M.M1871.2A$2217.M66.2M1531.2A271.A$2284.2M1531.2A269.A.A$4088.2A$
2247.2M$2246.M.M$2247.M$3835.2A$2257.3M1575.A263.A$3836.3A259.A.A$
2210.2M1626.A259.A2.A$2209.M2.M1886.2A$2210.2M54.M1817.2A$2266.M1563.
2A252.A.A$2266.M9.2M33.2M1517.A255.A$2276.2M32.M.M1518.3A152.2A98.2A$
2310.2M1521.A152.2A107.A$4094.A.A$2278.3M1812.A2.A$4094.2A$2282.M
1531.2A166.2A$2282.M1530.A.A26.A139.2A85.2A$2282.M1530.A27.A.A225.2A$
2278.2M1532.2A27.2A234.2A$2277.M2.M1524.A39.2A230.A$2278.2M40.2M1482.
A.A38.A.A230.3A$2320.2M1483.2A39.A233.A$3560.2A237.A298.A$3559.A.A
236.A.A50.A245.A.A$3558.A.A3.2A232.2A50.A.A245.2A$2248.2M1309.A4.A.A
255.2A26.2A23.A$2247.M2.M1314.A256.2A7.2A42.3A20.2A$2248.M.M1580.A46.
A19.2A$2249.M66.2M1511.A.A16.2A27.A.A12.A$2316.2M1511.2A17.A.A26.A.A
11.A.A$3812.2A35.A.A26.A11.A2.A$2279.2M1531.2A36.A40.2A$2278.M.M1521.
2A$2279.M1523.A$3803.A.A$2289.3M1512.2A87.2A$3893.2A283.A$2242.2M
1823.2A108.A.A$2241.M2.M1813.2A7.2A80.A5.A22.2A$2242.2M54.M1760.A88.A
.A3.A.A$2298.M1574.2A184.A.A86.2A4.A2.A$2298.M9.2M33.2M1448.2A77.A.A
185.2A93.2A$2308.2M32.M.M1448.A.A76.A$2342.2M1450.A76.2A7.2A$3808.2A
70.2A196.2A67.2A$2310.3M1494.A.A268.A68.2A26.2A$3807.A80.2A.A184.A.A
97.A$2314.M1491.2A80.2A.3A182.2A98.A.A$2314.M1553.2A24.A267.2A13.2A$
2314.M1553.2A18.2A.3A268.2A$2310.2M1577.A.A170.2A$2309.M2.M1484.2A90.
A.A169.A.A85.A$2310.2M40.2M1442.A.A72.2A17.A170.A86.A.A5.2A40.2A$
2352.2M1443.A25.2A46.2A187.2A87.2A5.2A40.2A$3823.2A66.A268.2A$3815.2A
72.3A268.2A$3816.A71.A$2280.2M1514.A16.3A72.2A307.2A$2279.M2.M1512.A.
A15.A66.2A207.A107.A.A$2280.M.M1512.2A83.2A206.A.A64.2A41.A$2281.M66.
2M1464.A250.2A21.A2.A63.2A190.A$2348.2M1463.A.A250.A22.2A45.2A208.A.A
$3813.A.A46.2A199.3A69.A2.A208.2A$2311.2M1498.3A.2A28.2A14.A2.A198.A
34.2A35.A.A143.2A$2310.M.M1497.A33.A2.A13.A.A233.A.A36.A144.2A68.2A$
2311.M1499.3A.2A27.A.A15.A6.2A30.A196.A251.A2.A$3813.A.2A28.A24.A29.A
.A448.A.A$2321.3M1546.A.A28.2A178.2A105.2A50.A10.2A99.A$3823.2A46.2A
208.A.A104.2A48.3A10.A.A$2274.2M1547.2A7.2A249.A153.A14.A84.2A4.2A$
2273.M2.M1555.A67.2A154.A26.2A16.2A134.2A7.A9.A17.A62.2A4.2A$2274.2M
54.M1499.A.A6.2A25.2A31.A2.A152.A.A42.A2.A57.2A81.3A8.A.A16.3A$2330.M
1499.2A6.A.A26.A32.A.A152.2A44.A.A56.A.A80.A11.2A20.A11.A63.A$2330.M
9.2M33.2M1462.A27.A.A31.A200.A57.A82.2A31.2A9.3A62.A.A$2340.2M32.M.M
1491.2A246.A42.2A125.A48.A16.2A$2374.2M1131.2A606.A.A168.2A10.2A33.3A
$3506.A.A301.2A32.2A270.2A15.A8.2A154.A15.A17.A9.2A3.2A11.2A$2342.3M
1160.A.A3.2A297.2A27.2A2.A2.A226.2A58.3A6.2A152.A.A15.3A15.2A8.2A3.2A
11.2A$3506.A4.A.A324.A.A3.A.A217.2A7.2A61.A159.2A19.A$2346.M1165.A
326.A5.A43.2A174.A52.2A15.2A13.2A121.2A41.2A$2346.M1542.A144.2A29.A.A
49.A.A30.A122.2A79.2A$2346.M1543.3A140.A.A30.2A48.A.A29.A.A101.2A100.
A$2342.2M1482.A65.A139.A.A3.2A43.2A32.A30.2A102.2A98.A.A$2341.M2.M
1480.A.A205.A4.A.A42.2A58.2A207.2A$2342.2M40.2M1439.A.A211.A53.2A48.
2A$2384.2M1440.A266.A73.2A144.2A$3827.3A261.A.A64.2A7.2A144.2A$3495.
2A332.A261.2A66.A$3494.A.A650.A11.A.A112.A7.2A$2312.2M1179.A.A3.2A
603.A41.A.A11.2A92.2A17.A.A7.A$2311.M2.M1179.A4.A.A601.A.A41.2A82.2A
21.A.A15.A2.A4.3A66.2A$2312.M.M1185.A602.2A125.A.A23.A16.2A5.A68.A$
2313.M66.2M1792.2A54.A25.2A62.2A28.3A$2380.2M1756.2A34.A.A52.2A89.A
31.A$4138.2A36.A7.2A135.3A$2343.2M1750.2A79.2A6.2A91.2A44.A$2342.M.M
1742.2A5.A2.A178.A2.A$2343.M1743.A.A4.A.A175.2A3.A.A$4089.A5.A91.A9.
2A73.2A4.A$2353.3M1733.2A95.A.A8.A$4186.A.A9.3A135.2A$2306.2M1879.A
13.A134.2A$2305.M2.M1790.2A99.2A120.2A20.2A$2306.2M54.M1735.A2.A113.
2A105.2A20.A$2362.M1736.A.A56.2A55.A111.2A16.3A$2362.M9.2M33.2M1663.
2A26.A56.A.A52.2A.A110.A2.A17.A$2372.2M32.M.M1663.2A83.A53.A2.A112.2A
$2406.2M1672.2A74.2A54.2A132.A$4080.A101.2A13.2A146.A.A$2374.3M1704.
3A67.2A29.2A13.2A146.A.A$4083.A67.2A191.2A.3A$2378.M79.2M1890.A$2378.
M78.M2.M1621.A201.A59.2A.3A$2378.M79.2M1621.A.A198.3A59.2A.A$2374.2M
1705.A.A74.2A121.A$2373.M2.M1703.2A.3A9.2A54.2A5.2A121.2A43.2A8.2A$
2374.2M40.2M1668.A7.A2.A53.2A31.2A6.A.2A130.A.A7.2A$2416.2M1662.2A.3A
8.A.A87.A.A3.3A.2A19.2A111.A$4080.2A.A11.A47.A42.A2.A24.A.A111.A.A$
4142.A.A13.2A26.2A2.3A.2A19.A113.2A$2475.3M1594.2A69.2A13.2A32.A.A$
2344.2M1717.2A7.2A98.2A18.A.A10.2A84.A$2343.M2.M1717.A82.A24.A.A18.A
11.2A10.A71.3A$2344.M.M1717.A.A79.A.A25.A41.A.A69.A60.2A$2345.M66.2M
1651.2A79.A2.A5.2A7.2A8.2A40.A2.A68.2A9.2A48.2A$2412.2M1733.2A5.A.A8.
A51.2A47.2A31.2A$4155.A6.3A101.2A$2375.2M1785.A$2374.M.M1708.2A$2375.
M73.2M1634.2A247.A$2449.2M1882.A.A$2385.3M57.2M1886.A.A$2445.2M1711.
2A118.2A54.A11.A$2338.2M1818.2A118.2A51.3A11.A.A$2337.M2.M1729.A260.A
13.2A4.2A$2338.2M54.M66.M1513.A93.A.A278.A2.A$2394.M66.M1512.A.A92.A.
A279.A.A$2394.M9.2M55.M983.2A528.2A93.A189.A91.A$2404.2M1038.A.A620.
3A189.A.A$3443.A.A3.2A616.A191.A2.A$2452.M5.M9.2M974.A4.A.A808.2A34.A
$2406.3M43.M5.M9.2M980.A844.A.A$2452.M5.M20.2M1815.A$2410.M25.2M41.2M
$2410.M25.2M16.3M1513.2A$2410.M55.2M1501.A2.A$2406.2M58.2M1502.A.A
313.2A3.2A$2405.M2.M1562.A314.2A3.2A5.2A$2406.2M32.3M1855.2A2$2477.2M
1799.A.2A$2477.2M1784.A12.3A.2A$2452.M1809.A.A10.A11.2A$2376.2M74.M
1809.2A12.3A.2A5.A$2375.M2.M73.M1825.A.A7.3A$2376.M.M1899.A.A9.A$
2377.M1901.A$2466.2M10.M1784.2A$2466.2M9.M.M1783.2A$2407.2M68.2M$
2406.M.M$2407.M2$2417.3M$2456.2M$2370.2M84.2M$2369.M2.M$2370.2M54.M$
2426.M$2426.M9.2M21.2M$2436.2M21.2M2.2M$2463.2M2$2438.3M$3421.A$2442.
M972.A4.A.A$2442.M971.A.A3.2A$2442.M972.A.A$2438.2M976.2A588.A$2437.M
2.M1564.A.A$2438.2M40.2M1523.2A$2480.2M2$4003.2A$4003.A.A$2408.2M
1594.A.A63.A$2407.M2.M1594.A64.3A$2408.M.M1662.A$2409.M66.2M1594.2A$
2463.2M11.2M$2463.2M2.2M$2439.2M26.2M$2438.M.M$2439.M1653.2A$4093.A.A
$2449.3M1643.A$4095.2A$2402.2M$2401.M2.M$2402.2M54.M1631.2A$2458.M
1609.2A20.A.A322.A$2458.M9.2M33.2M1552.2A10.A22.A138.A182.A.A$2468.2M
32.M.M1551.A2.A6.3A23.2A136.A.A180.A2.A$2502.2M1553.2A7.A163.A.A180.A
.A$4231.A182.A$2470.3M1451.2A$3924.A.A492.2A$2474.M1450.A178.A314.2A$
2474.M1606.2A20.A.A127.A$2474.M1440.2A145.2A17.2A20.A2.A125.A.A$2470.
2M1442.A2.A143.A2.A8.2A29.2A125.A2.A$2469.M2.M1442.A.A143.A.A10.A157.
2A$2470.2M40.2M1402.A145.A8.3A$2512.2M1557.A$4093.A$4092.A.A$4093.2A$
2440.2M$2439.M2.M$2440.M.M$2441.M66.2M$2508.2M$4098.2A$2471.2M1625.2A
$2470.M.M1621.A$2471.M1621.A.A$4093.2A$2481.3M$4162.2A$2434.2M1647.2A
56.A20.2A$2433.M2.M1646.2A55.A.A$2434.2M54.M1650.2A3.2A$2490.M1599.A
54.A2.A27.2A$2490.M9.2M33.2M1553.3A53.2A28.A$2500.2M32.M.M1556.A80.A.
A19.A$2534.2M1556.2A45.2A33.2A19.A.A4.A$4076.2A60.A2.A54.2A3.A.A$
2502.3M1570.A.A61.A.A58.A.A$4075.A64.A59.2A$2506.M1567.2A$2506.M1643.
2A$2506.M1643.2A$2502.2M$2501.M2.M1548.A$2502.2M40.2M1505.3A120.2A.A$
2544.2M1504.A123.2A.3A$3655.2A393.2A128.A$3655.2A378.2A137.2A.3A$
4036.A55.2A49.A31.A.A$2472.2M1562.A.2A52.A.A47.A.A30.A.A176.A$2471.M
2.M1562.A2.A53.A46.A2.A31.A176.A.A$2472.M.M1563.2A54.2A46.2A17.2A191.
2A$2473.M66.2M1108.2A416.2A91.2A$2540.2M1109.A18.A357.2A38.2A$3651.A.
A14.3A356.A.A$2503.2M1147.2A13.A360.A$2502.M.M1162.2A$2503.M$4092.2A
77.A177.2A$2513.3M1131.2A443.2A76.A.A175.A2.A$3647.2A381.2A24.2A.A6.
2A102.A.A176.A.A$2466.2M1562.2A24.2A.3A3.A.A101.2A.3A175.A$2465.M2.M
1593.A2.A109.A$2466.2M54.M1533.2A.3A2.2A26.2A75.2A.3A$2522.M1534.A.A
32.2A75.2A.A$2522.M9.2M33.2M1073.A402.2A10.A.A18.2A$2532.2M32.M.M
1072.A.A401.2A11.A18.A.A81.2A$2566.2M1073.A.A5.2A426.A74.2A7.2A$3642.
A5.A.A425.2A8.2A65.A$2534.3M1111.A123.A11.2A300.A66.A.A$3647.2A122.A.
A10.2A301.3A64.2A$2538.M1199.2A31.A.A315.A$2538.M1200.A25.2A2.3A.2A$
2538.M1200.A.A23.A2.A$2534.2M1204.2A21.A.A3.3A.2A277.2A120.2A$2533.M
2.M1226.2A6.A.2A276.A2.A6.A112.2A$2534.2M40.2M1080.2A392.A.A5.A.A10.A
7.2A60.2A$2576.2M1080.2A393.A5.A2.A9.A.A5.A2.A59.A.A$4060.2A10.A.A5.A
.A61.A$3642.A26.A6.2A316.A78.A7.A$3641.A.A24.A.A5.2A310.A4.A.A163.A
40.A$2504.2M1134.A2.A23.A2.A316.A.A3.2A163.A.A33.2A3.A.A$2503.M2.M
1134.2A25.2A91.2A13.2A210.A.A167.A.A32.A.A3.2A$2504.M.M1254.2A13.2A
211.2A168.A33.2A$2505.M66.2M1217.2A363.3A$2572.2M1216.A2.A7.A354.A$
3791.2A.A5.A.A$2535.2M1257.A5.2A$2534.M.M1257.2A$2535.M1243.2A$3780.A
$2545.3M1089.2A13.2A4.2A92.2A12.2A9.3A19.2A$3636.A.A13.2A4.2A92.A12.A
2.A8.A21.2A162.A$2498.2M1137.A109.2A4.3A10.2A194.A.A$2497.M2.M1246.2A
6.A206.2A$2498.2M54.M$2554.M1102.2A112.A5.A180.2A$2554.M9.2M33.2M
1052.2A2.2A111.A.A3.A.A178.A2.A$2564.2M32.M.M1051.A.A115.A2.A2.A.A
178.A.A$2598.2M1052.A118.2A4.A180.A$3651.2A28.2A102.2A$2566.3M1112.A
79.A23.2A179.2A4.2A$3682.3A75.A.A203.2A4.2A$2570.M1113.A7.2A67.2A$
2570.M1070.A49.A2.A262.A$2570.M1069.A.A48.A.A262.A.A$2566.2M1072.A.A
49.A264.2A16.A60.2A13.2A$2565.M2.M1072.A23.2A308.3A33.2A24.A14.A$
2566.2M40.2M1054.A.A282.2A11.2A3.2A9.A17.A15.A13.2A6.3A15.A.A$2608.2M
1054.A284.2A11.2A3.2A8.2A15.3A15.A.A11.2A6.A18.2A$3663.2A328.A19.2A$
3690.2A301.2A$3689.A2.A262.2A121.2A$2536.2M1152.2A264.A121.A$2535.M2.
M1417.A.A117.A.A$2536.M.M1418.2A117.2A4.2A$2537.M66.2M1438.2A36.A$
2604.2M1067.2A321.2A46.2A34.A.A$3673.2A7.2A312.2A82.2A$2567.2M1113.A$
2566.M.M1111.A.A$2567.M1112.2A$3960.2A$2577.3M1381.A79.2A$3662.2A294.
3A28.2A50.A19.2A$2530.2M1131.A294.A31.A31.2A3.2A13.3A15.A.A$2529.M2.M
1130.A.A321.3A33.A3.A16.A15.A$2530.2M54.M1077.2A321.A32.3A5.3A28.2A$
2586.M1433.A9.A$2586.M9.2M33.2M$2596.2M32.M.M1045.2A$2630.2M1023.2A
21.A.A$3654.A2.A22.A292.2A55.2A6.2A11.2A$2598.3M1053.A.A23.2A291.2A
55.A.A4.A.A10.A2.A2.2A$3655.A309.2A20.2A42.A6.A4.A7.2A3.2A$2602.M
1363.A20.2A53.A.A$2602.M1087.2A271.3A16.2A57.A2.A$2602.M1048.A38.2A
271.A17.A2.A57.2A12.2A79.A11.2A$2598.2M1050.A.A329.2A72.2A78.A.A10.2A
$2597.M2.M1050.2A216.2A3.2A88.A138.2A31.A.A$2598.2M40.2M1033.2A57.A
133.A2.A2.A.A86.A.A138.A25.2A2.3A.2A$2640.2M1033.A57.A.A133.A.A3.A87.
A.A138.A.A23.A2.A$3676.3A55.2A134.A43.2A45.3A.2A138.2A21.A.A3.3A.2A$
3678.A235.2A44.A167.2A6.A.2A$3961.3A.2A$2568.2M1166.2A225.A.2A$2567.M
2.M1164.A.A$2568.M.M1088.2A73.A.A156.A11.2A66.2A8.2A$2569.M66.2M1020.
A.A74.A156.A.A10.2A4.2A60.2A7.A.A$2636.2M1020.A200.2A31.A.A15.A2.A68.
A$3657.2A201.A25.2A2.3A.2A14.A.A67.A.A143.2A13.2A$2599.2M1259.A.A23.A
2.A21.A68.2A144.2A13.2A$2598.M.M1260.2A21.A.A3.3A.2A260.2A227.2A$
2599.M1284.2A6.A.2A141.2A116.A2.A226.A.A$4037.2A117.2A.A221.2A3.A.A$
2609.3M1348.2A197.A220.A.A4.A$3960.2A60.A136.2A220.A$2562.2M1103.2A
352.A.A120.2A$2561.M2.M1102.2A7.2A343.A.A121.A$2562.2M54.M1057.A342.
3A.2A92.2A23.3A$2618.M1055.A.A205.2A13.2A119.A16.2A80.A24.A$2618.M9.
2M33.2M1009.2A206.2A13.2A77.A42.3A.2A10.2A81.3A$2628.2M32.M.M992.2A
253.2A61.A.A43.A.2A86.2A7.A$2662.2M993.2A252.A2.A60.A.A133.A$3647.2A
263.2A.A48.A11.A135.3A24.A$2630.3M1015.A266.A47.A.A11.3A134.A23.A.A$
3648.A.A264.2A41.2A4.2A13.A158.A.A$2634.M1014.2A249.2A55.A2.A178.A$
2634.M1266.A55.A.A$2634.M1238.2A13.2A8.3A57.A61.2A95.A14.2A$2630.2M
1241.A14.2A8.A121.2A8.A85.A.A12.A2.A17.A$2629.M2.M1004.2A235.3A152.A.
A84.A.A13.A.A17.3A$2630.2M1005.2A228.2A7.A15.2A134.A2.A85.A15.A9.2A
10.A$3867.A24.2A135.2A111.A.A9.2A$3640.2A226.3A175.2A95.A$3639.A2.A
227.A175.A.A76.2A$3639.A.A11.2A367.2A24.A75.A2.A$2600.2M1038.A11.A.A
223.A143.2A24.2A75.A.A$2599.M2.M1049.A224.A.A246.A48.2A$2600.M.M1048.
2A223.A2.A295.A.A$2601.M1275.2A132.2A164.A$4010.A2.A163.2A$4011.A.A
17.2A$2631.2M1004.2A373.A18.2A$2630.M.M1004.2A533.2A$2631.M1036.2A
383.2A117.A.A$3668.2A351.2A30.2A119.A$2641.3M1016.2A359.2A151.2A$
3661.A$2594.2M1062.3A562.A$2593.M2.M1061.A36.A526.A.A$2594.2M54.M
1038.A4.A.A308.A46.2A124.2A43.2A$2650.M991.2A15.A28.A.A3.2A308.A.A45.
2A123.A.A$2650.M9.2H980.A.A13.A.A28.A.A312.A.A156.2A13.A$2660.2H981.A
14.A.A29.2A198.2A110.3A.2A16.2A137.2A20.A39.2A$3656.3A.2A227.A2.A108.
A22.2A25.A103.2A27.A.A37.A.A$3638.2A15.A233.A.A110.3A.2A42.A.A103.A
27.A.A36.A.A$3637.A2.A15.3A.2A228.A113.A.2A34.2A7.2A100.3A29.A38.A$
3637.A.A18.A.2A380.A.A31.2A75.A$3638.A278.2A125.A30.A.A$3668.2A247.2A
125.2A28.A.A3.2A72.A$3668.2A7.2A396.A4.A.A70.A.A288.A$3677.A332.2A69.
A71.A.A26.A260.A.A$3675.A.A326.2A4.2A139.3A.2A24.A.A255.A3.2A$3675.2A
214.2A110.A.A27.2A115.A30.2A255.A.A$3643.A247.2A110.A29.A.A115.3A.2A
282.2A$3642.A.A357.2A31.A117.A.2A$3643.2A271.A11.2A80.2A23.2A$3655.2A
258.A.A10.2A80.2A151.2A$2632.2M1021.2A225.2A31.A.A245.2A7.2A$2631.M2.
M1208.2A25.2A11.A25.2A2.3A.2A253.A6.A$2632.M.M1081.A125.A2.A23.A.A11.
A.A23.A2.A103.A153.A.A5.A.A$2633.M1076.A4.A.A124.A.A3.2A20.A13.2A21.A
.A3.3A.2A96.A.A152.2A6.2A$3709.A.A3.2A126.A3.A.A57.2A6.A.2A97.A$3671.
A38.A.A135.A$3670.A.A38.2A424.A$3670.A.A18.2A177.2A264.A.A11.2A$3671.
A19.2A177.2A134.A5.2A123.2A11.2A$3672.3A330.A.A3.A2.A128.2A$3674.A
179.2A150.2A4.2A10.2A116.A2.A$3854.2A49.2A13.2A101.A2.A116.A.A$2626.
2M1070.2A175.A29.2A13.2A102.2A118.A$2625.M2.M1069.2A173.3A59.2A229.A$
2626.2M1078.A165.A61.A2.A227.A.A$3705.A.A164.2A61.2A.A226.A.A$3706.A
7.2A222.A227.A42.2A$3714.A223.2A227.3A39.A.A2.2A87.2A$3680.2A30.A.A
208.2A244.A40.A3.2A79.A6.A2.A$3679.A.A30.2A210.A369.A.A6.A.A$3680.A
105.A11.2A121.3A276.2A93.2A7.A$3785.A.A10.2A121.A277.A2.A$3752.2A31.A
.A94.2A316.A.A10.2A$3671.2A8.A71.A25.2A2.3A.2A93.2A317.A11.2A$3670.A
2.A6.A.A70.A.A23.A2.A$3671.2A8.2A26.2A.A41.2A21.A.A3.3A.2A55.2A$3709.
2A.3A62.2A6.A.2A55.2A365.2A89.2A$3715.A182.2A311.2A88.A2.A$3709.2A.3A
183.2A2.2A294.2A102.A.A$3710.A.A172.2A15.A.A294.A70.2A31.A$3710.A.A
152.2A19.A17.A132.A161.A.A68.2A$3711.A153.A.A15.3A18.2A130.A.A161.2A
46.A$3685.A181.A15.A38.A114.2A209.3A$3684.A.A88.2A13.2A75.2A52.A.A
327.A$3684.A.A88.2A13.2A129.A.A326.2A39.2A$3685.A11.2A106.2A115.A116.
2A148.2A100.2A5.2A$3697.2A105.A2.A7.A94.2A126.A.A79.A69.A107.2A$3805.
2A.A5.A.A92.A2.A5.A118.A.A74.A4.A.A68.A.A$3808.A5.2A93.A.A5.A.A118.A
74.A.A3.2A70.2A$3808.2A100.A6.A2.A5.A187.A.A179.2A$3793.2A123.2A5.A.A
187.2A92.2A85.2A$3676.2A116.A109.2A19.A.A281.2A29.2A60.2A$3676.2A29.A
58.2A12.2A9.3A19.2A88.A2.A19.A313.2A60.2A$3706.A.A57.A12.A2.A8.A21.2A
88.A.A$3706.A.A52.2A4.3A10.2A122.A$3705.2A.3A50.2A6.A459.A$3711.A516.
A.A$3705.2A.3A74.A5.A436.2A$3705.2A.A75.A.A3.A.A444.2A32.2A$3784.A2.A
2.A.A444.A20.2A11.2A$3697.2A86.2A4.A446.3A18.A$3688.2A7.2A100.2A439.A
15.3A44.A$3675.A13.A85.A23.2A401.2A52.A44.3A$3674.A.A12.A.A82.A.A406.
2A17.2A96.A$3674.A.A13.2A83.2A405.A.A115.2A$3675.A506.A90.2A$4181.2A
75.A5.A7.A.A$4208.2A15.A31.A.A3.A.A6.A$3674.2A34.2A495.A2.A13.A.A30.A
.A3.A.A5.2A$3674.2A34.2A496.A.A14.2A31.A5.A$4209.A2$4247.A4.A$4208.A
37.A.A2.A.A$3680.2A13.A511.A.A35.A2.A2.2A16.A$3671.2A7.2A12.A.A452.A
57.A2.A35.2A21.3A35.2A$3672.A21.A.A446.A4.A.A57.2A62.A34.2A$3672.A.A
20.A15.A430.A.A3.2A112.2A7.2A$3666.A6.2A17.3A15.A.A69.A360.A.A117.A$
3666.3A23.A17.A2.A4.2A56.A4.A.A360.2A117.A.A$3669.A41.2A4.A2.A54.A.A
3.2A481.2A36.2A$3668.2A48.A.A55.A.A523.2A$3719.A57.2A527.2A$4306.2A$
3669.2A$3669.2A$3686.2A612.2A$3686.A.A571.A23.2A14.2A$3688.A570.A.A
22.A$3688.2A570.A14.2A8.3A$4275.A11.A$4276.3A$3904.A373.A$3904.3A20.
2A$3907.A19.2A333.2A$3906.A.A12.A339.A.A$3682.2A222.A.A11.A.A338.A$
3682.A224.A11.A2.A337.2A$3683.3A234.2A354.2A$3685.A590.A.A$3975.2A
301.A10.2A$3974.A.A292.2A7.2A8.A2.A$3922.2A49.A.A3.2A288.2A17.A.A$
3922.2A50.A4.A.A307.A$3980.A304.2A$4284.A.A$4285.A$3902.2A$3901.A.A$
3901.A$3900.2A7.2A$3909.2A2$3674.2A241.2A.A356.2A$3674.2A7.2A232.2A.
3A354.2A$3683.A213.2A24.A360.A$3681.A.A213.2A18.2A.3A360.A.A$3681.2A
235.A.A362.A.A$3918.A.A363.A$3900.2A17.A$3663.A31.2A203.2A$3663.3A22.
2A4.A2.A222.A$3666.A21.A.A4.2A3.2A216.3A$3665.2A22.A10.2A15.2A198.A
366.2A$3716.A2.A197.2A364.A2.A$3716.A.A190.2A372.A.A$3717.A191.2A373.
A2$4272.2A$3891.2A378.A2.A48.A$3682.2A206.A2.A378.2A48.A.A$3682.2A
206.A.A429.A.A$3891.A6.2A30.A392.A$3899.A29.A.A$3899.A.A28.2A407.A$
3651.2A51.A11.2A182.2A435.3A8.A$3651.2A50.A.A10.2A618.A9.3A$3703.A.A
20.2A201.2A9.A383.2A10.2A7.A$3610.A86.2A2.3A.2A18.A2.A166.2A31.A2.A7.
A.A372.2A8.2A19.2A$3610.3A84.A2.A25.A.A167.A32.A.A8.2A373.A$2668.2M
943.A81.A.A3.3A.2A20.A56.A111.A.A31.A384.A.A$2668.2M942.2A81.2A6.A.2A
76.A.A111.2A417.2A$3775.2A6.A2.A155.2A88.A$3774.A2.A6.2A155.A.A88.3A$
3775.2A163.A.A92.A$3663.2A276.A92.2A$3664.A253.2A425.A$3603.A57.3A
254.A425.A.A$3603.3A55.A31.2A13.2A209.3A423.2A$3606.A86.2A13.2A211.A$
3594.2A9.2A116.2A330.2A$3594.2A31.2A93.A2.A297.A31.A.A$3627.2A94.2A.A
295.A.A32.A289.A$3726.A295.A2.A31.2A287.A.A$3672.2A52.2A295.2A321.A2.
A$3671.A.A37.2A634.2A$3671.A40.A339.2A286.2A$3670.2A37.3A19.2A65.A
223.2A28.A.A285.2A$3615.2A92.A21.2A64.A.A222.A.A29.A293.A$3615.2A180.
2A224.A30.2A6.A284.A.A$4061.A.A283.2A$4060.A2.A$3738.2A55.2A264.2A$
3634.A42.2A59.2A55.A.A$3633.A.A41.2A67.A49.A.A$2557.2A1073.A2.A56.2A
51.A.A49.A245.2A$2556.A2.A1038.A34.2A56.A2.A51.A7.2A287.2A$2557.2A
1038.A.A92.2A60.A280.2A366.A$3598.A121.2A30.A.A281.A365.A.A$3719.A.A
30.2A279.3A271.2A35.2A55.A.A$3684.2A34.A312.A273.2A35.A.A55.A$3683.A
2.A365.2A292.A59.2A$3602.2A3.2A74.A.A348.A17.2A292.2A58.2A$3595.2A5.
2A3.2A75.A26.2A8.A311.A.A$3595.2A113.A2.A6.A.A310.A.A$3711.2A8.2A26.
2A.A278.3A.2A18.2A$2564.A1048.2A.A132.2A.3A275.A24.2A279.2A$2563.A.A
1047.2A.3A12.A123.A275.3A.2A295.A3.2A$2562.A2.A1040.2A11.A10.A.A116.
2A.3A278.A.2A294.A.A$2563.2A1042.A5.2A.3A12.2A117.A.A577.A.A$3604.3A
7.A.A133.A.A290.2A285.A$3604.A9.A.A134.A291.2A7.2A275.2A$3615.A109.A
326.A$3630.2A92.A.A323.A.A$2593.2A1035.2A92.A.A323.2A$2592.A2.A1129.A
11.2A$2593.2A1142.2A$2597.A$2597.A1432.2A230.A$2597.A1432.2A224.A4.A.
A$4255.A.A3.2A$2593.3A1120.2A538.A.A$3716.2A29.A509.2A$3746.A.A283.2A
$2591.2A1153.A.A282.A2.A11.A$2581.A9.2A1152.2A.3A280.A.A11.A.A$2581.A
1169.A280.A12.A.A$2525.2A54.A1163.2A.3A274.2A19.A$2524.A2.A1217.2A.A
276.2A20.3A$2525.2A1522.A$3737.2A$2572.3A1153.2A7.2A$3715.A13.A509.A
4.A$2562.A1151.A.A12.A.A506.A.A2.A.A$2561.A.A1150.A.A13.2A240.2A264.
2A3.A2.A$2562.2A1151.A256.2A270.2A4.2A$4250.A.A$2599.2A1650.A$2532.A
66.2A36.2A1075.2A34.2A$2531.A.A103.2A1075.2A34.2A$2530.A2.A1707.2A$
2531.2A1708.2A$2645.2A1616.2A$2645.2A1352.A263.A$3720.2A13.A262.A.A
220.2A38.A.A16.A$2603.2A59.3A1044.2A7.2A12.A.A125.A135.A.A220.2A38.2A
16.A.A$2561.2A40.2A1107.A21.A.A124.A.A83.2A30.2A16.2A.3A275.A2.A$
2560.A2.A62.2A34.A5.A1043.A.A20.A15.A110.2A82.A.A30.2A22.A275.2A$
2561.2A63.A.A33.A4.A.A1036.A6.2A17.3A15.A.A194.A49.2A.3A217.A$2565.A
61.2A33.A4.A.A1036.3A23.A17.A2.A4.2A201.2A34.2A.A218.A.A$2565.A92.2A
8.A1040.A41.2A4.A2.A103.2A94.A.A257.A$2565.A92.2A1048.2A48.A.A102.A.A
87.A6.A256.3A$3759.A102.A.A87.A.A4.2A256.A$2561.3A1299.A88.2A$3709.2A
282.2A289.2A$2593.2A1114.2A282.2A4.2A282.A.A$2559.2A32.A.A1130.2A242.
2A27.A.A258.2A22.A$2549.A9.2A33.2A1130.A.A240.A.A29.A258.2A5.2A$2549.
A1178.A240.A31.2A263.A2.A$2493.2A54.A1178.2A238.2A23.2A272.2A$2492.A
2.A1497.2A$2493.2A161.3A2$2540.3A1445.A315.A$3987.A.A267.2A43.3A$
2530.A1457.A268.A43.A$2529.A.A1190.2A117.A416.3A40.2A$2530.2A1190.A
117.A.A417.A$2652.A1070.3A115.2A135.2A4.A$2567.2A83.A1072.A251.A2.A2.
A.A$2500.A66.2A36.2A45.A1325.A.A2.A2.A$2499.A.A103.2A1236.2A134.A4.2A
$2498.A2.A1340.A.A$2499.2A1340.A.A354.A4.A24.2A29.2A$2613.2A1227.A
354.A.A2.A.A23.2A29.2A$2613.2A1582.2A3.A2.A$4203.2A4.2A$2571.2A59.3A
40.2A1532.A.A$2529.2A40.2A101.A2.A1532.A44.2A$2528.A2.A62.2A34.A5.A
11.2A24.A.A1578.2A$2529.2A63.A.A33.A4.A.A10.A.A24.A$2533.A61.2A33.A4.
A.A11.A1550.2A$2533.A92.2A8.A1563.2A$2533.A92.2A59.A1026.2A506.2A$
2686.A.A1025.2A7.2A497.A$2529.3A154.A.A1034.A456.2A38.A.A$2687.A1033.
A.A456.2A38.2A$2561.2A1158.2A$2527.2A32.A.A$2517.A9.2A33.2A1615.A$
2517.A1185.A31.2A441.A.A$2461.2A54.A1185.3A22.2A4.A2.A441.A$2460.A2.A
1242.A21.A.A4.2A3.2A227.A206.3A$2461.2A161.3A1078.2A22.A10.2A15.2A
209.A.A205.A$3756.A2.A208.2A$2508.3A1245.A.A$3757.A$2498.A1720.2A$
2497.A.A1464.A254.2A5.2A$2498.2A1463.A.A259.A2.A$2620.A1101.2A83.A
156.2A260.2A$2535.2A83.A1101.2A82.A.A$2468.A66.2A36.2A45.A1186.2A$
2467.A.A103.2A$2466.A2.A$2467.2A1222.2A51.A11.2A51.2A405.2A$2581.2A
1108.2A50.A.A10.2A50.A.A405.A$2581.2A1160.A.A20.2A39.A.A407.3A$3737.
2A2.3A.2A18.A2.A39.A410.A$2539.2A59.3A40.2A1092.A2.A25.A.A$2497.2A40.
2A101.A2.A1089.A.A3.3A.2A20.A$2496.A2.A62.2A34.A5.A11.2A24.A.A1090.2A
6.A.2A$2497.2A63.A.A33.A4.A.A10.A.A24.A$2501.A61.2A33.A4.A.A11.A1540.
A4.A$2501.A92.2A8.A1552.A.A2.A.A22.2A29.2A$2501.A92.2A59.A1047.2A452.
2A3.A2.A21.2A29.2A$2654.A.A1047.A86.A371.2A4.2A$2497.3A154.A.A1044.3A
86.A.A376.A.A$2655.A1045.A31.2A13.2A41.2A377.A$2529.2A1202.2A13.2A
464.2A$2495.2A32.A.A1231.2A449.2A$2485.A9.2A33.2A1230.A2.A27.2A365.2A
$2485.A1277.2A.A25.A.A365.2A$2429.2A54.A1280.A24.A.A388.2A$2428.A2.A
1280.2A52.2A24.A389.A$2429.2A161.3A1116.A.A37.2A387.2A38.A.A$3711.A
40.A387.2A38.2A$2476.3A1231.2A37.3A$3749.A$2466.A1672.A$2465.A.A1670.
A.A$2466.2A1671.A$2588.A1547.3A$2503.2A83.A1128.2A417.A$2436.A66.2A
36.2A45.A1128.2A$2435.A.A103.2A1189.2A$2434.A2.A1293.A2.A$2435.2A
1295.2A445.2A$2549.2A1628.2A5.2A$2549.2A1634.A2.A$3724.2A460.2A$2507.
2A59.3A40.2A1110.A2.A$2465.2A40.2A101.A2.A1109.A.A$2464.A2.A62.2A34.A
5.A11.2A24.A.A1111.A$2465.2A63.A.A33.A4.A.A10.A.A24.A$2469.A61.2A33.A
4.A.A11.A1590.2A$2469.A92.2A8.A1188.A414.A$2469.A92.2A59.A1136.A.A
414.3A$2622.A.A1136.2A416.A$2465.3A154.A.A$2623.A$2497.2A1264.2A$
2463.2A32.A.A1262.A.A$2453.A9.2A33.2A1261.A.A$2453.A1308.A384.2A29.2A
$2397.2A54.A1693.2A29.2A$2396.A2.A$2397.2A161.3A2$2444.3A1727.2A$
4174.2A$2434.A$2433.A.A$2434.2A$2556.A$2471.2A83.A$2404.A66.2A36.2A
45.A$2403.A.A103.2A$2402.A2.A$2403.2A$2517.2A$2517.2A2$2475.2A59.3A
40.2A1071.2A$2433.2A40.2A101.A2.A1069.A.A57.A$2432.A2.A62.2A34.A5.A
11.2A24.A.A1071.A57.A.A$2433.2A63.A.A33.A4.A.A10.A.A24.A1112.2A16.A.A
$2437.A61.2A33.A4.A.A11.A1085.2A50.A2.A13.3A.2A$2437.A92.2A8.A1098.A.
A49.A.A13.A$2437.A92.2A59.A1043.2A3.A9.2A40.A15.3A.2A13.2A$2590.A.A
1042.2A12.A2.A43.A13.A.2A12.A2.A$2433.3A154.A.A1032.A24.A.A42.A.A28.A
.A$2591.A1032.A.A24.A43.A.A29.A$2465.2A1157.2A14.2A23.2A29.A$2431.2A
32.A.A1172.2A22.A.A$2421.A9.2A33.2A1197.A63.A$2421.A1287.A18.A.A$
2365.2A54.A1212.A40.A31.3A18.A.A$2364.A2.A1265.A.A38.A.A29.A22.A$
2365.2A161.3A1102.A.A37.A2.A29.2A$3621.A12.A39.2A9.2A7.A$2412.3A1205.
A.A15.2A45.2A7.3A$3621.2A15.2A57.A$2402.A1255.A37.2A$2401.A.A1253.A.A
$2402.2A1253.A2.A5.A83.2A$2524.A1133.2A5.A.A42.2A10.2A26.2A$2439.2A
83.A1140.A2.A14.2A25.2A11.A$2372.A66.2A36.2A45.A1089.2A50.2A16.A38.A.
A69.A5.A$2371.A.A103.2A1134.A.A68.A.A37.2A68.A.A3.A.A$2370.A2.A1239.
2A70.2A107.2A4.A2.A$2371.2A1428.2A$2485.2A1262.2A$2485.2A1121.A140.A
46.2A6.A$3607.A.A47.A89.A.A34.2A9.A2.A4.A.A$2443.2A59.3A40.2A1058.A.A
31.A15.3A87.2A4.2A28.A2.A9.2A5.A.A$2401.2A40.2A101.A2.A1058.A30.3A18.
A54.2A36.A30.A.A17.A$2400.A2.A62.2A34.A5.A11.2A24.A.A1068.2A7.A11.A
20.2A11.2A13.2A26.2A34.A.A31.A$2401.2A63.A.A33.A4.A.A10.A.A24.A1069.
2A7.3A9.2A32.2A13.2A62.2A$2405.A61.2A33.A4.A.A11.A1107.A153.A$2405.A
92.2A8.A1119.2A132.2A18.A.A$2405.A92.2A59.A1201.A2.A18.2A275.A4.A$
2558.A.A1201.2A4.2A289.A.A2.A.A$2401.3A154.A.A1151.2A54.2A289.2A3.A2.
A$2559.A1081.2A69.A19.2A331.2A4.2A$2433.2A1206.2A70.3A15.A.A337.A.A$
2399.2A32.A.A1279.A15.A340.A$2389.A9.2A33.2A1294.2A$2389.A1397.A$
2333.2A54.A1397.3A272.2A$2332.A2.A1454.A271.2A$2333.2A161.3A1089.2A4.
2A122.A70.2A293.2A$3587.A2.A3.2A55.2A64.A.A84.2A278.A$2380.3A1205.2A
42.2A18.A63.A2.A84.A237.2A38.A.A$3632.A16.3A20.2A43.2A82.2A.A237.2A
38.2A$2370.A1262.3A13.A22.A127.A2.A$2369.A.A1263.A37.3A125.2A$2370.2A
1303.A23.A71.2A13.2A253.A$2492.A1085.A119.A.A15.2A30.2A21.2A13.2A252.
A.A$2407.2A83.A1084.A.A107.A9.A2.A14.A2.A29.2A291.A$2340.A66.2A36.2A
45.A1084.A2.A18.2A85.A.A9.2A16.2A320.3A$2339.A.A103.2A1131.2A18.A.A
86.2A349.A$2338.A2.A1256.A$2339.2A1256.2A93.2A$2453.2A1236.A2.A$2453.
2A1237.2A57.A29.A.2A296.2A$3575.A174.A.A26.3A.2A296.2A5.2A$2411.2A59.
3A40.2A1057.A.A174.A26.A308.A2.A$2369.2A40.2A101.A2.A1056.2A203.3A.2A
303.2A$2368.A2.A62.2A34.A5.A11.2A24.A.A1065.2A4.2A148.A22.2A.A16.A.A$
2369.2A63.A.A33.A4.A.A10.A.A24.A1066.2A3.A2.A146.A.A21.2A.3A14.A.A10.
2A$2373.A61.2A33.A4.A.A11.A1098.2A148.2A27.A14.A11.2A$2373.A92.2A8.A
1277.2A5.2A.3A$2373.A92.2A59.A1087.A139.A6.A.A313.2A$2526.A.A1085.A.A
135.3A7.A.A313.A$2369.3A154.A.A1031.A53.A.A127.A7.A10.A315.3A$2527.A
1031.A.A12.2A39.A127.A.A335.A$2401.2A1155.A2.A12.A.A166.A2.A$2367.2A
32.A.A1106.A48.2A14.A7.2A159.2A$2357.A9.2A33.2A1106.3A70.2A21.2A$
2357.A1155.A92.2A7.2A$2301.2A54.A1154.2A101.2A$2300.A2.A1745.2A29.2A$
2301.2A161.3A1098.A483.2A29.2A$3565.3A$2348.3A1201.2A3.2A9.A$3552.2A
3.2A8.2A41.A$2338.A1164.A105.A.A464.2A$2337.A.A1163.3A103.2A465.2A$
2338.2A1166.A38.2A$2460.A1044.2A26.2A11.A$2375.2A83.A1066.2A3.A2.A10.
A.A295.A11.2A152.A4.A$2308.A66.2A36.2A45.A1066.2A4.2A12.2A294.A.A10.
2A151.A.A2.A.A$2307.A.A103.2A1395.2A31.A.A163.2A3.A2.A$2306.A2.A1501.
A25.2A2.3A.2A168.2A4.2A$2307.2A1284.A217.A.A23.A2.A180.A.A$2421.2A
1169.A.A217.2A21.A.A3.3A.2A175.A$2421.2A1169.A.A240.2A6.A.2A$3515.2A
76.A$2379.2A59.3A40.2A1006.A23.2A33.2A61.A398.2A$2337.2A40.2A101.A2.A
1004.A.A48.2A8.A60.A.A397.2A$2336.A2.A62.2A34.A5.A11.2A24.A.A1006.2A
48.2A5.3A28.2A3.2A27.2A419.2A$2337.2A63.A.A33.A4.A.A10.A.A24.A1064.A
31.A3.2A7.2A439.A$2341.A61.2A33.A4.A.A11.A1119.3A13.2A397.2A38.A.A$
2341.A92.2A8.A1088.A43.A255.2A13.2A142.2A38.2A$2341.A92.2A59.A1036.A.
A298.2A13.2A$2494.A.A1001.A33.A2.A240.A86.2A$2337.3A154.A.A1000.A.A
33.2A75.2A3.A159.A.A84.A2.A125.A$2495.A1002.A111.2A2.A.A158.A2.A17.2A
65.2A.A123.A.A$2369.2A1192.2A49.2A8.A151.2A17.A2.A67.A124.A$2335.2A
32.A.A1191.2A58.A.A169.A.A68.2A120.3A$2325.A9.2A33.2A1183.2A65.A2.A
141.A28.A54.2A135.A$2325.A1176.2A3.2A34.2A11.A66.2A141.A.A83.A$2269.
2A54.A1176.2A3.2A33.A2.A7.3A211.2A55.2A23.3A$2268.A2.A1270.A.A8.A79.A
190.A24.A$2269.2A161.3A1108.A88.A.A190.3A66.A136.2A$3513.2A.A54.2A59.
2A184.2A7.A65.A.A135.2A5.2A$2316.3A1194.2A.3A52.2A245.A74.A2.A5.A134.
A2.A$3506.2A11.A56.2A241.3A38.A33.2A5.A.A134.2A$2306.A1200.A5.2A.3A
57.2A243.A37.A.A39.A.A$2305.A.A1196.3A7.A.A287.A54.A.A23.A16.A$2306.
2A1196.A9.A.A286.A.A54.A22.3A$2428.A1086.A287.A2.A75.A$2343.2A83.A
1155.A219.2A76.2A144.2A$2276.A66.2A36.2A45.A1154.A.A442.A$2275.A.A
103.2A1114.A86.2A228.A17.2A45.2A148.3A$2274.A2.A1218.A.A314.A.A15.A.A
45.A.A149.A$2275.2A1220.2A146.2A167.2A16.A47.2A5.2A$2389.2A1155.A75.
2A20.A2.A116.A122.2A9.2A$2389.2A1154.A.A35.2A36.A2.A20.2A116.A.A132.A
$3545.A2.A16.2A15.A2.A36.A.A138.A2.A99.A29.A.A$2347.2A59.3A40.2A1093.
2A17.2A7.2A7.A.A37.A140.2A99.A.A28.2A$2305.2A40.2A101.A2.A1120.A9.A
33.A10.2A6.A226.A2.A131.2A29.2A$2304.A2.A62.2A34.A5.A11.2A24.A.A1119.
A.A13.2A27.A.A9.2A5.A.A226.2A132.2A29.2A$2305.2A63.A.A33.A4.A.A10.A.A
24.A1120.2A13.A2.A25.A2.A6.A8.A2.A236.2A$2309.A61.2A33.A4.A.A11.A
1130.2A30.A.A26.2A6.A.A8.2A237.2A$2309.A92.2A8.A1144.A31.A36.2A$2309.
A92.2A59.A1093.A.A466.2A$2462.A.A1093.2A199.2A265.2A$2305.3A154.A.A
1294.A.A$2463.A1110.A185.A$2337.2A1233.3A385.A4.A$2303.2A32.A.A1231.A
11.A58.A316.A.A2.A.A$2293.A9.2A33.2A1216.A14.2A8.3A15.A42.3A314.2A3.A
2.A$2293.A1261.A.A22.A18.3A43.A319.2A4.2A$2237.2A54.A1262.A23.2A20.A
41.2A325.A.A$2236.A2.A1361.2A56.2A311.A$2237.2A161.3A1256.A$3656.2A.A
120.A$2284.3A1368.A2.A115.A4.A.A180.2A$3656.2A115.A.A3.2A181.2A$2274.
A1351.2A13.2A131.A.A207.2A$2273.A.A1284.2A36.2A26.2A13.2A132.2A207.A$
2274.2A1283.A.A36.2A342.2A38.A.A$2396.A1162.A382.2A38.2A$2311.2A83.A
1161.2A7.2A$2244.A66.2A36.2A45.A1171.A$2243.A.A103.2A1214.3A373.A$
2242.A2.A1319.A374.A.A$2243.2A1383.2A6.A.2A301.A$2357.2A1230.2A37.A.A
3.3A.2A253.A44.3A$2357.2A1230.A.A38.A2.A258.A.A43.A$3591.A11.2A25.2A
2.3A.2A252.A.A$2315.2A59.3A40.2A1170.2A10.2A31.A.A254.A$2273.2A40.2A
101.A2.A1214.A.A10.2A$2272.A2.A62.2A34.A5.A11.2A24.A.A1216.A11.2A330.
2A$2273.2A63.A.A33.A4.A.A10.A.A24.A1197.2A362.2A5.2A$2277.A61.2A33.A
4.A.A11.A1223.A369.A2.A$2277.A92.2A8.A1237.3A367.2A$2277.A92.2A59.A
1188.A$2430.A.A1174.2A270.A$2273.3A154.A.A1175.A269.A.A$2431.A1173.3A
269.A2.A$2305.2A1298.A272.2A98.2A$2271.2A32.A.A1582.2A11.A74.A$2261.A
9.2A33.2A1311.A270.2A10.A.A74.3A$2261.A1352.2A2.A.A281.A.A31.2A43.A$
2205.2A54.A1351.A.A2.2A281.2A.3A2.2A25.A$2204.A2.A1398.2A6.A292.A2.A
23.A.A$2205.2A161.3A1234.A2.A292.2A.3A3.A.A21.2A$3606.A.A292.2A.A6.2A
$2252.3A1352.A376.A$3949.2A32.A.A$2242.A1706.2A32.A.A$2241.A.A1740.A$
2242.2A$2364.A$2279.2A83.A1533.2A13.2A$2212.A66.2A36.2A45.A1533.2A13.
2A$2211.A.A103.2A1564.2A$2210.A2.A1668.A2.A$2211.2A1668.A.2A$2325.2A
1554.A$2325.2A1553.2A$3895.2A$2283.2A59.3A40.2A1506.A$2241.2A40.2A
101.A2.A1506.3A23.2A$2240.A2.A62.2A34.A5.A11.2A24.A.A1299.A209.A14.2A
8.A$2241.2A63.A.A33.A4.A.A10.A.A24.A1299.A.A222.A.A5.3A$2245.A61.2A
33.A4.A.A11.A1324.A.A224.A6.A7.2A$2245.A92.2A8.A1337.2A241.A$2245.A
92.2A59.A1495.A30.3A$2398.A.A1493.A.A29.A$2241.3A154.A.A1287.2A205.2A
17.2A$2399.A1288.A.A222.A2.A$2273.2A1414.A224.A.A$2239.2A32.A.A1639.A
$2229.A9.2A33.2A$2229.A$2173.2A54.A$2172.A2.A$2173.2A161.3A2$2220.3A
2$2210.A$2209.A.A1459.A$2210.2A1458.A.A4.A$2332.A1338.2A3.A.A171.A$
2247.2A83.A1342.A.A166.A4.A.A$2180.A66.2A36.2A45.A1342.2A166.A.A3.2A$
2179.A.A103.2A1557.A.A$2178.A2.A1663.2A$2179.2A1396.A63.A$2293.2A
1281.A.A61.A.A$2293.2A1281.2A62.2A2$2251.2A59.3A40.2A$2209.2A40.2A
101.A2.A$2208.A2.A62.2A34.A5.A11.2A24.A.A1361.A$2209.2A63.A.A33.A4.A.
A10.A.A24.A1361.A.A$2213.A61.2A33.A4.A.A11.A1386.A2.A$2213.A92.2A8.A
1400.2A$2213.A92.2A59.A$2366.A.A$2209.3A154.A.A$2367.A$2241.2A$2207.
2A32.A.A$2197.A9.2A33.2A1324.A63.A89.2A$2197.A1369.A.A61.A.A87.A.A$
2141.2A54.A1370.2A62.2A88.A$2140.A2.A$2141.2A161.3A2$2188.3A2$2178.A$
2177.A.A$2178.2A$2300.A$2215.2A83.A$2148.A66.2A36.2A45.A$2147.A.A103.
2A$2146.A2.A1777.A9.A$2147.2A1778.3A5.3A$2261.2A1667.A3.A$2261.2A
1666.2A3.2A$3924.A$2219.2A59.3A40.2A1599.3A$2177.2A40.2A101.A2.A1601.
A$2176.A2.A62.2A34.A5.A11.2A24.A.A1601.2A$2177.2A63.A.A33.A4.A.A10.A.
A24.A1290.2A62.2A$2181.A61.2A33.A4.A.A11.A1316.2A62.2A$2181.A92.2A8.A
1677.A$2181.A92.2A59.A1603.2A20.A.A$2334.A.A1602.A.A20.2A$2177.3A154.
A.A1604.A14.2A$2335.A1605.2A13.2A$2209.2A$2175.2A32.A.A1741.A$2165.A
9.2A33.2A1740.A.A7.2A$2165.A1786.2A7.A.A$2109.2A54.A1796.A$2108.A2.A$
2109.2A161.3A1661.2A$3936.A$2156.3A1778.3A$3608.2A62.2A265.A$2146.A
1461.2A62.2A$2145.A.A$2146.2A$2268.A$2183.2A83.A1346.2A62.2A277.2A$
2116.A66.2A36.2A45.A1346.2A62.2A277.2A$2115.A.A103.2A$2114.A2.A$2115.
2A$2229.2A$2229.2A1722.2A4.2A$3952.A2.A3.A.A$2187.2A59.3A40.2A1660.2A
5.A$2145.2A40.2A101.A2.A1634.2A$2144.A2.A62.2A34.A5.A11.2A24.A.A1635.
2A7.2A$2145.2A63.A.A33.A4.A.A10.A.A24.A1645.A$2149.A61.2A33.A4.A.A11.
A1669.A.A$2149.A92.2A8.A1682.2A4.2A$2149.A92.2A59.A1615.2A20.A$2302.A
.A1615.A18.A.A$2145.3A154.A.A1615.A.A16.2A13.2A$2303.A1617.2A31.2A$
2177.2A$2143.2A32.A.A$2133.A9.2A33.2A1780.2A$2133.A1826.2A$2077.2A54.
A1822.2A$2076.A2.A1876.2A$2077.2A161.3A1635.A$3878.3A21.2A$2124.3A
1754.A16.A3.2A$3880.2A15.A.A61.2A$2114.A1689.2A90.A.A28.2A32.2A$2113.
A.A1688.A.A89.A26.2A2.2A$2114.2A1672.A16.A89.2A25.A.A$2236.A1550.A.A
132.A$2151.2A83.A1550.A.A131.2A$2084.A66.2A36.2A45.A1551.A$2083.A.A
103.2A$2082.A2.A1813.A$2083.2A1803.2A8.A.A34.A$2197.2A1598.2A71.2A16.
2A8.A.A33.A.A$2197.2A1599.A71.2A27.A34.2A$3798.A.A121.2A$2155.2A59.3A
40.2A1538.2A2.2A37.A78.A.A$2113.2A40.2A101.A2.A1541.2A35.3A15.A9.A53.
A$2112.A2.A62.2A34.A5.A11.2A24.A.A1578.A18.3A5.3A12.2A$2113.2A63.A.A
33.A4.A.A10.A.A24.A1566.2A11.2A20.A3.A15.2A58.2A$2117.A61.2A33.A4.A.A
11.A1547.2A43.2A32.2A3.2A32.2A39.A.A$2117.A92.2A8.A1560.2A115.A2.A38.
A$2117.A92.2A59.A1515.2A95.2A13.2A38.2A$2270.A.A1513.A.A96.A61.2A$
2113.3A154.A.A1514.A97.A.A27.2A30.2A17.2A$2271.A1614.2A26.A.A16.2A31.
2A$2145.2A1768.A7.A9.2A$2111.2A32.A.A1770.A3.A.A$2101.A9.2A33.2A1649.
2A52.2A64.A.A2.A.A5.2A$2101.A1694.A.A16.2A34.2A25.2A11.2A25.2A3.A5.A
2.A$2045.2A54.A1694.A18.A.A45.2A13.2A10.A2.A36.2A$2044.A2.A1619.2A62.
2A62.2A20.A44.A2.A25.A.A$2045.2A161.3A1457.A63.A78.2A4.2A44.2A4.2A21.
A80.2A$3666.A63.A39.2A39.A.A55.A.A50.2A48.A2.A$2092.3A1571.5A14.2A43.
5A14.2A18.A.A5.A35.A57.A17.A31.A2.A47.A.A$3671.A13.A49.A13.A20.A5.A.A
25.2A7.2A56.2A15.A.A7.2A22.A.A48.A$2082.A1585.3A12.A.A46.3A12.A.A26.
2A26.2A20.2A33.2A24.A2.A7.A.A22.A22.2A$2081.A.A1583.A15.2A46.A15.2A
78.A34.A25.2A9.A19.2A24.A.A$2082.2A1583.4A60.4A89.3A32.3A56.A2.A23.A
30.A$2204.A1460.2A3.A3.2A53.2A3.A3.2A30.2A52.A34.A59.2A23.2A29.A.A$
2119.2A83.A1459.A2.3A4.2A52.A2.3A4.2A29.A2.A202.2A$2052.A66.2A36.2A
45.A1459.2A.A60.2A.A38.A.A$2051.A.A103.2A1508.A63.A39.A107.A$2050.A2.
A1613.2A62.2A61.2A82.A.A$2051.2A1742.A28.A8.2A38.2A3.A.A81.2A$2165.2A
1628.A.A25.A.A6.A2.A16.A19.A2.A3.A58.A23.A.A$2165.2A1508.2A62.2A55.2A
26.2A6.A.A16.A.A19.2A63.3A23.A$3676.A63.A88.A3.A17.2A88.A22.2A$2123.
2A59.3A40.2A1444.3A61.3A88.A.A109.2A14.2A$2081.2A40.2A101.A2.A1443.A
63.A90.2A126.2A$2080.A2.A62.2A34.A5.A11.2A24.A.A1586.A27.2A$2081.2A
63.A.A33.A4.A.A10.A.A24.A1585.3A27.2A6.2A$2085.A61.2A33.A4.A.A11.A
1610.A37.A2.A74.A$2085.A92.2A8.A1623.2A37.A.A73.A.A$2085.A92.2A59.A
1612.A74.A.A$2238.A.A1683.A3.A$2081.3A154.A.A1682.A.A$2239.A1683.A2.A
$2113.2A1809.2A$2079.2A32.A.A$2069.A9.2A33.2A$2069.A1887.2A$2013.2A
54.A1851.2A34.A.A$2012.A2.A1776.2A127.A.A35.A$2013.2A161.3A1613.2A
128.A36.2A$3925.A$2060.3A1861.A.A$3923.A2.A$2050.A1873.2A$2049.A.A$
2050.2A1865.2A$2172.A1744.2A$2087.2A83.A$2020.A66.2A36.2A45.A1634.2A
128.2A$2019.A.A103.2A1680.2A100.A26.A.A$2018.A2.A1886.A.A4.2A19.A$
2019.2A1886.A2.A3.A2.A17.2A$2133.2A1773.2A5.A.A$2133.2A1781.A$3949.2A
$2091.2A59.3A40.2A1752.2A7.2A$2049.2A40.2A101.A2.A1760.A$2048.A2.A62.
2A34.A5.A11.2A24.A.A1759.A.A$2049.2A63.A.A33.A4.A.A10.A.A24.A1760.2A$
2053.A61.2A33.A4.A.A11.A$2053.A92.2A8.A$2053.A92.2A59.A1734.2A$2206.A
.A1732.A.A$2049.3A154.A.A1732.A$2207.A1732.2A28.2A$2081.2A1886.A.A$
2047.2A32.A.A1886.A$2037.A9.2A33.2A$2037.A1881.A$1981.2A54.A1879.3A$
1980.A2.A1932.A54.2A$1981.2A161.3A1769.2A52.A2.A$3901.2A68.2A$2028.3A
1871.A55.2A$3902.A.2A52.A.A$2018.A1884.A2.A53.A$2017.A.A1884.2A54.2A$
2018.2A1899.2A13.2A$2140.A1778.2A13.2A$2055.2A83.A$1988.A66.2A36.2A
45.A$1987.A.A103.2A$1986.A2.A$1987.2A1969.2A$2101.2A1855.2A$2101.2A
1819.2A.A6.2A$3922.2A.3A3.A.A$2059.2A59.3A40.2A1763.A2.A$2017.2A40.2A
101.A2.A1756.2A.3A2.2A26.2A$2016.A2.A62.2A34.A5.A11.2A24.A.A1758.A.A
32.2A$2017.2A63.A.A33.A4.A.A10.A.A24.A1747.2A10.A.A18.2A$2021.A61.2A
33.A4.A.A11.A1773.2A11.A18.A.A$2021.A92.2A8.A1818.A$2021.A92.2A59.A
1766.2A8.2A$2174.A.A1775.A$2017.3A154.A.A1776.3A$2175.A1779.A$2049.2A
$2015.2A32.A.A$2005.A9.2A33.2A$2005.A$1949.2A54.A$1948.A2.A$1949.2A
161.3A2$1996.3A$3950.2A$1986.A1963.A.A$1985.A.A1963.A$1986.2A$2108.A$
2023.2A83.A$1956.A66.2A36.2A45.A$1955.A.A103.2A$1954.A2.A$1955.2A$
2069.2A$2069.2A2$2027.2A59.3A40.2A$1985.2A40.2A101.A2.A$1984.A2.A62.
2A34.A5.A11.2A24.A.A$1985.2A63.A.A33.A4.A.A10.A.A24.A$1989.A61.2A33.A
4.A.A11.A$1989.A92.2A8.A$1989.A92.2A59.A$2142.A.A$1985.3A154.A.A$
2143.A$2017.2A$1983.2A32.A.A$1973.A9.2A33.2A$1973.A$1917.2A54.A$1916.
A2.A$1917.2A161.3A2$1964.3A2$1954.A$1953.A.A$1954.2A$2076.A$1991.2A
83.A$1924.A66.2A36.2A45.A$1923.A.A103.2A$1922.A2.A$1923.2A$2037.2A$
2037.2A2$1995.2A59.3A40.2A$1953.2A40.2A101.A2.A$1952.A2.A62.2A34.A5.A
11.2A24.A.A$1953.2A63.A.A33.A4.A.A10.A.A24.A$1957.A61.2A33.A4.A.A11.A
$1957.A92.2A8.A$1957.A92.2A59.A$2110.A.A$1953.3A154.A.A$2111.A$1985.
2A$1951.2A32.A.A$1941.A9.2A33.2A$1941.A$1885.2A54.A$1884.A2.A$1885.2A
161.3A2$1932.3A2$1922.A$1921.A.A$1922.2A$2044.A$1959.2A83.A$1892.A66.
2A36.2A45.A$1891.A.A103.2A$1890.A2.A$1891.2A$2005.2A$2005.2A2$1963.2A
59.3A40.2A$1921.2A40.2A101.A2.A$1920.A2.A62.2A34.A5.A11.2A24.A.A$
1921.2A63.A.A33.A4.A.A10.A.A24.A$1925.A61.2A33.A4.A.A11.A$1925.A92.2A
8.A$1925.A92.2A59.A$2078.A.A$1921.3A154.A.A$2079.A$1953.2A$1919.2A32.
A.A$1909.A9.2A33.2A$1909.A$1853.2A54.A$1852.A2.A$1853.2A161.3A2$1900.
3A2$1890.A$1889.A.A$1890.2A$2012.A$1927.2A83.A$1860.A66.2A36.2A45.A$
1859.A.A103.2A$1858.A2.A$1859.2A$1973.2A$1973.2A2$1931.2A59.3A40.2A$
1889.2A40.2A101.A2.A$1888.A2.A62.2A34.A5.A11.2A24.A.A$1889.2A63.A.A
33.A4.A.A10.A.A24.A$1893.A61.2A33.A4.A.A11.A$1893.A92.2A8.A$1893.A92.
2A59.A$2046.A.A$1889.3A154.A.A$2047.A$1921.2A$1887.2A32.A.A$1877.A9.
2A33.2A$1877.A$1821.2A54.A$1820.A2.A$1821.2A161.3A2$1868.3A2$1858.A$
1857.A.A$1858.2A$1980.A$1895.2A83.A$1828.A66.2A36.2A45.A$1827.A.A103.
2A$1826.A2.A$1827.2A$1941.2A$1941.2A2$1899.2A59.3A40.2A$1857.2A40.2A
101.A2.A$1856.A2.A62.2A34.A5.A11.2A24.A.A$1857.2A63.A.A33.A4.A.A10.A.
A24.A$1861.A61.2A33.A4.A.A11.A$1861.A92.2A8.A$1861.A92.2A59.A$2014.A.
A$1857.3A154.A.A$2015.A$1889.2A$1855.2A32.A.A$1845.A9.2A33.2A$1845.A$
1789.2A54.A$1788.A2.A$1789.2A161.3A2$1836.3A2$1826.A$1825.A.A$1826.2A
$1948.A$1863.2A83.A$1796.A66.2A36.2A45.A$1795.A.A103.2A$1794.A2.A$
1795.2A$1909.2A$1909.2A2$1867.2A59.3A40.2A$1825.2A40.2A101.A2.A$1824.
A2.A62.2A34.A5.A11.2A24.A.A$1825.2A63.A.A33.A4.A.A10.A.A24.A$1829.A
61.2A33.A4.A.A11.A$1829.A92.2A8.A$1829.A92.2A59.A$1982.A.A$1825.3A
154.A.A$1983.A$1857.2A$1823.2A32.A.A$1813.A9.2A33.2A$1813.A$1757.2A
54.A$1756.A2.A$1757.2A161.3A2$1804.3A2$1794.A$1793.A.A$1794.2A$1916.A
$1831.2A83.A$1764.A66.2A36.2A45.A$1763.A.A103.2A$1762.A2.A$1763.2A$
1877.2A$1877.2A2$1835.2A59.3A40.2A$1793.2A40.2A101.A2.A$1792.A2.A62.
2A34.A5.A11.2A24.A.A$1793.2A63.A.A33.A4.A.A10.A.A24.A$1797.A61.2A33.A
4.A.A11.A$1797.A92.2A8.A$1797.A92.2A59.A$1950.A.A$1793.3A154.A.A$
1951.A$1825.2A$1791.2A32.A.A$1781.A9.2A33.2A$1781.A$1725.2A54.A$1724.
A2.A$1725.2A161.3A2$1772.3A!
Note: the Corderabsorbers along the west edge of this pattern are the new reduced set that matches the reduced 32-Cordership Corderfleet, so this is a slight change from all the NW-corner blueprints that have been posted before.

I'll keep the 34-Cordership solution until someone can reassure me that those two "freeloader" Corderships weren't good for some weird case that I'm forgetting about, that isn't in the test pattern. I included both of the retrograde-glider parity ash changes in the above pattern.

Another Important Note
There's one more detail that will have to be adjusted just slightly for this cleanup salvo to work. Down in the southeastern end of the NW ash trail, there's a singleton block that I've colored in purple above. This block is part of the repetitive ash trail -- but it normally goes along with two blinkers to the southeast of it, and the Cordership responsible for cleaning it up takes care of it in a group with those two blinkers. If the blinkers aren't there, the block doesn't get cleaned up! (And then a little bit later everything fails.)

So the cleanup of the non-periodic ash either needs to _not_ clean up those two blinkers, or it also needs to clean up that one block.

Room to Maneuver
There's a lot of space around the current NW Corderfleet construction zone:

Code: Select all

x = 351, y = 383, rule = LifeSuper
2.209B$.210B139.B$212B137.2B$84B2M126B136.3B$.82BM2BM128B132.4B$2.82B
MBM129B130.5B$4.81BM66B2M62B129.6B$8.B.142B2M64B126.7B$10.209B124.8B$
9.106B2M102B123.9B$8.106BMBM103B121.10B$8.107BM104B120.11B$9.214B116.
12B$10.115B3M96B114.13B$12.212B113.14B$16.B.60B2M146B110.15B$18.59BM
2BM146B108.16B$17.61B2M54BM92B107.17B$16.118BM93B105.18B$16.118BM9B2M
33B2M47B104.19B$17.127B2M32BMBM50B100.20B$18.160B2M52B98.21B$20.212B
97.22B$24.B.120B3M85B94.23B$26.209B92.24B$25.125BM84B91.25B$24.126BM
85B89.26B$24.126BM85B88.27B$25.121B2M91B84.28B$26.119BM2BM91B82.29B$
28.118B2M40B2M50B81.30B$32.B.154B2M52B78.31B$34.209B76.32B$33.210B75.
33B$32.212B73.34B$32.84B2M126B72.35B$33.82BM2BM128B68.36B$34.82BMBM
129B66.37B$36.81BM66B2M62B65.38B$40.B.142B2M64B62.39B$42.209B60.40B$
41.106B2M102B59.41B$40.106BMBM103B57.42B$40.107BM104B56.43B$41.214B
52.44B$42.115B3M96B50.45B$44.212B49.46B$48.B.60B2M143B.2B46.47B$50.
59BM2BM141B.4B44.48B$49.61B2M54BM86B.5B43.49B$48.118BM85B.7B41.50B$
48.118BM9B2M33B2M38B.8B40.51B$49.127B2M32BMBM37B.12B36.52B$50.160B2M
37B.14B34.53B$52.196B.15B33.54B$56.B.120B3M66B.15B.2B30.55B$58.188B.
15B.4B28.56B$57.125BM62B.15B.5B27.57B$56.126BM61B.15B.7B25.58B$56.
126BM60B.15B.8B24.59B$57.121B2M62B.15B.12B20.60B$58.119BM2BM60B.15B.
14B18.61B$60.118B2M60B.15B.15B17.62B$64.B.173B.15B.15B.2B14.63B$66.
172B.15B.15B.4B12.64B$65.172B.15B.15B.5B11.65B$64.172B.15B.15B.7B9.
66B$64.84B2M85B.31B.8B8.67B$65.82BM2BM83B.31B.12B4.68B$66.82BMBM82B.
31B.14B2.69B$68.81BM82B.31B.15B.70B$72.B.157B.31B.15B.71B$74.156B.31B
.15B.72B$73.106B2M48B.31B.15B.73B$72.106BMBM47B.31B.15B.74B$72.107BM
47B.31B.15B.75B$73.153B.47B.76B$74.115B3M33B.47B.77B$76.148B.47B.78B$
80.B.60B2M79B.47B.79B$82.59BM2BM77B.47B.80B$81.61B2M54BM22B.47B.81B$
80.118BM21B.47B.82B$80.118BM9B2H9B.47B.83B$81.127B2H8B.47B.84B$82.
135B.47B.85B$84.132B.47B.86B$88.B.125B.47B.87B$90.124B.47B.88B$89.
124B.47B.89B$88.124B.47B.90B$88.123B.47B.91B$89.121B.47B.92B$90.119B.
47B.93B$92.116B.47B.94B$96.B.109B.47B.95B$98.108B.47B.96B$97.108B.47B
.97B$96.108B.47B.98B$96.84B2M21B.47B.99B$97.82BM2BM19B.47B.100B$98.
82BMBM18B.47B.101B$100.81BM18B.47B.102B$104.B.93B.47B.103B$106.92B.
47B.104B$105.92B.47B.105B$104.92B.47B.106B$104.91B.47B.107B$105.89B.
47B.108B$106.87B.47B.109B$108.84B.47B.110B$112.B.60B2M15B.47B.111B$
114.59BM2BM13B.47B.112B$113.61B2M13B.47B.113B$112.76B.47B.114B$112.
75B.47B.115B$113.73B.47B.116B$114.71B.47B.117B$116.68B.47B.118B$120.B
.61B.47B.119B$122.60B.47B.120B$121.60B.47B.121B$120.60B.47B.47B2.72B$
120.59B.47B.48B2.71B$121.57B.47B.121B$122.55B.47B.121B$124.52B.47B.
121B$128.B.45B.47B.121B$130.44B.47B.121B$129.44B.47B.121B$128.44B.47B
.121B$128.43B.47B.121B$129.41B.47B.121B$130.39B.47B.121B$132.36B.47B.
121B$136.B.29B.47B.121B$138.28B.47B.121B$137.28B.47B.121B$136.28B.47B
.121B$136.27B.47B.121B$137.25B.47B.121B$138.23B.47B.121B$140.20B.47B.
121B$144.B.13B.47B.121B$146.12B.47B.121B$145.12B.47B.121B$144.12B.47B
.121B$144.11B.15B.31B.121B$145.9B.15B.31B.121B$146.7B.15B.31B.121B$
148.4B.15B.31B.121B$152.B.13B.31B.121B$154.12B.31B.121B$153.12B.31B.
121B$152.12B.31B.121B$152.11B.15B.15B.121B$153.9B.15B.15B.121B$154.7B
.15B.15B.121B$156.4B.15B.15B.8B2D111B$160.B.13B.15B.8BD2BD109B$162.
12B.15B.10B2D109B$161.12B.15B.121B$160.12B.15B.121B$160.11B.15B.121B$
161.9B.15B.121B$162.7B.15B.121B$164.4B.15B.121B$168.B.13B.121B$170.
12B.121B$169.12B.26BD94B$168.12B.26BDBD92B$168.11B.26BD2BD91B$169.9B.
28B2D91B$170.7B.121B$172.4B.122B$176.B.120B$178.119B$177.60B2D58B$
176.60BD2BD55B$176.61B2D57B$177.64BD53B$178.63BD54B$180.61BD54B$184.B
.111B$186.51B3D56B$185.106B.3B$184.106B3.2B$184.51B2D53B$185.40BD9B2D
52B$186.39BD62B$169.2I17.37BD61B$168.I2.I20.94B$169.2I21.89B.3B$192.
88B3.2B$192.24B3D60B$192.87B$192.14BD71B$192.13BDBD65B3.B$193.13B2D
63B$193.68B2.4B$194.49B2D16B3.3B$176.I19.47B2D12B$175.I.I19.61B$174.I
2.I19.61B$175.2I20.60B$198.59B$198.58B$198.53B.3B$198.49B2DB3.2B$198.
7B2D40B2D$197.7BD2BD41B$197.8B2D41B$197.12BD33B3.B$197.12BD31B$195.
14BD29B$195.43B$195.10B3D29B$196.41B$197.40B2D$197.6B2D32BD.D$193.I3.
6B2D32B.2D$193.I3.35B.3B$137.2I54.I3.34B3.2B$136.I2.I58.32B$137.2I59.
32B$199.2B.B.25B$184.3I19.22B$206.23B$174.I31.24B$173.I.I30.10B2M12B$
174.2I31.9B2M13B$207.23B$207.4B2D12B.3B$144.I62.4B2D11B3.2B20.2I$143.
I.I60.17B26.2I$142.I2.I59.18B$143.2I61.16B$207.10B3.B36.2I$207.8B42.
2I$207.4B$208.3B4.2D59.3I$173.2I40.2D$172.I2.I62.2I34.I5.I$173.2I63.I
.I33.I4.I.I$177.I61.2I33.I4.I.I$177.I92.2I8.I$177.I92.2I2$173.3I2$
205.2I$171.2I32.I.I$161.I9.2I33.2I$161.I$105.2A54.I$104.A2.A$105.2A
161.3I2$152.3I2$142.I$141.I.I$142.2I$264.I$179.2I83.I$112.A66.2I36.2I
45.I$111.A.A103.2I$110.A2.A$111.2A$225.2I$225.2I2$183.2I59.3I40.2I$
141.2A40.2I101.I2.I$140.A2.A62.2I34.I5.I11.2I24.I.I$141.2A63.I.I33.I
4.I.I10.I.I24.I$145.A61.2I33.I4.I.I11.I$144.BAB91.2I8.I$145.A92.2I59.
I$142.B155.I.I$141.3A154.I.I$142.B156.I$173.2I$139.2A32.I.I$129.A9.2A
33.2I$128.BAB$73.2A54.A$72.A2.A$73.2A161.3I$121.B$120.3A$121.B$110.A$
109.A.A$110.2A$232.I$147.2A83.I$80.A66.2A36.2A45.I$79.A.A103.2A$78.A
2.A$79.2A$193.2A$193.2A$213.B$151.2A59.3A40.2I$109.2A40.2A60.B40.I2.I
$108.A2.A62.2A34.A5.A11.2I24.I.I$109.2A63.A.A32.BAB3.A.A10.I.I24.I$
113.A61.2A33.A4.A.A11.I$112.BAB91.2A8.A$113.A92.2A59.I$110.B155.I.I$
109.3A154.I.I$110.B156.I$141.2A$107.2A32.A.A$97.A9.2A33.2A$96.BAB$41.
2A54.A$40.A2.A161.B$41.2A161.3A$89.B115.B$88.3A$89.B$78.A$77.A.A$78.
2A$200.A$115.2A82.BAB$48.A66.2A36.2A45.A$47.A.A103.2A$46.A2.A$47.2A$
161.2A$161.2A$181.B$119.2A59.3A40.2A$77.2A40.2A60.B40.A2.A$76.A2.A62.
2A34.A5.A11.2A24.A.A$77.2A63.A.A32.BAB3.A.A10.A.A24.A$81.A61.2A33.A4.
A.A11.A$80.BAB91.2A8.A$81.A92.2A59.A$78.B155.A.A$77.3A154.A.A$78.B
156.A$109.2A$75.2A32.A.A$65.A9.2A33.2A$64.BAB$9.2A54.A$8.A2.A161.B$9.
2A161.3A$57.B115.B$56.3A$57.B$46.A$45.A.A$46.2A$168.A$83.2A82.BAB$16.
A66.2A36.2A45.A$15.A.A103.2A$14.A2.A$15.2A$129.2A$129.2A$149.B$87.2A
59.3A40.2A$45.2A40.2A60.B40.A2.A$44.A2.A62.2A34.A5.A11.2A24.A.A$45.2A
63.A.A32.BAB3.A.A10.A.A24.A$49.A61.2A33.A4.A.A11.A$48.BAB91.2A8.A$49.
A92.2A59.A$46.B155.A.A$45.3A154.A.A$46.B156.A$77.2A$43.2A32.A.A$33.A
9.2A33.2A$33.A$33.A!
Marked in state-19 cyan above are all the still lifes that were removed by this commit, that didn't really have to be. There may be some repetitive ash knocked off of the NW ash trail that could have been left in place also -- I haven't gone back to check that.

The objects in state-4 red _do_ have to be cleaned up before the NW Corderfleet is created -- IF the Corderfleet is produced in the position shown. It could be moved up to three 8-diagonal-cell steps northwestward, and I think everything would still work. That would move the blue reaction envelope northwest by that amount, which would further reduce the number of objects in the SW repetitve ash trail that actually need to be cleaned up.

User avatar
Pavgran
Posts: 220
Joined: June 12th, 2019, 12:14 pm

Re: RCT remaining tasks

Post by Pavgran » November 7th, 2022, 8:29 am

(1)-(25) DONE, except (14) and (20)

Here's current semilator pattern:
rct16.mc.gz
(762.25 KiB) Downloaded 51 times
At generation 6,748,431,099,568 the pattern above consists of nothing but DBCA (its destruction is not designed yet), single block (it is initial block for ATBC construction) and a MWSS (it results from ECCA self-destruction and is aimed for ATBC seed).
Like this:

Code: Select all

x = 1819, y = 2849, rule = B3/S23
583b2o$583b2o$569bo13b2o$569b3o12bo$572bo10bobo$571b2o9b2obo2$576bo$
575bobo5b2o$575bo2bo4b2o$576b2o10$547bobo$550bo82bo$546bo4bo2b2o$546b
2obo2bob2o75b3obo$550b2o69bo8bob2o$621b3o6b2obo$624bo3bob3o$623b2o$
555bo74bo$554bobo69bo$553bo2bo68bobo$554b2o65b2o2b2o$621b2o2$550b2o$
549bobo$549bo$548b2o5$598b2o$591b2o5b2o$591b2o3$593b2o27b2o$593b2o27b
2o$587b2o$587b2o$628b2o$628b2o$624b2o$624b2o$550b2o$549bo2bo$536bo15bo
$536b3o13bo76b2o$539bo9b2obo76b2o$538b2o9b2o107b2o5b2o$658b2o5bo$543bo
119bobo$542bobo5b2o111b2o$542bo2bo4b2o107b2o$543b2o114bobo$588b2o70bo$
588b2o73b3o$662bo$662bo3bo$662bo2bobo$629bo34bobo2bo$628bobo34bo3bo$
628bobo38bo$623b3o3bo36b3o2$621bo5bo5b2o$588b2o31bo5bo4bo2bo$588bobo5b
2o23bo5bo5b2o$589bo6b2o$623b3o4$618b2o$618b2o$594bo$593bobo$593bobo24b
2o$594bo18b2o5b2o$613b2o$589b2o7b2o$588bo2bo5bo2bo$589b2o7b2o9b3o2$
594bo$593bobo$593bobo11b2o$594bo11bo2bo$607b2o39bo$647bobo$648bo2$588b
2o$588b2o$596bo$596bo$596bo2$592b3o3b3o2$596bo$596bo$596bo$533b2o125b
2o$533bo124bob2o$531bobo105b2o7bo8bo$516b2o13b2o79b2o25b2o7b3o9bo$516b
2o94b2o37bo4b2obo$602bo47b2o4b2o$601bobo$496b2o102bo2bo49bo$496b2o97b
3o3b2o49bobo$652b2o$599bo$495bo103bo17bo$494bobo102bo16bobo$495bo120bo
bo$492b3o122bo$492bo4$535b2o$535b2o7$532b2o$532bo$533b3o$535bo6$503b2o
$503b2o2$480b2o$480b2o$502b2o$502bo186b2o5b2o$460b2o38bobo186b2o5bo$
460b2o38b2o192bobo$694b2o$690b2o$459bo230bobo$458bobo230bo3bo$459bo
234b2o$456b3o234bob2o$456bo235b3o2bo$694bobobo$695bobobo$696bo2b3o$
499b2o196b2obo$499b2o197b2o$698bo6$496b2o$496bo$497b3o$499bo6$467b2o$
467b2o2$444b2o$444b2o$466b2o$466bo$424b2o38bobo$424b2o38b2o3$423bo$
422bobo$423bo$420b3o$420bo4$463b2o$463b2o5$744b2o2$460b2o281bo3bo$460b
o281bo4bo$461b3o277bobobo$463bo276bobobo$738bo4bo$738bo3bo2$737bo2b2o$
736bobo$431b2o303b2o$431b2o307b2o$740bobo$408b2o325b2o5bo$408b2o325b2o
5b2o$430b2o$430bo$388b2o38bobo$388b2o38b2o3$387bo$386bobo$387bo$384b3o
$384bo124bo$507b3o$506bo$505bobo$427b2o76bobo$427b2o77bo42bo$547b3o$
546bo$546b2o2$490b2o99bo$490b2o97b3o$424b2o162bo$424bo100b2o60bobo$
425b3o96bobo60bobo$427bo82b2o12bo63bo$510bobo10b2o$512bo$503b2o7b2o$
503b2o23b2o$527bobo42b2o$395b2o96bob2o30bo44b2o$395b2o94b3ob2o29b2o$
490bo$372b2o117b3ob2o$372b2o119bobo96b2o158b2o$394b2o97bobo96bobo155bo
b2o$394bo99bo99bo145bo8bo$352b2o38bobo142b2o46b2o7b2o144b3o9bo$352b2o
38b2o143b2o46b2o156bo4b2obo$545b2o195b2o4b2o$545bo29bob2o$351bo194b3o
24b3ob2o166bo$350bobo150b2o43bo23bo171bobo$351bo151b2o68b3ob2o161b2o2b
2o$348b3o196bo27bobo162b2o$348bo197bobo26bobo$546bobo27bo$490bo54b2ob
3o$489bobo59bo$391b2o96bobo53b2ob3o$391b2o94b3ob2o52b2obo$486bo$487b3o
b2o44b2o46b2o$489bob2o35b2o7b2o46b2o$529bo$529bobo$530b2o$388b2o182bo$
388bo182bobo$389b3o96b2o81bobo$391bo95bobo60b2o17b3ob2o$487bo62b2o16bo
$486b2o7bo73b3ob2o$494bobo74bob2o$495bo$502b2o$359b2o141b2o31bo$359b2o
173bobo$534bobo$336b2o197bo34b2o$336b2o194b3o34bobo$358b2o172bo36bo$
358bo209b2o7bo$316b2o38bobo217bobo$316b2o38b2o219bo$554b2o28b2o$552bo
2bo28b2o195b2o5b2o$315bo253bo211b2o5bo$314bobo235bo2bo11b3o216bobo$
315bo237bo2bo9bo49b2o168b2o$312b3o239bobo9b2o46bo2bo164b2o$312bo29b2o
211bo75bo150bobo$341bobo218bo51bo2bo11b3o151bo3bo$342bo211b2o5bobo51bo
2bo9bo157b2o$554b2o4bo2bo52bobo9b2o155bob2o$561b2o54bo166b3o2bo$624bo
161bobobo$616b2o5bobo161bobobo$616b2o4bo2bo162bo2b3o$623b2o164b2obo$
790b2o$790bo$588bo$352b2o233bobo$352bo233bo3bo$353b3o229bo3bo$355bo
228bo3bo$583bo3bo$517b2o65bobo118bo$517bo15bo9bo41bo117b3o$515bobo15b
3o5b3o37bo120bo$515b2o19bo3bo39bobo119b2o$323b2o210b2o3b2o38b2o$323b2o
259b2o161bo$584bobo158b3o163bo$300b2o192b2o83b2o5bo157bo164b3o$300b2o
192b2o83b2o5b2o93b2o60bobo162bo$322b2o356bobo60bobo162b2o$322bo357bo
63bo$280b2o38bobo356b2o$280b2o38b2o204b2o$526b2o$538b2o144b2o$279bo
257bo2bo142bobo42b2o$278bobo257b2o4b2o137bo44b2o$279bo264bobo135b2o$
276b3o267bo$276bo29b2o238b2o$305bobo228b2o210b2o$306bo199b2o29bo210bob
o$506bo27b3o138b2o73bo$507b3o11b2o11bo158b2o46b2o7b2o$509bo11b2o2b2o
147bo3bo14b2o46b2o127b2o$525bobo145bo4bo22b2o163b2o2b2o2b2o$526bo2b2o
141bobobo24bo29bob2o131bobo2bo2b2o$671bobobo26b3o24b3ob2o132b3o$523b2o
2bo3bo137bo4bo29bo23bo139b2o$524bo2bo4bo136bo3bo55b3ob2o$521b3o5bobobo
169bo27bobo$316b2o203bo8bobobo133bo2b2o29bobo26bobo132bo$316bo214bo4bo
130bobo32bobo27bo132bobo$317b3o212bo3bo130b2o32b2ob3o135b2o21bo2bo$
319bo351b2o34bo134b2o22b2o$533b2o136bobo27b2ob3o$666b2o5bo27b2obo$666b
2o5b2o195b2o$693b2o46b2o127bobo$684b2o7b2o46b2o129bo$287b2o312bo83bo
186b2o$287b2o310b3o83bobo$598bo87b2o$264b2o332b2o128bo$264b2o461bobo
57b2o$286b2o439bobo57b2obo$286bo419b2o17b3ob2o60bo$244b2o38bobo419b2o
16bo63bo$244b2o38b2o141bo149b2o146b3ob2o58bob2o$426bobo147bobo148bob2o
60b2o$425bo3bo146bo$243bo182bo3bo144b2o218bo$242bobo182bo3bo259bo102bo
bo$243bo184bo3bo257bobo102b2o$240b3o186bobo96b2o50b2o108bobo98b2o85b2o
$240bo29b2o158bo96bo2bo4b2o42bobo109bo34b2o62bobo84bo2bo4b2o$269bobo
162bo92bobo4bo2bo41bo108b3o34bobo62bo5b2o79bobo3bo2bo$270bo162bobo92bo
5bo43b2o108bo36bo63b2o5b2o80bo$434b2o98bo189b2o7bo149bo2bo$430b2o91b2o
9bob2o194bobo138b2o9bo2bo$429bobo92bo11b2o195bo140bo10bobo$429bo5b2o
84b3o186b2o28b2o129b3o12bo$428b2o5b2o84bo186bo2bo28b2o129bo$535b2o52b
2o134bo159b2o$535b2o52b2o117bo2bo11b3o159b2o36b2o$597b2o110bo2bo9bo
200b3o17b2o$597bo112bobo9b2o193b2o2bo2bobo16b2o$280b2o316b3o110bo205b
2o2b2o2b2o$280bo319bo117bo202b2o$281b3o426b2o5bobo$283bo315bo110b2o4bo
2bo$598bobo116b2o$454b2o142bobo316bo$450b2o2b2o141b2ob3o313bobo$449bob
o75bo75bo312bo2bo$446bo3bo76b3o67b2ob3o314b2o9b2o$251b2o193b2o82bo66b
2obo327b2o$251b2o192b2obo3b2o75b2o$444bo2b3o2bo91b2o43b2o153bo176b2o$
228b2o213bobobo5b3o88bo35b2o7b2o152bobo175bobo$228b2o212bobobo8bo86bob
o36bo160bo3bo176bo$250b2o188b3o2bo85bo10b2o37bobo157bo3bo177b2o$250bo
190bob2o85bobo49b2o156bo3bo$208b2o38bobo191b2o86bobo206bo3bo$208b2o38b
2o193bo81b2o4bo141b2o65bobo$524bobo15b2o129bo15bo9bo41bo$513b3o8bo17bo
bo57b2o67bobo15b3o5b3o37bo210b2o$207bo304bo10b2o19bo57b2o67b2o19bo3bo
39bobo209bo$206bobo303bo3bo27b2o145b2o3b2o38b2o211b3o$207bo304bo2bobo
222b2o209bo$204b3o307bobo2bo220bobo$204bo29b2o279bo3bo130b2o83b2o5bo$
233bobo283bo67bo62b2o83b2o5b2o176b2o5b2o$234bo281b3o67bobo332bo5b2o$
521bo11b2o51bobo332bobo$520bobo10b2o52bo334b2o$521b2o61b3o95b2o242b2o$
517b2o65bo97b2o241bobo10b2o$516bobo175b2o230bo11b2o$516bo5b2o169bo2bo
224b3o$515b2o5b2o91bo78b2o4b2o222bo$614bobo83bobo217bo3bo$613bo3bo84bo
216bobo2bo$244b2o300bo67bo3bo83b2o213bo2bobo$244bo299b3o68bo3bo72b2o
134b2o87bo3bo27b2o$245b3o295bo72bo3bo41b2o29bo109bo9bo15bo87bo10b2o19b
o$247bo295b2o72bobo42bo27b3o110b3o5b3o15bobo86b3o8bo17bobo$618bo44b3o
11b2o11bo115bo3bo19b2o97bobo15b2o$622bo42bo11b2o2b2o122b2o3b2o118b2o4b
o$621bobo57bobo251bobo$622b2o58bo2b2o248bobo$618b2o231b2o83bo10b2o$
215b2o305b2o93bobo59b2o2bo3bo163b2o94bobo$215b2o306bo93bo5b2o55bo2bo4b
o260bo$191bo331bobo90b2o5b2o52b3o5bobobo259b2o$187b2o2b2ob3o327b2o151b
o8bobobo243b2o$187b2o4b4o490bo4bo126b2o114bo$191b2o495bo3bo126b2o111b
3o$146b2o659b2o123bo$139b2o5b2o541b2o115bo2bo$79b2o58b2o660b2o4b2o$79b
2o115bo603bobo$65bo13b2o114bobo602bo$65b3o12bo60b2o27b2o22bo2bo601b2o$
68bo10bobo59b2o27b2o23b2o445b2o165b2o$67b2o9b2obo53b2o501b2o2b2o165bo
29b2o$135b2o401b2o97bobo74bo95b3o27bo$72bo103b2o13b2o345b2o94bo3bo74b
2o97bo11b2o11b3o$71bobo5b2o95b2o12bobo441b2o76bob2o104b2o2b2o11bo$71bo
2bo4b2o91b2o16bo442b2obo3b2o69b3o2bo102bobo$72b2o98b2o15b2o441bo2b3o2b
o72bobobo102bo$631bobobo5b3o70bobobo$630bobobo8bo71bo2b3o94b3o4b2o$
628b3o2bo82b2obo95b3o4bo$177b2o450bob2o84b2o96b3o5b3o$134b2o41b2o451b
2o85bo3bo90b3o10bo$135bo495bo88bobo89b3o$135bobo583b2o89b3o$136b2o546b
2o31b2o$683bo2bo4b2o23bobo55b2o$683bobo4bo2bo22bo5b2o50bo238b2o$684bo
5bo24b2o5b2o48bobo208bo2b2o25b2o$690bo81b2o208bo3b2o2b2o$216b2o461b2o
9bob2o288bo7b2o$209b2o4bo2bo461bo11b2o289b4o$209bo2bo3bobo458b3o88b2o$
217bo459bo89bo2bo$171b2o36bo2bo478b2o74bobo$171bo36bo2bo9b2o327b2o139b
2o75bo213bo$130b2o40b3o33bobo10bo327bo2bo4b2o422bobo$130b2o42bo34bo12b
3o324bobo4bo2bo421bo2bo13b2o$224bo325bo5bo212bobo210b2o14b2o$209b2o
345bo215bo$209b2o334b2o9bob2o208bo4bo2b2o$135b2o409bo11b2o208b2obo2bob
2o208b2o$135b2o406b3o226b2o212bobo$131b2o410bo444bo$131b2o424b2o429b2o
$172b2o383b2o$172b2o$137b2o27b2o$137b2o27b2o850b2o$1018bo$749b2o268b3o
$168b2o572b2o4bo2bo269bo$161b2o5b2o572b2o5bobo$142b2o17b2o587bo$143bo$
140b3o598bob2o9b2o$140bo600bobo10bo247b2o$742bo12b3o245bo23b2o$742b2o
13bo242b3o24bo$742b2o256bo7b2o15bobo$742b2o264b2o15b2o9$bobo$4bo$o4bo
2b2o$2obo2bob2o997b2o$4b2o1000bobo$1006bo$1005b2o2$9bo$8bobo$7bo2bo$8b
2o$1023b2o$1023bo$4b2o1018b3o$3bobo1020bo$3bo$2b2o4$1015b2o$1006b2o7b
2o$1007bo$921b2o84bobo$921b2o2b2o81b2o$925bobo$926bo2$923b2o4b2o$924bo
4b2obo$921b3o9bo$921bo8bo$931bob2o$933b2o151b2o$692bo393b2o$102b4o584b
3o346b2o4b2o$101bo7b2o578bo348bo2bo3b2o$101bo3b2o2b2o578b2o348b2o$102b
o2b2o$1013bo$1012bobo$1012bobo$110bo557b2o343bo$109bobo555bobo401b2o$
108bo2bo555bo376b2o25b2o$109b2o59bo495b2o353b2o21b2o$170bo841b2o7b2o$
170bo231b2o5b2o601b2o33b2o$105b2o296bo5b2o260b2o374b2o$104bobo296bobo
264bobo384b2o$104bo299b2o264bo386bo$103b2o303b2o259b2o384bobo$407bobo
645b2o$408bo$404bo686b2o$403b3o685bo$402bob3o685b3o$401bo3bo274b2o412b
o$400bo3bo275b2o$399b3obo284b2o$400b3o285bo$401bo287b3o359b2o22b2o$
691bo359bobo20bobo$1053bo20bo25b2o$690bo362b2o18b2o25bo$689bobo389b2o
15bobo$420b2o267bobo389b2o15b2o$420b2o2b2o262b2ob3o$424bobo267bo$425bo
262b2ob3o$688b2obo344b2o$422b2o4b2o606b2o$423bo4b2obo248b2o362b2o$420b
3o9bo238b2o7b2o362bo$420bo8bo242bo372b3o$430bob2o238bobo372bo$432b2o
239b2o$1046bo$1045bobo32b2o$1045bobo31bobo$693b2o349b2ob3o29bo$693b2o
355bo27b2o$1044b2ob3o$1044b2obo2$1036b2o63b2o5b2o$678bo348b2o7b2o63b2o
5bo$677bobo348bo77bobo$677bobo348bobo75b2o$678bo350b2o71b2o$675b3o412b
2o10bobo$675bo414b2o11bo2$1049b2o55b3o$1049b2o55b3o36b2o$1106b3o36b2o$
1109b3o$1079b2o28b3o$1080bo19b2o7b3o$1034bo45bobo17bo$1033bobo45b2o15b
obo$1033bobo57bo4b2o$1034bo57bobo$1031b3o58bobo$1031bo49b2o10bo36b2o$
1080bobo47b2o$1080bo$1079b2o$710bo383b2o$708b3o383bo$707bo387b3o$707b
2o388bo4$1150b2o$686b2o462bo$685bobo463b3o$685bo467bo$684b2o3$574bo
114b2o$574b3o111bobo443b2o$577bo110bo446bo23b2o$576bobo108b2o443b3o24b
o$576bobo553bo24bobo$577bo579b2o4$698b2o$592b2o62bo41b2o442b2o$592b2o
62b3o47b2o434b2o7b2o$659bo46bo444bo$658bobo46b3o439bobo$658bobo48bo
439b2o$572b2o85bo472b2o$571bobo134bo423b2o$571bo135bobo412b2o$570b2o7b
2o126bobo413bo$579b2o125b2ob3o411bobo$674b2o36bo411b2o$587b2obo83b2o
30b2ob3o$587b2ob3o113b2obo$593bo$587b2ob3o105b2o$588bobo63b2o33b2o7b2o
$588bobo62bobo34bo$589bo63bo36bobo$652b2o7b2o28b2o$590bo70b2o465b2o$
588b3o536bobo$587bo81b2obo454bo$587b2o80b2ob3o36b2o413b2o$579b2o94bo
35b2o$579b2o88b2ob3o$670bobo$670bobo$671bo$696bo446b2o$672bo22bobo445b
2o$568b2o100b3o22bobo437b2o$569bo99bo26bo439bo$569bobo97b2o22b3o437b3o
$570b2o89b2o30bo439bo$661b2o$1134bo$565b2o566bobo$566bo566bobo$566bobo
562b3ob2o$567b2o561bo$650b2o479b3ob2o$651bo481bob2o$651bobo$652b2o489b
2o$588b2o553b2o7b2o72b2o$588bo563bo73b2o$589b3o55b2o501bobo$591bo56bo
501b2o$648bobo$649b2o2$1130b2o$1130b2o2$670b2o539b2o$670bo540b2o$671b
3o$673bo472bo$1145bobo$1145bobo$1146bo$1147b3o$502bo646bo$502b3o$505bo
$504bobo724b2o$504bobo724bo$505bo726b3o$1234bo$1134b2o11bo$1134b2o10bo
bo$1146bobo31b2o21b2o5b2o$520b2o62bo560b2ob3o2b2o25bo23bo5b2o$520b2o
62b3o564bo2bo23bobo23bobo$587bo557b2ob3o3bobo21b2o25b2o$586bobo556b2ob
o6b2o52b2o$586bobo619bobo10b2o$500b2o85bo617bo3bo11b2o$499bobo703b2o$
499bo704b2obo$498b2o7b2o694bo2b3o$507b2o693bobobo$602b2o538b2o13b2o42b
obobo$515b2obo83b2o538b2o13b2o40b3o2bo27b2o$515b2ob3o606b2o71bob2o7b2o
19bo$521bo604bo2bo71b2o9bo17bobo$515b2ob3o604bob2o73bo9bobo15b2o$516bo
bo63b2o541bo87b2o4bo$516bobo62bobo540b2o92bobo$517bo63bo557b2o77bobo$
580b2o7b2o548bo79bo10b2o$518bo70b2o549b3o23b2o62bobo$516b3o623bo24bo
64bo$515bo81b2obo563b3o4b2o59b2o$515b2o80b2ob3o561bo6b2o44b2o$507b2o
94bo614bo$507b2o88b2ob3o612b3o$598bobo614bo$598bobo$599bo2$600bo$496b
2o100b3o$497bo99bo$497bobo97b2o$498b2o89b2o$589b2o$893bo$493b2o398b3o$
494bo401bo$494bobo398bobo361b2o$495b2o398bobo357b2o2b2o2b2o$578b2o316b
o358bobo2bo2b2o$579bo676b3o$579bobo675b2o$580b2o$516b2o$516bo394b2o
342bo$517b3o55b2o334b2o341bobo$519bo56bo677bo2bo$576bobo676b2o$577b2o$
891b2o$890bobo366b2o$890bo368bobo$889b2o7b2o361bo$598b2o298b2o361b2o$
598bo$599b3o304b2obo$601bo304b2ob3o$912bo$906b2ob3o$907bobo$907bobo$
908bo2$909bo$907b3o$906bo$906b2o$898b2o$898b2o6$887b2o$888bo$888bobo$
889b2o4$887b2o$887b2o6$907b2o$907bo$908b3o$910bo32$737bo$737b3o$740bo$
739bobo$739bobo$740bo5$755b2o$755b2o4$735b2o$734bobo$734bo$733b2o7b2o$
742b2o2$750b2obo$750b2ob3o$756bo$750b2ob3o$751bobo$751bobo$752bo2$753b
o$751b3o$750bo$750b2o$742b2o$742b2o6$731b2o$732bo$732bobo$733b2o4$731b
2o$731b2o6$751b2o$751bo$752b3o$754bo21$887bo$887b3o$890bo$889bobo$889b
obo$890bo5$905b2o$905b2o4$885b2o$884bobo$884bo$883b2o7b2o$892b2o2$900b
2obo$900b2ob3o$906bo$900b2ob3o$901bobo$901bobo$902bo2$903bo$901b3o$
686b2o212bo$686b2o2b2o208b2o$690bobo199b2o$691bo2b2o196b2o2$688b2o2bo
3bo$689bo2bo4bo$686b3o5bobobo$686bo8bobobo$696bo4bo179b2o$697bo3bo180b
o$882bobo$698b2o183b2o3$878b2o$879bo$879bobo$880b2o4$1046b2o$901b2o
142bo2bo4b2o$901bo143bobo5b2o$902b3o141bo$904bo$1041b2o9b2o$1042bo9b2o
bo$1039b3o13bo$1039bo15bo$1052bo2bo$1053b2o46$836b2o$836b2o2b2o$840bob
o$841bo2b2o2$838b2o2bo3bo$839bo2bo4bo$836b3o5bobobo$836bo8bobobo$846bo
4bo$847bo3bo2$848b2o1673$201b2o$201b2o134$1816bo$1814bo3bo$1813bo$
1813bo4bo$1813b5o!
There are no more debris at any distance far away. You can select entire pattern in Golly and copy it without going outside 1e9 boundary. Go try it!
There's some stuttering during construction and during recipe travelling through BSRD. Step size 2^27 (or 8^9) works fine in those cases. Waiting between aeons where nothing happens can be done with 2^32 step size, and watching construction details can be done in 2^12-2^18 step range.

AlbertArmStain
Posts: 1233
Joined: January 28th, 2022, 7:18 pm
Location: Planet Z

Re: RCT remaining tasks

Post by AlbertArmStain » November 7th, 2022, 11:55 am

Pavgran wrote:
November 7th, 2022, 8:29 am
(1)-(25) DONE, except (14) and (20)

Here's current semilator pattern:
rct16.mc.gz
At generation 6,748,431,099,568 the pattern above consists of nothing but DBCA (its destruction is not designed yet), single block (it is initial block for ATBC construction) and a MWSS (it results from ECCA self-destruction and is aimed for ATBC seed).
Like this:

Code: Select all

x = 1819, y = 2849, rule = B3/S23
583b2o$583b2o$569bo13b2o$569b3o12bo$572bo10bobo$571b2o9b2obo2$576bo$
575bobo5b2o$575bo2bo4b2o$576b2o10$547bobo$550bo82bo$546bo4bo2b2o$546b
2obo2bob2o75b3obo$550b2o69bo8bob2o$621b3o6b2obo$624bo3bob3o$623b2o$
555bo74bo$554bobo69bo$553bo2bo68bobo$554b2o65b2o2b2o$621b2o2$550b2o$
549bobo$549bo$548b2o5$598b2o$591b2o5b2o$591b2o3$593b2o27b2o$593b2o27b
2o$587b2o$587b2o$628b2o$628b2o$624b2o$624b2o$550b2o$549bo2bo$536bo15bo
$536b3o13bo76b2o$539bo9b2obo76b2o$538b2o9b2o107b2o5b2o$658b2o5bo$543bo
119bobo$542bobo5b2o111b2o$542bo2bo4b2o107b2o$543b2o114bobo$588b2o70bo$
588b2o73b3o$662bo$662bo3bo$662bo2bobo$629bo34bobo2bo$628bobo34bo3bo$
628bobo38bo$623b3o3bo36b3o2$621bo5bo5b2o$588b2o31bo5bo4bo2bo$588bobo5b
2o23bo5bo5b2o$589bo6b2o$623b3o4$618b2o$618b2o$594bo$593bobo$593bobo24b
2o$594bo18b2o5b2o$613b2o$589b2o7b2o$588bo2bo5bo2bo$589b2o7b2o9b3o2$
594bo$593bobo$593bobo11b2o$594bo11bo2bo$607b2o39bo$647bobo$648bo2$588b
2o$588b2o$596bo$596bo$596bo2$592b3o3b3o2$596bo$596bo$596bo$533b2o125b
2o$533bo124bob2o$531bobo105b2o7bo8bo$516b2o13b2o79b2o25b2o7b3o9bo$516b
2o94b2o37bo4b2obo$602bo47b2o4b2o$601bobo$496b2o102bo2bo49bo$496b2o97b
3o3b2o49bobo$652b2o$599bo$495bo103bo17bo$494bobo102bo16bobo$495bo120bo
bo$492b3o122bo$492bo4$535b2o$535b2o7$532b2o$532bo$533b3o$535bo6$503b2o
$503b2o2$480b2o$480b2o$502b2o$502bo186b2o5b2o$460b2o38bobo186b2o5bo$
460b2o38b2o192bobo$694b2o$690b2o$459bo230bobo$458bobo230bo3bo$459bo
234b2o$456b3o234bob2o$456bo235b3o2bo$694bobobo$695bobobo$696bo2b3o$
499b2o196b2obo$499b2o197b2o$698bo6$496b2o$496bo$497b3o$499bo6$467b2o$
467b2o2$444b2o$444b2o$466b2o$466bo$424b2o38bobo$424b2o38b2o3$423bo$
422bobo$423bo$420b3o$420bo4$463b2o$463b2o5$744b2o2$460b2o281bo3bo$460b
o281bo4bo$461b3o277bobobo$463bo276bobobo$738bo4bo$738bo3bo2$737bo2b2o$
736bobo$431b2o303b2o$431b2o307b2o$740bobo$408b2o325b2o5bo$408b2o325b2o
5b2o$430b2o$430bo$388b2o38bobo$388b2o38b2o3$387bo$386bobo$387bo$384b3o
$384bo124bo$507b3o$506bo$505bobo$427b2o76bobo$427b2o77bo42bo$547b3o$
546bo$546b2o2$490b2o99bo$490b2o97b3o$424b2o162bo$424bo100b2o60bobo$
425b3o96bobo60bobo$427bo82b2o12bo63bo$510bobo10b2o$512bo$503b2o7b2o$
503b2o23b2o$527bobo42b2o$395b2o96bob2o30bo44b2o$395b2o94b3ob2o29b2o$
490bo$372b2o117b3ob2o$372b2o119bobo96b2o158b2o$394b2o97bobo96bobo155bo
b2o$394bo99bo99bo145bo8bo$352b2o38bobo142b2o46b2o7b2o144b3o9bo$352b2o
38b2o143b2o46b2o156bo4b2obo$545b2o195b2o4b2o$545bo29bob2o$351bo194b3o
24b3ob2o166bo$350bobo150b2o43bo23bo171bobo$351bo151b2o68b3ob2o161b2o2b
2o$348b3o196bo27bobo162b2o$348bo197bobo26bobo$546bobo27bo$490bo54b2ob
3o$489bobo59bo$391b2o96bobo53b2ob3o$391b2o94b3ob2o52b2obo$486bo$487b3o
b2o44b2o46b2o$489bob2o35b2o7b2o46b2o$529bo$529bobo$530b2o$388b2o182bo$
388bo182bobo$389b3o96b2o81bobo$391bo95bobo60b2o17b3ob2o$487bo62b2o16bo
$486b2o7bo73b3ob2o$494bobo74bob2o$495bo$502b2o$359b2o141b2o31bo$359b2o
173bobo$534bobo$336b2o197bo34b2o$336b2o194b3o34bobo$358b2o172bo36bo$
358bo209b2o7bo$316b2o38bobo217bobo$316b2o38b2o219bo$554b2o28b2o$552bo
2bo28b2o195b2o5b2o$315bo253bo211b2o5bo$314bobo235bo2bo11b3o216bobo$
315bo237bo2bo9bo49b2o168b2o$312b3o239bobo9b2o46bo2bo164b2o$312bo29b2o
211bo75bo150bobo$341bobo218bo51bo2bo11b3o151bo3bo$342bo211b2o5bobo51bo
2bo9bo157b2o$554b2o4bo2bo52bobo9b2o155bob2o$561b2o54bo166b3o2bo$624bo
161bobobo$616b2o5bobo161bobobo$616b2o4bo2bo162bo2b3o$623b2o164b2obo$
790b2o$790bo$588bo$352b2o233bobo$352bo233bo3bo$353b3o229bo3bo$355bo
228bo3bo$583bo3bo$517b2o65bobo118bo$517bo15bo9bo41bo117b3o$515bobo15b
3o5b3o37bo120bo$515b2o19bo3bo39bobo119b2o$323b2o210b2o3b2o38b2o$323b2o
259b2o161bo$584bobo158b3o163bo$300b2o192b2o83b2o5bo157bo164b3o$300b2o
192b2o83b2o5b2o93b2o60bobo162bo$322b2o356bobo60bobo162b2o$322bo357bo
63bo$280b2o38bobo356b2o$280b2o38b2o204b2o$526b2o$538b2o144b2o$279bo
257bo2bo142bobo42b2o$278bobo257b2o4b2o137bo44b2o$279bo264bobo135b2o$
276b3o267bo$276bo29b2o238b2o$305bobo228b2o210b2o$306bo199b2o29bo210bob
o$506bo27b3o138b2o73bo$507b3o11b2o11bo158b2o46b2o7b2o$509bo11b2o2b2o
147bo3bo14b2o46b2o127b2o$525bobo145bo4bo22b2o163b2o2b2o2b2o$526bo2b2o
141bobobo24bo29bob2o131bobo2bo2b2o$671bobobo26b3o24b3ob2o132b3o$523b2o
2bo3bo137bo4bo29bo23bo139b2o$524bo2bo4bo136bo3bo55b3ob2o$521b3o5bobobo
169bo27bobo$316b2o203bo8bobobo133bo2b2o29bobo26bobo132bo$316bo214bo4bo
130bobo32bobo27bo132bobo$317b3o212bo3bo130b2o32b2ob3o135b2o21bo2bo$
319bo351b2o34bo134b2o22b2o$533b2o136bobo27b2ob3o$666b2o5bo27b2obo$666b
2o5b2o195b2o$693b2o46b2o127bobo$684b2o7b2o46b2o129bo$287b2o312bo83bo
186b2o$287b2o310b3o83bobo$598bo87b2o$264b2o332b2o128bo$264b2o461bobo
57b2o$286b2o439bobo57b2obo$286bo419b2o17b3ob2o60bo$244b2o38bobo419b2o
16bo63bo$244b2o38b2o141bo149b2o146b3ob2o58bob2o$426bobo147bobo148bob2o
60b2o$425bo3bo146bo$243bo182bo3bo144b2o218bo$242bobo182bo3bo259bo102bo
bo$243bo184bo3bo257bobo102b2o$240b3o186bobo96b2o50b2o108bobo98b2o85b2o
$240bo29b2o158bo96bo2bo4b2o42bobo109bo34b2o62bobo84bo2bo4b2o$269bobo
162bo92bobo4bo2bo41bo108b3o34bobo62bo5b2o79bobo3bo2bo$270bo162bobo92bo
5bo43b2o108bo36bo63b2o5b2o80bo$434b2o98bo189b2o7bo149bo2bo$430b2o91b2o
9bob2o194bobo138b2o9bo2bo$429bobo92bo11b2o195bo140bo10bobo$429bo5b2o
84b3o186b2o28b2o129b3o12bo$428b2o5b2o84bo186bo2bo28b2o129bo$535b2o52b
2o134bo159b2o$535b2o52b2o117bo2bo11b3o159b2o36b2o$597b2o110bo2bo9bo
200b3o17b2o$597bo112bobo9b2o193b2o2bo2bobo16b2o$280b2o316b3o110bo205b
2o2b2o2b2o$280bo319bo117bo202b2o$281b3o426b2o5bobo$283bo315bo110b2o4bo
2bo$598bobo116b2o$454b2o142bobo316bo$450b2o2b2o141b2ob3o313bobo$449bob
o75bo75bo312bo2bo$446bo3bo76b3o67b2ob3o314b2o9b2o$251b2o193b2o82bo66b
2obo327b2o$251b2o192b2obo3b2o75b2o$444bo2b3o2bo91b2o43b2o153bo176b2o$
228b2o213bobobo5b3o88bo35b2o7b2o152bobo175bobo$228b2o212bobobo8bo86bob
o36bo160bo3bo176bo$250b2o188b3o2bo85bo10b2o37bobo157bo3bo177b2o$250bo
190bob2o85bobo49b2o156bo3bo$208b2o38bobo191b2o86bobo206bo3bo$208b2o38b
2o193bo81b2o4bo141b2o65bobo$524bobo15b2o129bo15bo9bo41bo$513b3o8bo17bo
bo57b2o67bobo15b3o5b3o37bo210b2o$207bo304bo10b2o19bo57b2o67b2o19bo3bo
39bobo209bo$206bobo303bo3bo27b2o145b2o3b2o38b2o211b3o$207bo304bo2bobo
222b2o209bo$204b3o307bobo2bo220bobo$204bo29b2o279bo3bo130b2o83b2o5bo$
233bobo283bo67bo62b2o83b2o5b2o176b2o5b2o$234bo281b3o67bobo332bo5b2o$
521bo11b2o51bobo332bobo$520bobo10b2o52bo334b2o$521b2o61b3o95b2o242b2o$
517b2o65bo97b2o241bobo10b2o$516bobo175b2o230bo11b2o$516bo5b2o169bo2bo
224b3o$515b2o5b2o91bo78b2o4b2o222bo$614bobo83bobo217bo3bo$613bo3bo84bo
216bobo2bo$244b2o300bo67bo3bo83b2o213bo2bobo$244bo299b3o68bo3bo72b2o
134b2o87bo3bo27b2o$245b3o295bo72bo3bo41b2o29bo109bo9bo15bo87bo10b2o19b
o$247bo295b2o72bobo42bo27b3o110b3o5b3o15bobo86b3o8bo17bobo$618bo44b3o
11b2o11bo115bo3bo19b2o97bobo15b2o$622bo42bo11b2o2b2o122b2o3b2o118b2o4b
o$621bobo57bobo251bobo$622b2o58bo2b2o248bobo$618b2o231b2o83bo10b2o$
215b2o305b2o93bobo59b2o2bo3bo163b2o94bobo$215b2o306bo93bo5b2o55bo2bo4b
o260bo$191bo331bobo90b2o5b2o52b3o5bobobo259b2o$187b2o2b2ob3o327b2o151b
o8bobobo243b2o$187b2o4b4o490bo4bo126b2o114bo$191b2o495bo3bo126b2o111b
3o$146b2o659b2o123bo$139b2o5b2o541b2o115bo2bo$79b2o58b2o660b2o4b2o$79b
2o115bo603bobo$65bo13b2o114bobo602bo$65b3o12bo60b2o27b2o22bo2bo601b2o$
68bo10bobo59b2o27b2o23b2o445b2o165b2o$67b2o9b2obo53b2o501b2o2b2o165bo
29b2o$135b2o401b2o97bobo74bo95b3o27bo$72bo103b2o13b2o345b2o94bo3bo74b
2o97bo11b2o11b3o$71bobo5b2o95b2o12bobo441b2o76bob2o104b2o2b2o11bo$71bo
2bo4b2o91b2o16bo442b2obo3b2o69b3o2bo102bobo$72b2o98b2o15b2o441bo2b3o2b
o72bobobo102bo$631bobobo5b3o70bobobo$630bobobo8bo71bo2b3o94b3o4b2o$
628b3o2bo82b2obo95b3o4bo$177b2o450bob2o84b2o96b3o5b3o$134b2o41b2o451b
2o85bo3bo90b3o10bo$135bo495bo88bobo89b3o$135bobo583b2o89b3o$136b2o546b
2o31b2o$683bo2bo4b2o23bobo55b2o$683bobo4bo2bo22bo5b2o50bo238b2o$684bo
5bo24b2o5b2o48bobo208bo2b2o25b2o$690bo81b2o208bo3b2o2b2o$216b2o461b2o
9bob2o288bo7b2o$209b2o4bo2bo461bo11b2o289b4o$209bo2bo3bobo458b3o88b2o$
217bo459bo89bo2bo$171b2o36bo2bo478b2o74bobo$171bo36bo2bo9b2o327b2o139b
2o75bo213bo$130b2o40b3o33bobo10bo327bo2bo4b2o422bobo$130b2o42bo34bo12b
3o324bobo4bo2bo421bo2bo13b2o$224bo325bo5bo212bobo210b2o14b2o$209b2o
345bo215bo$209b2o334b2o9bob2o208bo4bo2b2o$135b2o409bo11b2o208b2obo2bob
2o208b2o$135b2o406b3o226b2o212bobo$131b2o410bo444bo$131b2o424b2o429b2o
$172b2o383b2o$172b2o$137b2o27b2o$137b2o27b2o850b2o$1018bo$749b2o268b3o
$168b2o572b2o4bo2bo269bo$161b2o5b2o572b2o5bobo$142b2o17b2o587bo$143bo$
140b3o598bob2o9b2o$140bo600bobo10bo247b2o$742bo12b3o245bo23b2o$742b2o
13bo242b3o24bo$742b2o256bo7b2o15bobo$742b2o264b2o15b2o9$bobo$4bo$o4bo
2b2o$2obo2bob2o997b2o$4b2o1000bobo$1006bo$1005b2o2$9bo$8bobo$7bo2bo$8b
2o$1023b2o$1023bo$4b2o1018b3o$3bobo1020bo$3bo$2b2o4$1015b2o$1006b2o7b
2o$1007bo$921b2o84bobo$921b2o2b2o81b2o$925bobo$926bo2$923b2o4b2o$924bo
4b2obo$921b3o9bo$921bo8bo$931bob2o$933b2o151b2o$692bo393b2o$102b4o584b
3o346b2o4b2o$101bo7b2o578bo348bo2bo3b2o$101bo3b2o2b2o578b2o348b2o$102b
o2b2o$1013bo$1012bobo$1012bobo$110bo557b2o343bo$109bobo555bobo401b2o$
108bo2bo555bo376b2o25b2o$109b2o59bo495b2o353b2o21b2o$170bo841b2o7b2o$
170bo231b2o5b2o601b2o33b2o$105b2o296bo5b2o260b2o374b2o$104bobo296bobo
264bobo384b2o$104bo299b2o264bo386bo$103b2o303b2o259b2o384bobo$407bobo
645b2o$408bo$404bo686b2o$403b3o685bo$402bob3o685b3o$401bo3bo274b2o412b
o$400bo3bo275b2o$399b3obo284b2o$400b3o285bo$401bo287b3o359b2o22b2o$
691bo359bobo20bobo$1053bo20bo25b2o$690bo362b2o18b2o25bo$689bobo389b2o
15bobo$420b2o267bobo389b2o15b2o$420b2o2b2o262b2ob3o$424bobo267bo$425bo
262b2ob3o$688b2obo344b2o$422b2o4b2o606b2o$423bo4b2obo248b2o362b2o$420b
3o9bo238b2o7b2o362bo$420bo8bo242bo372b3o$430bob2o238bobo372bo$432b2o
239b2o$1046bo$1045bobo32b2o$1045bobo31bobo$693b2o349b2ob3o29bo$693b2o
355bo27b2o$1044b2ob3o$1044b2obo2$1036b2o63b2o5b2o$678bo348b2o7b2o63b2o
5bo$677bobo348bo77bobo$677bobo348bobo75b2o$678bo350b2o71b2o$675b3o412b
2o10bobo$675bo414b2o11bo2$1049b2o55b3o$1049b2o55b3o36b2o$1106b3o36b2o$
1109b3o$1079b2o28b3o$1080bo19b2o7b3o$1034bo45bobo17bo$1033bobo45b2o15b
obo$1033bobo57bo4b2o$1034bo57bobo$1031b3o58bobo$1031bo49b2o10bo36b2o$
1080bobo47b2o$1080bo$1079b2o$710bo383b2o$708b3o383bo$707bo387b3o$707b
2o388bo4$1150b2o$686b2o462bo$685bobo463b3o$685bo467bo$684b2o3$574bo
114b2o$574b3o111bobo443b2o$577bo110bo446bo23b2o$576bobo108b2o443b3o24b
o$576bobo553bo24bobo$577bo579b2o4$698b2o$592b2o62bo41b2o442b2o$592b2o
62b3o47b2o434b2o7b2o$659bo46bo444bo$658bobo46b3o439bobo$658bobo48bo
439b2o$572b2o85bo472b2o$571bobo134bo423b2o$571bo135bobo412b2o$570b2o7b
2o126bobo413bo$579b2o125b2ob3o411bobo$674b2o36bo411b2o$587b2obo83b2o
30b2ob3o$587b2ob3o113b2obo$593bo$587b2ob3o105b2o$588bobo63b2o33b2o7b2o
$588bobo62bobo34bo$589bo63bo36bobo$652b2o7b2o28b2o$590bo70b2o465b2o$
588b3o536bobo$587bo81b2obo454bo$587b2o80b2ob3o36b2o413b2o$579b2o94bo
35b2o$579b2o88b2ob3o$670bobo$670bobo$671bo$696bo446b2o$672bo22bobo445b
2o$568b2o100b3o22bobo437b2o$569bo99bo26bo439bo$569bobo97b2o22b3o437b3o
$570b2o89b2o30bo439bo$661b2o$1134bo$565b2o566bobo$566bo566bobo$566bobo
562b3ob2o$567b2o561bo$650b2o479b3ob2o$651bo481bob2o$651bobo$652b2o489b
2o$588b2o553b2o7b2o72b2o$588bo563bo73b2o$589b3o55b2o501bobo$591bo56bo
501b2o$648bobo$649b2o2$1130b2o$1130b2o2$670b2o539b2o$670bo540b2o$671b
3o$673bo472bo$1145bobo$1145bobo$1146bo$1147b3o$502bo646bo$502b3o$505bo
$504bobo724b2o$504bobo724bo$505bo726b3o$1234bo$1134b2o11bo$1134b2o10bo
bo$1146bobo31b2o21b2o5b2o$520b2o62bo560b2ob3o2b2o25bo23bo5b2o$520b2o
62b3o564bo2bo23bobo23bobo$587bo557b2ob3o3bobo21b2o25b2o$586bobo556b2ob
o6b2o52b2o$586bobo619bobo10b2o$500b2o85bo617bo3bo11b2o$499bobo703b2o$
499bo704b2obo$498b2o7b2o694bo2b3o$507b2o693bobobo$602b2o538b2o13b2o42b
obobo$515b2obo83b2o538b2o13b2o40b3o2bo27b2o$515b2ob3o606b2o71bob2o7b2o
19bo$521bo604bo2bo71b2o9bo17bobo$515b2ob3o604bob2o73bo9bobo15b2o$516bo
bo63b2o541bo87b2o4bo$516bobo62bobo540b2o92bobo$517bo63bo557b2o77bobo$
580b2o7b2o548bo79bo10b2o$518bo70b2o549b3o23b2o62bobo$516b3o623bo24bo
64bo$515bo81b2obo563b3o4b2o59b2o$515b2o80b2ob3o561bo6b2o44b2o$507b2o
94bo614bo$507b2o88b2ob3o612b3o$598bobo614bo$598bobo$599bo2$600bo$496b
2o100b3o$497bo99bo$497bobo97b2o$498b2o89b2o$589b2o$893bo$493b2o398b3o$
494bo401bo$494bobo398bobo361b2o$495b2o398bobo357b2o2b2o2b2o$578b2o316b
o358bobo2bo2b2o$579bo676b3o$579bobo675b2o$580b2o$516b2o$516bo394b2o
342bo$517b3o55b2o334b2o341bobo$519bo56bo677bo2bo$576bobo676b2o$577b2o$
891b2o$890bobo366b2o$890bo368bobo$889b2o7b2o361bo$598b2o298b2o361b2o$
598bo$599b3o304b2obo$601bo304b2ob3o$912bo$906b2ob3o$907bobo$907bobo$
908bo2$909bo$907b3o$906bo$906b2o$898b2o$898b2o6$887b2o$888bo$888bobo$
889b2o4$887b2o$887b2o6$907b2o$907bo$908b3o$910bo32$737bo$737b3o$740bo$
739bobo$739bobo$740bo5$755b2o$755b2o4$735b2o$734bobo$734bo$733b2o7b2o$
742b2o2$750b2obo$750b2ob3o$756bo$750b2ob3o$751bobo$751bobo$752bo2$753b
o$751b3o$750bo$750b2o$742b2o$742b2o6$731b2o$732bo$732bobo$733b2o4$731b
2o$731b2o6$751b2o$751bo$752b3o$754bo21$887bo$887b3o$890bo$889bobo$889b
obo$890bo5$905b2o$905b2o4$885b2o$884bobo$884bo$883b2o7b2o$892b2o2$900b
2obo$900b2ob3o$906bo$900b2ob3o$901bobo$901bobo$902bo2$903bo$901b3o$
686b2o212bo$686b2o2b2o208b2o$690bobo199b2o$691bo2b2o196b2o2$688b2o2bo
3bo$689bo2bo4bo$686b3o5bobobo$686bo8bobobo$696bo4bo179b2o$697bo3bo180b
o$882bobo$698b2o183b2o3$878b2o$879bo$879bobo$880b2o4$1046b2o$901b2o
142bo2bo4b2o$901bo143bobo5b2o$902b3o141bo$904bo$1041b2o9b2o$1042bo9b2o
bo$1039b3o13bo$1039bo15bo$1052bo2bo$1053b2o46$836b2o$836b2o2b2o$840bob
o$841bo2b2o2$838b2o2bo3bo$839bo2bo4bo$836b3o5bobobo$836bo8bobobo$846bo
4bo$847bo3bo2$848b2o1673$201b2o$201b2o134$1816bo$1814bo3bo$1813bo$
1813bo4bo$1813b5o!
There are no more debris at any distance far away. You can select entire pattern in Golly and copy it without going outside 1e9 boundary. Go try it!
There's some stuttering during construction and during recipe travelling through BSRD. Step size 2^27 (or 8^9) works fine in those cases. Waiting between aeons where nothing happens can be done with 2^32 step size, and watching construction details can be done in 2^12-2^18 step range.
Nice work, it’s definitely an honor to be apart of this project. One question though, should we go for speed efficiency and cost efficiency?

User avatar
dvgrn
Moderator
Posts: 10612
Joined: May 17th, 2009, 11:00 pm
Location: Madison, WI
Contact:

Re: RCT remaining tasks

Post by dvgrn » November 7th, 2022, 12:10 pm

AlbertArmStain wrote:
November 7th, 2022, 11:55 am
... should we go for speed efficiency and cost efficiency?
I could be wrong about what you mean by "speed efficiency" and "cost efficiency", but Pavgran has already patched in quite a lot of cost improvements. In general we've gone to -- some might say -- rather unreasonable lengths to minimize the number of bits that have to be encoded in the RCT's initial distance.

It's certainly true that the slsparse construction recipes could be hyper-optimized to save thousands more bits, but not with any automated compiler tools that we have available at the moment. Similarly, somebody could probably find a way to save a Cordership or three in the cleanup Corderfleets, but that also would only improve the cost by a small percentage.

Golly is already remarkably efficient at running these semilator patterns, to the point where it's hard to think of anything that could be done to speed things up any further -- short of running the doubled-over section of the glider stream through the pseudo-BSRD with a StreamLife algorithm instead of HashLife, anyway. That's the only relatively slow stage of evolution for these RCT16 demos, and even that Golly can churn through in just a few minutes.

User avatar
calcyman
Moderator
Posts: 2932
Joined: June 1st, 2009, 4:32 pm

Re: RCT remaining tasks

Post by calcyman » November 7th, 2022, 10:18 pm

dvgrn wrote:
November 5th, 2022, 9:18 am
... here's a helper script to allow for looking at some of the interesting parts of the RCT's evolution a little more easily.

[...]

This script will _only_ work properly for the November 4-5 rct16.mc.gz pattern. As soon as someone recompiles a new rct16 pattern and adds even a single extra bit to the RCT recipe, most of the script won't work right any more -- all the magic numbers will have to change.

It seemed like it was worth showing off what a Golly script could do at this point, anyway. It won't be too terribly difficult to replace all the magic numbers with formulas, such that the script will work for any size rct16 pattern.
I've been adding a profiler to the scripts in the rct16 repository, so now it automatically generates a helper script whenever the recipe is recompiled. It also emits a profile which currently looks like this:

Code: Select all

Recipe length: 1589113 bits
     253 bits ( 0.02%) : Transform the initial crash site into a usable blinker elbow
   10038 bits ( 0.63%) : Position some blocks in useful locations
 1246983 bits (78.47%) : Construct the decoder and better construction arm (DBCA)
    1615 bits ( 0.10%) : Launch a Corderrake to activate the meteor shower seed and pass control to the DBCA
     203 bits ( 0.01%) : Initialise DBCA and position construction elbow
    7056 bits ( 0.44%) : The DBCA constructs some switching circuitry
  160650 bits (10.11%) : The DBCA constructs the extreme compression construction arm (ECCA)
    2628 bits ( 0.17%) : The DBCA constructs some additional switching circuitry and jumps southeast
   20691 bits ( 1.30%) : The DBCA constructs a BSRD and some Corderabsorbers in the far south-east
       2 bits ( 0.00%) : The p8 reflectors are activated and subsequent gliders are rerouted to the BSRD
       1 bits ( 0.00%) : The ECCA reflects the first glider back to destroy the BSRD
     411 bits ( 0.03%) : The ECCA destroys the remnants of the DBCA (incomplete!!!)
     363 bits ( 0.02%) : The ECCA fires a glider to switch the direction of subsequent gliders
     643 bits ( 0.04%) : The ECCA eliminates ash from the GPSE collision
    1274 bits ( 0.08%) : The ECCA builds an elbow in the far northwest
   52265 bits ( 3.29%) : The ECCA launches a salvo of Corderships to clean the south-east trail
   25078 bits ( 1.58%) : The ECCA builds some Corderabsorbers in the far south-west
   20806 bits ( 1.31%) : The ECCA launches a salvo of Corderships to clean the south-west trail
   30031 bits ( 1.89%) : The ECCA launches a salvo of Corderships to clean the north-west trail
     316 bits ( 0.02%) : The ECCA prepares circuitry to destroy its own elbow
       7 bits ( 0.00%) : The ECCA builds a seed for the ATBC (incomplete!!!)
    7793 bits ( 0.49%) : The ECCA constructs Corderabsorbers in the far north-west
       6 bits ( 0.00%) : The ECCA returns to a known state for self-destruction
I've attached the latest rct16.mc:
rct16.mc
Current semilator pattern
(2.58 MiB) Downloaded 30 times
and inlined the corresponding helper script (load the macrocell file into Golly then execute the script):

Code: Select all

number = 195435859872
import golly as g
from time import sleep

g.setbase(2)
g.setpos("0","0")

g.autoupdate(True)

def smoothmag(imag, fmag):

    while (imag != fmag):
        if imag < fmag:
            imag += 1
        else:
            imag -= 1
        g.setmag(imag)
        sleep(0.2)
    return imag

def run_for(n, istep=None, fstep=11, mags=None):

    if istep is None:
        istep = min(30, len(bin(n)) - 9)

    g.setstep(istep)
    if mags:
        currmag = mags[0]
        g.setmag(currmag)
        mags = mags[1:]

    while (n > 0):
        if (istep > fstep) and ((n >> istep) < 4):
            istep -= 4
            g.setstep(istep)
            if mags:
                currmag = smoothmag(currmag, mags[0])
                mags = mags[1:]
        n -= (1 << istep)
        g.step()

g.show("Fast-forwarding to first collision of gliders from GPSEs...")

run_for(number * 4 - 640, 30, 6, [-30, -25, -20, -15, -10, -5, 0])

g.show("Following gliders to initial collision...")

for i in range(96):
    g.step()
    g.setpos(str(16*(i+1)), str(-16*(i+1)))
for i in range(48):
    g.step()

g.show("Fast-forwarding to first bit-reading gliders...")

run_for(number * 6 + 33344, 30)

g.show("Transform the initial crash site into a usable blinker elbow")
run_for(16580608)
g.setmag(-2)
g.setpos("768", "-1536")
g.show("Position some blocks in useful locations")
run_for(657850368)
g.show("Construct the decoder and better construction arm (DBCA)")
run_for(81722277888)
g.show("Launch a Corderrake to activate the meteor shower seed and pass control to the DBCA")
run_for(105840640)
g.show("Initialise DBCA and position construction elbow")
run_for(13303808)
g.show("The DBCA constructs some switching circuitry")
run_for(462422016)
g.setpos("1024", "0")
g.show("The DBCA constructs the extreme compression construction arm (ECCA)")
run_for(10528358400)
g.setpos("1024", "-1024")
g.show("The DBCA constructs some additional switching circuitry and jumps southeast")
run_for(172228608)
g.show("The DBCA constructs a BSRD and some Corderabsorbers in the far south-east")
run_for(1355415552)
g.setpos("768", "-1536")
g.show("The last glider-emission instruction activates switching circuitry to redirect future bits to the BSRD")
run_for(589824)
g.setmag(0)
g.setpos("1024", "-1024")
g.show("The p8 reflectors are activated and subsequent gliders are rerouted to the BSRD")
run_for(780387434496)
g.setmag(-2)
g.setpos("195435859968", "195435859968")
g.show("The BSRD and Corderabsorbers commence construction in the far south-east")
run_for(1356005376)
g.setmag(-3)
g.setpos("195435860736", "195435859200")
g.show("The BSRD in the far south-east begins reflecting gliders")
run_for(196608)
g.setmag(-4)
g.setpos("195435860736", "195435859200")
g.show("The BSRD continues reflecting gliders (grab a coffee; this takes a while...)")
run_for(8597929984)
g.setmag(-5)
g.setpos("195435860736", "195435859200")
g.show("The BSRD continues reflecting gliders (almost finished now...)")
run_for(511115264)
g.setmag(-30)
g.show("The recipe returns from the BSRD to the ECCA")
run_for(772634329088)
g.setmag(-2)
g.setpos("1024", "0")
g.show("The ECCA reflects the first glider back to destroy the BSRD")
run_for(65536)
g.setmag(-3)
g.setpos("512", "-1024")
g.show("The ECCA destroys the remnants of the DBCA (incomplete!!!)")
run_for(26935296)
g.show("The ECCA fires a glider to switch the direction of subsequent gliders")
run_for(23789568)
g.setmag(0)
g.setpos("0", "0")
g.show("The ECCA eliminates ash from the GPSE collision")
run_for(42139648)
g.show("The ECCA builds an elbow in the far northwest")
run_for(83492864)
g.setmag(-1)
g.show("The ECCA launches a salvo of Corderships to clean the south-east trail")
run_for(3425239040)
g.show("The ECCA builds some Corderabsorbers in the far south-west")
run_for(1643511808)
g.show("The ECCA launches a salvo of Corderships to clean the south-west trail")
run_for(1363542016)
g.show("The ECCA launches a salvo of Corderships to clean the north-west trail")
run_for(1968111616)
g.show("The ECCA prepares circuitry to destroy its own elbow")
run_for(20709376)
g.show("The ECCA builds a seed for the ATBC (incomplete!!!)")
run_for(458752)
g.show("The ECCA constructs Corderabsorbers in the far north-west")
run_for(510722048)
g.show("The ECCA returns to a known state for self-destruction")
run_for(393216)
g.setmag(-30)
g.show("The Corderships embark on their journey to clean up the ash trails")
run_for(776235991040)
g.setmag(0)
g.setpos("-195435859568", "195435859568")
g.show("The Corderabsorbers commence construction using slow^2 gliders")
run_for(1643511808)
g.show("The Corderabsorbers are fully complete")
run_for(3352821760)
g.setmag(-2)
g.setpos("-195435859968", "-195435859968")
g.show("The Corderabsorbers commence construction in the far north-west")
run_for(510722048)
g.setmag(-30)
g.setpos("0", "0")
g.show("The Corderships continue cleaning the ash trails")
run_for(1554554585088)
g.setmag(-2)
g.setpos("195435859968", "195435859968")
g.show("The Corderships begin colliding with the SE Corderabsorbers")
run_for(3425239040)
g.show("The Corderships have finished colliding with the SE Corderabsorbers")
run_for(1643511808)
g.setpos("-195435859968", "195435859968")
g.show("The Corderships begin colliding with the SW Corderabsorbers")
run_for(1363542016)
g.setmag(-2)
g.setpos("-195435859968", "-195435859968")
g.show("The Corderships begin colliding with the NW Corderabsorbers")
run_for(1968111616)
g.setmag(-30)
g.show("The last NW Cordership sends a return signal back to destroy the ECCA")
run_for(779775328256)
g.setmag(-3)
g.setpos("0", "0")
g.show("The ECCA awaits the return glider before self-destructing and emitting an MWSS")
run_for(1968111616)
g.setmag(-3)
g.show("The ATBC seed has been triggered by the MWSS")
What do you do with ill crystallographers? Take them to the mono-clinic!

User avatar
Pavgran
Posts: 220
Joined: June 12th, 2019, 12:14 pm

RCT is complete!

Post by Pavgran » November 9th, 2022, 7:10 pm

Finally!

Let's not waste time.
Here's the semilator pattern:
rct16.mc.gz
(829.81 KiB) Downloaded 103 times
And here's the 'showcase' script for the semilator:

Code: Select all


number = 195435859872
import golly as g
from time import sleep

g.setbase(2)
g.setpos("0","0")

g.autoupdate(True)

def smoothmag(imag, fmag):

    while (imag != fmag):
        if imag < fmag:
            imag += 1
        else:
            imag -= 1
        g.setmag(imag)
        sleep(0.2)
    return imag

def run_for(n, istep=None, fstep=11, mags=None):

    if istep is None:
        istep = min(30, len(bin(n)) - 9)

    g.setstep(istep)
    if mags:
        currmag = mags[0]
        g.setmag(currmag)
        mags = mags[1:]

    while (n > 0):
        if (istep > fstep) and ((n >> istep) < 4):
            istep -= 4
            g.setstep(istep)
            if mags:
                currmag = smoothmag(currmag, mags[0])
                mags = mags[1:]
        n -= (1 << istep)
        g.step()

g.show("Fast-forwarding to first collision of gliders from GPSEs...")

run_for(number * 4 - 640, 30, 6, [-30, -25, -20, -15, -10, -5, 0])

g.show("Following gliders to initial collision...")

for i in range(96):
    g.step()
    g.setpos(str(16*(i+1)), str(-16*(i+1)))
for i in range(48):
    g.step()

g.show("Fast-forwarding to first bit-reading gliders...")

run_for(number * 6 + 33344, 30)

g.show("Transform the initial crash site into a usable blinker elbow")
run_for(16580608)
g.setmag(-2)
g.setpos("768", "-1536")
g.show("Position some blocks in useful locations")
run_for(657850368)
g.show("Construct the decoder and better construction arm (DBCA)")
run_for(81722277888)
g.show("Launch a Corderrake to activate the meteor shower seed and pass control to the DBCA")
run_for(105840640)
g.show("Initialise DBCA and position construction elbow")
run_for(13303808)
g.show("The DBCA constructs some switching circuitry")
run_for(462422016)
g.setpos("1024", "0")
g.show("The DBCA constructs the extreme compression construction arm (ECCA)")
run_for(10528358400)
g.setpos("1024", "-1024")
g.show("The DBCA constructs some additional switching circuitry and jumps southeast")
run_for(172228608)
g.show("The DBCA constructs a BSRD and some Corderabsorbers in the far south-east")
run_for(1355415552)
g.setpos("768", "-1536")
g.show("The last glider-emission instruction activates switching circuitry to redirect future bits to the BSRD")
run_for(589824)
g.setmag(0)
g.setpos("1024", "-1024")
g.show("The p8 reflectors are activated and subsequent gliders are rerouted to the BSRD")
run_for(780387434496)
g.setmag(-2)
g.setpos("195435859968", "195435859968")
g.show("The BSRD and Corderabsorbers commence construction in the far south-east")
run_for(1356005376)
g.setmag(-3)
g.setpos("195435860736", "195435859200")
g.show("The BSRD in the far south-east begins reflecting gliders")
run_for(196608)
g.setmag(-4)
g.setpos("195435860736", "195435859200")
g.show("The BSRD continues reflecting gliders (grab a coffee; this takes a while...)")
run_for(12621250560)
g.setmag(-5)
g.setpos("195435860736", "195435859200")
g.show("The BSRD continues reflecting gliders (almost finished now...)")
run_for(511115264)
g.setmag(-30)
g.show("The recipe returns from the BSRD to the ECCA")
run_for(768611008512)
g.setmag(-2)
g.setpos("1024", "0")
g.show("The ECCA reflects the first glider back to destroy the BSRD")
run_for(65536)
g.setmag(-3)
g.setpos("512", "-1024")
g.show("The ECCA destroys the remnants of the DBCA")
run_for(250347520)
g.show("The ECCA fires a glider to switch the direction of subsequent gliders")
run_for(11730944)
g.setmag(0)
g.setpos("0", "0")
g.show("The ECCA eliminates ash from the GPSE collision")
run_for(42139648)
g.show("The ECCA builds an elbow in the far northwest")
run_for(83492864)
g.setmag(0)
g.show("The ECCA launches a salvo of Corderships to clean the south-east trail")
run_for(3425239040)
g.show("The ECCA builds some Corderabsorbers in the far south-west")
run_for(1643511808)
g.setmag(-2)
g.show("The ECCA launches a salvo of Corderships to clean the south-west trail")
run_for(1363542016)
g.show("The ECCA launches a salvo of Corderships to clean the north-west trail")
run_for(1968111616)
g.show("The ECCA prepares circuitry to destroy its own elbow")
run_for(20709376)
g.show("The ECCA builds a seed for the ATBC")
run_for(3812425728)
g.show("The ECCA constructs Corderabsorbers in the far north-west")
run_for(510722048)
g.show("The ECCA returns to a known state for self-destruction")
run_for(393216)
g.setmag(-30)
g.show("The Corderships embark on their journey to clean up the ash trails")
run_for(772424024064)
g.setmag(0)
g.setpos("-195435859568", "195435859568")
g.show("The Corderabsorbers commence construction using slow^2 gliders")
run_for(1643511808)
g.show("The Corderabsorbers are fully complete")
run_for(7164788736)
g.setmag(-2)
g.setpos("-195435859968", "-195435859968")
g.show("The Corderabsorbers commence construction in the far north-west")
run_for(510722048)
g.setmag(-30)
g.setpos("0", "0")
g.show("The Corderships continue cleaning the ash trails")
run_for(1550742618112)
g.setmag(-2)
g.setpos("195435859968", "195435859968")
g.show("The Corderships begin colliding with the SE Corderabsorbers")
run_for(3425239040)
g.show("The Corderships have finished colliding with the SE Corderabsorbers")
run_for(1643511808)
g.setpos("-195435859968", "195435859968")
g.show("The Corderships begin colliding with the SW Corderabsorbers")
run_for(1363542016)
g.setmag(-2)
g.setpos("-195435859968", "-195435859968")
g.show("The Corderships begin colliding with the NW Corderabsorbers")
run_for(1968111616)
g.setmag(-30)
g.show("The last NW Cordership sends a return signal back to destroy the ECCA")
run_for(779775328256)
g.setmag(-2)
g.setpos("1024", "0")
g.show("The ECCA awaits the return glider before self-destructing and emitting an MWSS")
run_for(1968111616)
g.setmag(-3)
g.setpos("0", "0")
g.show("The MWSS triggers the ATBC seed")
(Copy the code above, and then do 'File->Run Clipboard' in Golly)

And here's profiler report:

Code: Select all

Recipe length: 1650504 bits
     253 bits ( 0.02%) : Transform the initial crash site into a usable blinker elbow
   10038 bits ( 0.61%) : Position some blocks in useful locations
 1246983 bits (75.55%) : Construct the decoder and better construction arm (DBCA)
    1615 bits ( 0.10%) : Launch a Corderrake to activate the meteor shower seed and pass control to the DBCA
     203 bits ( 0.01%) : Initialise DBCA and position construction elbow
    7056 bits ( 0.43%) : The DBCA constructs some switching circuitry
  160650 bits ( 9.73%) : The DBCA constructs the extreme compression construction arm (ECCA)
    2628 bits ( 0.16%) : The DBCA constructs some additional switching circuitry and jumps southeast
   20691 bits ( 1.25%) : The DBCA constructs a BSRD and some Corderabsorbers in the far south-east
       2 bits ( 0.00%) : The p8 reflectors are activated and subsequent gliders are rerouted to the BSRD
       1 bits ( 0.00%) : The ECCA reflects the first glider back to destroy the BSRD
    3820 bits ( 0.23%) : The ECCA destroys the remnants of the DBCA
     179 bits ( 0.01%) : The ECCA fires a glider to switch the direction of subsequent gliders
     643 bits ( 0.04%) : The ECCA eliminates ash from the GPSE collision
    1274 bits ( 0.08%) : The ECCA builds an elbow in the far northwest
   52265 bits ( 3.17%) : The ECCA launches a salvo of Corderships to clean the south-east trail
   25078 bits ( 1.52%) : The ECCA builds some Corderabsorbers in the far south-west
   20806 bits ( 1.26%) : The ECCA launches a salvo of Corderships to clean the south-west trail
   30031 bits ( 1.82%) : The ECCA launches a salvo of Corderships to clean the north-west trail
     316 bits ( 0.02%) : The ECCA prepares circuitry to destroy its own elbow
   58173 bits ( 3.52%) : The ECCA builds a seed for the ATBC
    7793 bits ( 0.47%) : The ECCA constructs Corderabsorbers in the far north-west
       6 bits ( 0.00%) : The ECCA returns to a known state for self-destruction
Big kudos to everyone involved in that project! I think it's an important CGOL milestone.

Code: Select all

x = 1293, y = 501, rule = B3/S23
20b2o$20b2o11$31b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o
14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o
14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o
14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o
14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o$31b2o14b2o14b
2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b
2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b
2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b
2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b
2o14b2o14b2o14b2o14b2o14b2o3$1051b2o$30bo1020b2o$29bobo$30b2o3$25b2o$
24bobo$24b2o8$1051b2o$30bo1020b2o$29bobo$30b2o3$25b2o$24bobo$24b2o4$
299b2o4bo9b2o4bo9b2o4bo9b2o4bo9b2o4bo9b2o4bo9b2o4bo105b2o4bo9b2o4bo9b
2o4bo9b2o4bo105b2o4bo9b2o4bo9b2o4bo9b2o4bo9b2o4bo$299bobo2bobo8bobo2bo
bo8bobo2bobo8bobo2bobo8bobo2bobo8bobo2bobo8bobo2bobo104bobo2bobo8bobo
2bobo8bobo2bobo8bobo2bobo104bobo2bobo8bobo2bobo8bobo2bobo8bobo2bobo8bo
bo2bobo$300b2o2b2o10b2o2b2o10b2o2b2o10b2o2b2o10b2o2b2o10b2o2b2o10b2o2b
2o106b2o2b2o10b2o2b2o10b2o2b2o10b2o2b2o106b2o2b2o10b2o2b2o10b2o2b2o10b
2o2b2o10b2o2b2o2$1051b2o$30bo1020b2o$29bobo$30b2o3$25b2o$24bobo$24b2o
4$299b2o4bo9b2o4bo57b2o4bo9b2o4bo89b2o4bo9b2o4bo25b2o4bo9b2o4bo25b2o4b
o9b2o4bo9b2o4bo9b2o4bo9b2o4bo9b2o4bo$299bobo2bobo8bobo2bobo56bobo2bobo
8bobo2bobo88bobo2bobo8bobo2bobo24bobo2bobo8bobo2bobo24bobo2bobo8bobo2b
obo8bobo2bobo8bobo2bobo8bobo2bobo8bobo2bobo$300b2o2b2o10b2o2b2o58b2o2b
2o10b2o2b2o90b2o2b2o10b2o2b2o26b2o2b2o10b2o2b2o26b2o2b2o10b2o2b2o10b2o
2b2o10b2o2b2o10b2o2b2o10b2o2b2o2$1051b2o$30bo1020b2o$29bobo$30b2o3$25b
2o$24bobo$24b2o4$299b2o4bo9b2o4bo57b2o4bo9b2o4bo73b2o4bo9b2o4bo41b2o4b
o9b2o4bo89b2o4bo$299bobo2bobo8bobo2bobo56bobo2bobo8bobo2bobo72bobo2bob
o8bobo2bobo40bobo2bobo8bobo2bobo88bobo2bobo$300b2o2b2o10b2o2b2o58b2o2b
2o10b2o2b2o74b2o2b2o10b2o2b2o42b2o2b2o10b2o2b2o90b2o2b2o2$1051b2o$30bo
1020b2o$29bobo$30b2o3$25b2o$24bobo$24b2o4$299b2o4bo9b2o4bo41b2o4bo9b2o
4bo73b2o4bo9b2o4bo153b2o4bo9b2o4bo$299bobo2bobo8bobo2bobo40bobo2bobo8b
obo2bobo72bobo2bobo8bobo2bobo152bobo2bobo8bobo2bobo$300b2o2b2o10b2o2b
2o42b2o2b2o10b2o2b2o74b2o2b2o10b2o2b2o154b2o2b2o10b2o2b2o2$1051b2o$30b
o1020b2o$29bobo$30b2o3$25b2o$24bobo$24b2o4$299b2o4bo9b2o4bo9b2o4bo9b2o
4bo9b2o4bo89b2o4bo9b2o4bo153b2o4bo9b2o4bo$299bobo2bobo8bobo2bobo8bobo
2bobo8bobo2bobo8bobo2bobo88bobo2bobo8bobo2bobo152bobo2bobo8bobo2bobo$
300b2o2b2o10b2o2b2o10b2o2b2o10b2o2b2o10b2o2b2o90b2o2b2o10b2o2b2o154b2o
2b2o10b2o2b2o2$1051b2o$30bo1020b2o$29bobo$30b2o3$25b2o$24bobo$24b2o4$
299b2o4bo9b2o4bo25b2o4bo9b2o4bo73b2o4bo9b2o4bo169b2o4bo9b2o4bo$299bobo
2bobo8bobo2bobo24bobo2bobo8bobo2bobo72bobo2bobo8bobo2bobo168bobo2bobo
8bobo2bobo$300b2o2b2o10b2o2b2o26b2o2b2o10b2o2b2o74b2o2b2o10b2o2b2o170b
2o2b2o10b2o2b2o2$1051b2o$30bo1020b2o$29bobo$30b2o3$25b2o$24bobo$24b2o
4$299b2o4bo57b2o4bo9b2o4bo57b2o4bo9b2o4bo169b2o4bo9b2o4bo$299bobo2bobo
56bobo2bobo8bobo2bobo56bobo2bobo8bobo2bobo168bobo2bobo8bobo2bobo$300b
2o2b2o58b2o2b2o10b2o2b2o58b2o2b2o10b2o2b2o170b2o2b2o10b2o2b2o2$1051b2o
$30bo1020b2o$29bobo$30b2o3$25b2o$24bobo$24b2o4$283b2o4bo9b2o4bo73b2o4b
o9b2o4bo41b2o4bo9b2o4bo169b2o4bo9b2o4bo$283bobo2bobo8bobo2bobo72bobo2b
obo8bobo2bobo40bobo2bobo8bobo2bobo168bobo2bobo8bobo2bobo$284b2o2b2o10b
2o2b2o74b2o2b2o10b2o2b2o42b2o2b2o10b2o2b2o170b2o2b2o10b2o2b2o2$1051b2o
$30bo1020b2o$29bobo$30b2o3$25b2o$24bobo$24b2o4$283b2o4bo9b2o4bo89b2o4b
o9b2o4bo25b2o4bo9b2o4bo57b2o4bo9b2o4bo89b2o4bo9b2o4bo$283bobo2bobo8bob
o2bobo88bobo2bobo8bobo2bobo24bobo2bobo8bobo2bobo56bobo2bobo8bobo2bobo
88bobo2bobo8bobo2bobo$284b2o2b2o10b2o2b2o90b2o2b2o10b2o2b2o26b2o2b2o
10b2o2b2o58b2o2b2o10b2o2b2o90b2o2b2o10b2o2b2o2$1051b2o$30bo1020b2o$29b
obo$30b2o3$25b2o$24bobo$24b2o4$459b2o4bo9b2o4bo9b2o4bo9b2o4bo9b2o4bo$
459bobo2bobo8bobo2bobo8bobo2bobo8bobo2bobo8bobo2bobo$460b2o2b2o10b2o2b
2o10b2o2b2o10b2o2b2o10b2o2b2o2$1051b2o$30bo1020b2o$29bobo$30b2o3$25b2o
$24bobo$24b2o8$1051b2o$30bo1020b2o$29bobo$30b2o3$25b2o$24bobo$24b2o4$
635b2o4bo9b2o4bo$635bobo2bobo8bobo2bobo$636b2o2b2o10b2o2b2o2$1051b2o$
30bo1020b2o$29bobo$30b2o3$25b2o$24bobo$24b2o4$635b2o4bo9b2o4bo345b2o4b
o9b2o4bo$635bobo2bobo8bobo2bobo344bobo2bobo8bobo2bobo$636b2o2b2o10b2o
2b2o346b2o2b2o10b2o2b2o2$1051b2o$30bo1020b2o$29bobo$30b2o3$25b2o$24bob
o$24b2o4$619b2o4bo9b2o4bo169b2o4bo9b2o4bo169b2o4bo9b2o4bo$619bobo2bobo
8bobo2bobo168bobo2bobo8bobo2bobo168bobo2bobo8bobo2bobo$620b2o2b2o10b2o
2b2o170b2o2b2o10b2o2b2o170b2o2b2o10b2o2b2o2$1051b2o$30bo1020b2o$29bobo
$30b2o3$25b2o$24bobo$24b2o4$91b2o4bo9b2o4bo9b2o4bo489b2o4bo9b2o4bo57b
2o4bo9b2o4bo9b2o4bo57b2o4bo9b2o4bo105b2o4bo9b2o4bo9b2o4bo41b2o4bo9b2o
4bo$91bobo2bobo8bobo2bobo8bobo2bobo488bobo2bobo8bobo2bobo56bobo2bobo8b
obo2bobo8bobo2bobo56bobo2bobo8bobo2bobo104bobo2bobo8bobo2bobo8bobo2bob
o40bobo2bobo8bobo2bobo$92b2o2b2o10b2o2b2o10b2o2b2o490b2o2b2o10b2o2b2o
58b2o2b2o10b2o2b2o10b2o2b2o58b2o2b2o10b2o2b2o106b2o2b2o10b2o2b2o10b2o
2b2o42b2o2b2o10b2o2b2o2$1051b2o$30bo1020b2o$29bobo$30b2o3$25b2o$24bobo
$24b2o4$91b2o4bo9b2o4bo9b2o4bo9b2o4bo57b2o4bo9b2o4bo9b2o4bo9b2o4bo41b
2o4bo9b2o4bo89b2o4bo9b2o4bo9b2o4bo41b2o4bo9b2o4bo25b2o4bo9b2o4bo9b2o4b
o9b2o4bo25b2o4bo9b2o4bo41b2o4bo9b2o4bo25b2o4bo9b2o4bo25b2o4bo9b2o4bo9b
2o4bo9b2o4bo9b2o4bo9b2o4bo41b2o4bo9b2o4bo25b2o4bo41b2o4bo9b2o4bo$91bob
o2bobo8bobo2bobo8bobo2bobo8bobo2bobo56bobo2bobo8bobo2bobo8bobo2bobo8bo
bo2bobo40bobo2bobo8bobo2bobo88bobo2bobo8bobo2bobo8bobo2bobo40bobo2bobo
8bobo2bobo24bobo2bobo8bobo2bobo8bobo2bobo8bobo2bobo24bobo2bobo8bobo2bo
bo40bobo2bobo8bobo2bobo24bobo2bobo8bobo2bobo24bobo2bobo8bobo2bobo8bobo
2bobo8bobo2bobo8bobo2bobo8bobo2bobo40bobo2bobo8bobo2bobo24bobo2bobo40b
obo2bobo8bobo2bobo$92b2o2b2o10b2o2b2o10b2o2b2o10b2o2b2o58b2o2b2o10b2o
2b2o10b2o2b2o10b2o2b2o42b2o2b2o10b2o2b2o90b2o2b2o10b2o2b2o10b2o2b2o42b
2o2b2o10b2o2b2o26b2o2b2o10b2o2b2o10b2o2b2o10b2o2b2o26b2o2b2o10b2o2b2o
42b2o2b2o10b2o2b2o26b2o2b2o10b2o2b2o26b2o2b2o10b2o2b2o10b2o2b2o10b2o2b
2o10b2o2b2o10b2o2b2o42b2o2b2o10b2o2b2o26b2o2b2o42b2o2b2o10b2o2b2o2$
1051b2o$30bo1020b2o$29bobo$30b2o3$25b2o$24bobo$24b2o4$75b2o4bo9b2o4bo
89b2o4bo9b2o4bo41b2o4bo9b2o4bo25b2o4bo9b2o4bo25b2o4bo9b2o4bo9b2o4bo25b
2o4bo9b2o4bo9b2o4bo41b2o4bo9b2o4bo9b2o4bo9b2o4bo25b2o4bo9b2o4bo25b2o4b
o9b2o4bo25b2o4bo9b2o4bo25b2o4bo9b2o4bo57b2o4bo9b2o4bo73b2o4bo9b2o4bo
25b2o4bo57b2o4bo9b2o4bo$75bobo2bobo8bobo2bobo88bobo2bobo8bobo2bobo40bo
bo2bobo8bobo2bobo24bobo2bobo8bobo2bobo24bobo2bobo8bobo2bobo8bobo2bobo
24bobo2bobo8bobo2bobo8bobo2bobo40bobo2bobo8bobo2bobo8bobo2bobo8bobo2bo
bo24bobo2bobo8bobo2bobo24bobo2bobo8bobo2bobo24bobo2bobo8bobo2bobo24bob
o2bobo8bobo2bobo56bobo2bobo8bobo2bobo72bobo2bobo8bobo2bobo24bobo2bobo
56bobo2bobo8bobo2bobo$76b2o2b2o10b2o2b2o90b2o2b2o10b2o2b2o42b2o2b2o10b
2o2b2o26b2o2b2o10b2o2b2o26b2o2b2o10b2o2b2o10b2o2b2o26b2o2b2o10b2o2b2o
10b2o2b2o42b2o2b2o10b2o2b2o10b2o2b2o10b2o2b2o26b2o2b2o10b2o2b2o26b2o2b
2o10b2o2b2o26b2o2b2o10b2o2b2o26b2o2b2o10b2o2b2o58b2o2b2o10b2o2b2o74b2o
2b2o10b2o2b2o26b2o2b2o58b2o2b2o10b2o2b2o2$1051b2o$30bo1020b2o$29bobo$
30b2o3$25b2o$24bobo$24b2o4$59b2o4bo9b2o4bo105b2o4bo9b2o4bo41b2o4bo9b2o
4bo25b2o4bo9b2o4bo9b2o4bo9b2o4bo9b2o4bo9b2o4bo9b2o4bo9b2o4bo9b2o4bo9b
2o4bo41b2o4bo9b2o4bo9b2o4bo41b2o4bo9b2o4bo25b2o4bo9b2o4bo25b2o4bo9b2o
4bo9b2o4bo89b2o4bo9b2o4bo73b2o4bo9b2o4bo9b2o4bo73b2o4bo9b2o4bo$59bobo
2bobo8bobo2bobo104bobo2bobo8bobo2bobo40bobo2bobo8bobo2bobo24bobo2bobo
8bobo2bobo8bobo2bobo8bobo2bobo8bobo2bobo8bobo2bobo8bobo2bobo8bobo2bobo
8bobo2bobo8bobo2bobo40bobo2bobo8bobo2bobo8bobo2bobo40bobo2bobo8bobo2bo
bo24bobo2bobo8bobo2bobo24bobo2bobo8bobo2bobo8bobo2bobo88bobo2bobo8bobo
2bobo72bobo2bobo8bobo2bobo8bobo2bobo72bobo2bobo8bobo2bobo$60b2o2b2o10b
2o2b2o106b2o2b2o10b2o2b2o42b2o2b2o10b2o2b2o26b2o2b2o10b2o2b2o10b2o2b2o
10b2o2b2o10b2o2b2o10b2o2b2o10b2o2b2o10b2o2b2o10b2o2b2o10b2o2b2o42b2o2b
2o10b2o2b2o10b2o2b2o42b2o2b2o10b2o2b2o26b2o2b2o10b2o2b2o26b2o2b2o10b2o
2b2o10b2o2b2o90b2o2b2o10b2o2b2o74b2o2b2o10b2o2b2o10b2o2b2o74b2o2b2o10b
2o2b2o2$1051b2o$30bo1020b2o$29bobo$30b2o3$25b2o$24bobo$24b2o4$59b2o4bo
9b2o4bo89b2o4bo9b2o4bo57b2o4bo9b2o4bo25b2o4bo9b2o4bo9b2o4bo25b2o4bo9b
2o4bo9b2o4bo41b2o4bo9b2o4bo25b2o4bo9b2o4bo41b2o4bo9b2o4bo41b2o4bo9b2o
4bo25b2o4bo9b2o4bo41b2o4bo9b2o4bo25b2o4bo9b2o4bo57b2o4bo25b2o4bo9b2o4b
o41b2o4bo9b2o4bo$59bobo2bobo8bobo2bobo88bobo2bobo8bobo2bobo56bobo2bobo
8bobo2bobo24bobo2bobo8bobo2bobo8bobo2bobo24bobo2bobo8bobo2bobo8bobo2bo
bo40bobo2bobo8bobo2bobo24bobo2bobo8bobo2bobo40bobo2bobo8bobo2bobo40bob
o2bobo8bobo2bobo24bobo2bobo8bobo2bobo40bobo2bobo8bobo2bobo24bobo2bobo
8bobo2bobo56bobo2bobo24bobo2bobo8bobo2bobo40bobo2bobo8bobo2bobo$60b2o
2b2o10b2o2b2o90b2o2b2o10b2o2b2o58b2o2b2o10b2o2b2o26b2o2b2o10b2o2b2o10b
2o2b2o26b2o2b2o10b2o2b2o10b2o2b2o42b2o2b2o10b2o2b2o26b2o2b2o10b2o2b2o
42b2o2b2o10b2o2b2o42b2o2b2o10b2o2b2o26b2o2b2o10b2o2b2o42b2o2b2o10b2o2b
2o26b2o2b2o10b2o2b2o58b2o2b2o26b2o2b2o10b2o2b2o42b2o2b2o10b2o2b2o2$
1051b2o$30bo1020b2o$29bobo$30b2o3$25b2o$24bobo$24b2o4$59b2o4bo9b2o4bo
41b2o4bo9b2o4bo25b2o4bo9b2o4bo41b2o4bo9b2o4bo41b2o4bo9b2o4bo41b2o4bo9b
2o4bo9b2o4bo41b2o4bo9b2o4bo25b2o4bo9b2o4bo25b2o4bo9b2o4bo57b2o4bo9b2o
4bo25b2o4bo9b2o4bo25b2o4bo9b2o4bo41b2o4bo9b2o4bo25b2o4bo9b2o4bo41b2o4b
o9b2o4bo25b2o4bo9b2o4bo41b2o4bo9b2o4bo$59bobo2bobo8bobo2bobo40bobo2bob
o8bobo2bobo24bobo2bobo8bobo2bobo40bobo2bobo8bobo2bobo40bobo2bobo8bobo
2bobo40bobo2bobo8bobo2bobo8bobo2bobo40bobo2bobo8bobo2bobo24bobo2bobo8b
obo2bobo24bobo2bobo8bobo2bobo56bobo2bobo8bobo2bobo24bobo2bobo8bobo2bob
o24bobo2bobo8bobo2bobo40bobo2bobo8bobo2bobo24bobo2bobo8bobo2bobo40bobo
2bobo8bobo2bobo24bobo2bobo8bobo2bobo40bobo2bobo8bobo2bobo$60b2o2b2o10b
2o2b2o42b2o2b2o10b2o2b2o26b2o2b2o10b2o2b2o42b2o2b2o10b2o2b2o42b2o2b2o
10b2o2b2o42b2o2b2o10b2o2b2o10b2o2b2o42b2o2b2o10b2o2b2o26b2o2b2o10b2o2b
2o26b2o2b2o10b2o2b2o58b2o2b2o10b2o2b2o26b2o2b2o10b2o2b2o26b2o2b2o10b2o
2b2o42b2o2b2o10b2o2b2o26b2o2b2o10b2o2b2o42b2o2b2o10b2o2b2o26b2o2b2o10b
2o2b2o42b2o2b2o10b2o2b2o2$1051b2o$30bo1020b2o$29bobo$30b2o3$25b2o$24bo
bo$24b2o4$75b2o4bo9b2o4bo9b2o4bo9b2o4bo41b2o4bo9b2o4bo41b2o4bo9b2o4bo
41b2o4bo9b2o4bo41b2o4bo9b2o4bo105b2o4bo9b2o4bo9b2o4bo9b2o4bo73b2o4bo9b
2o4bo25b2o4bo9b2o4bo9b2o4bo9b2o4bo73b2o4bo9b2o4bo9b2o4bo57b2o4bo9b2o4b
o9b2o4bo9b2o4bo57b2o4bo9b2o4bo$75bobo2bobo8bobo2bobo8bobo2bobo8bobo2bo
bo40bobo2bobo8bobo2bobo40bobo2bobo8bobo2bobo40bobo2bobo8bobo2bobo40bob
o2bobo8bobo2bobo104bobo2bobo8bobo2bobo8bobo2bobo8bobo2bobo72bobo2bobo
8bobo2bobo24bobo2bobo8bobo2bobo8bobo2bobo8bobo2bobo72bobo2bobo8bobo2bo
bo8bobo2bobo56bobo2bobo8bobo2bobo8bobo2bobo8bobo2bobo56bobo2bobo8bobo
2bobo$76b2o2b2o10b2o2b2o10b2o2b2o10b2o2b2o42b2o2b2o10b2o2b2o42b2o2b2o
10b2o2b2o42b2o2b2o10b2o2b2o42b2o2b2o10b2o2b2o106b2o2b2o10b2o2b2o10b2o
2b2o10b2o2b2o74b2o2b2o10b2o2b2o26b2o2b2o10b2o2b2o10b2o2b2o10b2o2b2o74b
2o2b2o10b2o2b2o10b2o2b2o58b2o2b2o10b2o2b2o10b2o2b2o10b2o2b2o58b2o2b2o
10b2o2b2o2$1051b2o$30bo1020b2o$29bobo$30b2o3$25b2o$24bobo$24b2o4$187b
2o4bo9b2o4bo9b2o4bo9b2o4bo249b2o4bo$187bobo2bobo8bobo2bobo8bobo2bobo8b
obo2bobo248bobo2bobo$188b2o2b2o10b2o2b2o10b2o2b2o10b2o2b2o250b2o2b2o2$
1051b2o$30bo1020b2o$29bobo$30b2o3$25b2o$24bobo$24b2o4$475b2o4bo9b2o4bo
$475bobo2bobo8bobo2bobo$476b2o2b2o10b2o2b2o2$1051b2o$30bo1020b2o$29bob
o$30b2o3$25b2o$24bobo$24b2o4$475b2o4bo9b2o4bo$475bobo2bobo8bobo2bobo$
476b2o2b2o10b2o2b2o2$1051b2o$30bo1020b2o$29bobo$30b2o3$25b2o$24bobo$
24b2o4$475b2o4bo9b2o4bo$475bobo2bobo8bobo2bobo$476b2o2b2o10b2o2b2o2$
1051b2o$30bo1020b2o$29bobo$30b2o3$25b2o$24bobo$24b2o8$1051b2o$30bo
1020b2o$29bobo$30b2o3$25b2o$24bobo$24b2o4$37b2o14b2o14b2o14b2o14b2o14b
2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b
2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b
2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b
2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b
2o14b2o14b2o$36bo2bo12bo2bo12bo2bo12bo2bo12bo2bo12bo2bo12bo2bo12bo2bo
12bo2bo12bo2bo12bo2bo12bo2bo12bo2bo12bo2bo12bo2bo12bo2bo12bo2bo12bo2bo
12bo2bo12bo2bo12bo2bo12bo2bo12bo2bo12bo2bo12bo2bo12bo2bo12bo2bo12bo2bo
12bo2bo12bo2bo12bo2bo12bo2bo12bo2bo12bo2bo12bo2bo12bo2bo12bo2bo12bo2bo
12bo2bo12bo2bo12bo2bo12bo2bo12bo2bo12bo2bo12bo2bo12bo2bo12bo2bo12bo2bo
12bo2bo12bo2bo12bo2bo12bo2bo12bo2bo12bo2bo12bo2bo12bo2bo12bo2bo12bo2bo
12bo2bo12bo2bo12bo2bo12bo2bo12bo2bo12bo2bo$37b2o14b2o14b2o14b2o14b2o
14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o
14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o
14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o
14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o
14b2o14b2o14b2o3$31b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b
2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b
2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b
2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b
2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o$30bobo13bobo
13bobo13bobo13bobo13bobo13bobo13bobo13bobo13bobo13bobo13bobo13bobo13bo
bo13bobo13bobo13bobo13bobo13bobo13bobo13bobo13bobo13bobo13bobo13bobo
13bobo13bobo13bobo13bobo13bobo13bobo13bobo13bobo13bobo13bobo13bobo13bo
bo13bobo13bobo13bobo13bobo13bobo13bobo13bobo13bobo13bobo13bobo13bobo
13bobo13bobo13bobo13bobo13bobo13bobo13bobo13bobo13bobo13bobo13bobo13bo
bo13bobo13bobo13bobo13bobo$30b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b
2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b
2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b
2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b
2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o14b2o4$
19b2o1266b5o$19b2o1266bo4bo$1287bo$1288bo3bo$18b2o1270bo$18b2o9$17b2o
4b2o$17b2o4b2o5$24b2o$24b2o$bo$obo$b2o14b2o$17b2o3$12b2o$12b2o!
#C [[ STEP 16 ]]
#C [[ THUMBNAIL ]]
#C [[ THUMBSTART ]]
#C [[ THUMBSIZE 2 ]]

User avatar
squareroot12621
Posts: 614
Joined: March 23rd, 2022, 4:53 pm

Re: RCT is complete!

Post by squareroot12621 » November 9th, 2022, 7:18 pm

Pavgran wrote:
November 9th, 2022, 7:10 pm
Finally!…
Nice! I guess it can be in Pattern of the Year 2022 after all! :D

Code: Select all

4b8o$4b8o$4b8o$4b8o$4o8b4o$4o8b4o$4o8b4o$4o8b4o$4o8b4o$4o8b4o$4o8b4o$4o8b4o$4b8o$4b8o$4b8o$4b8o![[ THEME 0 AUTOSTART GPS 8 Z 16 T 1 T 1 Z 19.027 T 2 T 2 Z 22.627 T 3 T 3 Z 26.909 T 4 T 4 Z 32 T 5 T 5 Z 38.055 T 6 T 6 Z 45.255 T 7 T 7 Z 53.817 LOOP 8 ]]

AlbertArmStain
Posts: 1233
Joined: January 28th, 2022, 7:18 pm
Location: Planet Z

Re: RCT is complete!

Post by AlbertArmStain » November 9th, 2022, 7:53 pm

Pavgran wrote:
November 9th, 2022, 7:10 pm
Finally!

[/viewer]
Congratulations to everyone involved, this is truly the project of the century
Like I said before, it’s an undeniable honor to be apart of a project so big.

User avatar
dvgrn
Moderator
Posts: 10612
Joined: May 17th, 2009, 11:00 pm
Location: Madison, WI
Contact:

Re: RCT remaining tasks

Post by dvgrn » November 9th, 2022, 8:05 pm

Looks great! I haven't gotten it to run to completion yet -- still waiting on the pseudo-BSRD, and after doing a lot of zooming and panning to find the gliders being reflected, I clicked on Golly's main window and got a hashing error and crash-and-exit that I've never seen before. This might be a pattern that turns up a few more bugs or limitations in Golly...! So it might be best just to leave the script to run.

Anyway, I can see how I can calculate when it will be done from the numbers in the script, but I might add actual timestamps to the profiler report -- and maybe even add the key timestamp to the message about grabbing a coffee.

Things are really slow around 2.8 trillion ticks, still, but more than half of the gliders have bounced back from the pseudo-BSRD, so as soon as they stop streaming right past each other, things are suddenly going to speed up by a whole lot. Maybe we should even add a g.note() in there, to pause the run at the point when the speedy destruction/construction is just about to start.

E.g., I added a new line 100, for this next trial run:

Code: Select all

g.note("Done waiting!  Here comes the fun part!")]
Anyway, huge congratulations on finally finishing the RCT! It has been quite a journey since Gustavo's accidental prediction, way back in 2015.

EDIT: Okay, good, I caught the key time period: the pattern is still running terribly slowly at T=2.842 trillion ticks -- but by T=2,843,758,395,392 ticks it's done with that stage and ready to run fast again.

User avatar
toroidalet
Posts: 1514
Joined: August 7th, 2016, 1:48 pm
Location: My computer
Contact:

Re: RCT remaining tasks

Post by toroidalet » November 10th, 2022, 1:59 am

Nice work! It's amazing that a few tiny patterns, placed unimaginably far away from each other, can conspire to build almost anything. Is the next step to construct a spaceship/oscillator? (All oscillators above a certain period have at most 68 cells)


I have a tangentially-related question: Would it have been worth it to build another ECCA instead of the DBCA? (Not that you would want to do all that work again)
Any sufficiently advanced software is indistinguishable from malice.

User avatar
calcyman
Moderator
Posts: 2932
Joined: June 1st, 2009, 4:32 pm

Re: RCT remaining tasks

Post by calcyman » November 10th, 2022, 5:25 am

toroidalet wrote:
November 10th, 2022, 1:59 am
I have a tangentially-related question: Would it have been worth it to build another ECCA instead of the DBCA? (Not that you would want to do all that work again)
About 75% of the final recipe is spent constructing the DBCA using the original single-blinker construction arm. So we actually want to make the DBCA as small and simple as possible (as opposed to what the ECCA does, namely having additional complexity to improve the compression), so that it costs fewer bits to build it in the first place.

Pavgran and I have been discussing this, and we think that it may be worthwhile removing the INC16 and DEC8 instructions from the DBCA. This adds about 100 000 bits to the recipe length because the DBCA is now 1.5x less efficient, but conversely it should save 200 000 bits (therefore 100 000 net) because there will be less DBCA circuitry to construct in the first place.
What do you do with ill crystallographers? Take them to the mono-clinic!

Ch91
Posts: 49
Joined: April 26th, 2019, 8:05 pm

Re: RCT remaining tasks

Post by Ch91 » November 10th, 2022, 1:42 pm

calcyman wrote:
November 10th, 2022, 5:25 am
toroidalet wrote:
November 10th, 2022, 1:59 am
I have a tangentially-related question: Would it have been worth it to build another ECCA instead of the DBCA? (Not that you would want to do all that work again)
About 75% of the final recipe is spent constructing the DBCA using the original single-blinker construction arm. So we actually want to make the DBCA as small and simple as possible (as opposed to what the ECCA does, namely having additional complexity to improve the compression), so that it costs fewer bits to build it in the first place.

Pavgran and I have been discussing this, and we think that it may be worthwhile removing the INC16 and DEC8 instructions from the DBCA. This adds about 100 000 bits to the recipe length because the DBCA is now 1.5x less efficient, but conversely it should save 200 000 bits (therefore 100 000 net) because there will be less DBCA circuitry to construct in the first place.
For now, I think it might be better to rest on your laurels. Just getting this running at all is an accomplishment in its own right.

A thought strikes me, however: given that the RCT can itself be created through glider synthesis, how would it go about doing so? I'm struggling to imagine how the gliders could be brought to the right locations to do so without their simply flying infinitely far away from one another.

User avatar
Pavgran
Posts: 220
Joined: June 12th, 2019, 12:14 pm

Re: RCT remaining tasks

Post by Pavgran » November 10th, 2022, 2:57 pm

Ch91 wrote:
November 10th, 2022, 1:42 pm
A thought strikes me, however: given that the RCT can itself be created through glider synthesis, how would it go about doing so? I'm struggling to imagine how the gliders could be brought to the right locations to do so without their simply flying infinitely far away from one another.
There are at least two solutions to that problem. The first one is simple, but involves changing RCT recipe more than in one place. There already is some construction happening in 3 RCT faraway corners (mainly, Corderabsorbers). Nothing prevents placing some additional OTTs that would allow for gliders from the center to reach corners simultaneously and trigger GPSE seeds. The fourth corner doesn't have a hand, but it could be easily built by colliding xWSSes from two other corners.

The second solution is much harder. It involves building something that can calculate a big number and use it as a delay. Basically, entire RCT recipe would have to be encoded in some way and that recipe would be reconstructed inside said computer in quine-like way. Then a Crabstretcher could be used to build something very far away.
That solution is much more complex but more universal.

User avatar
dvgrn
Moderator
Posts: 10612
Joined: May 17th, 2009, 11:00 pm
Location: Madison, WI
Contact:

Re: RCT remaining tasks

Post by dvgrn » November 10th, 2022, 3:49 pm

Might anybody be interested in porting the Python viewer script to Lua? It should be an unusually easy job; a lot of the code can remain completely unchanged, since Golly supports all the same commands in Python and in Lua.

This is a case where a much wider audience might be interested in downloading Golly and just running a viewer script, as opposed to downloading Golly, installing the correct version of Python, and then running the Python version of the script.

I will get around to this eventually, but first I'm working on writing up a general-announcement blog post.

User avatar
Pavgran
Posts: 220
Joined: June 12th, 2019, 12:14 pm

Re: RCT remaining tasks

Post by Pavgran » November 10th, 2022, 6:59 pm

dvgrn wrote:
November 10th, 2022, 3:49 pm
Might anybody be interested in porting the Python viewer script to Lua? It should be an unusually easy job; a lot of the code can remain completely unchanged, since Golly supports all the same commands in Python and in Lua.

This is a case where a much wider audience might be interested in downloading Golly and just running a viewer script, as opposed to downloading Golly, installing the correct version of Python, and then running the Python version of the script.

I will get around to this eventually, but first I'm working on writing up a general-announcement blog post.
Done:

Code: Select all


local number = 195435859872
local g = golly()

g.setbase(2)
g.setpos("0","0")

g.autoupdate(true)

local function smoothmag(imag, fmag)
    while imag ~= fmag do
        if imag < fmag then
            imag = imag + 1
        else
            imag = imag - 1
        end
        g.setmag(imag)
        g.sleep(200)
    end
    return imag
end

local function run_for(n, istep, fstep, mags)
    istep = istep or math.min(30, math.floor(math.log(n)/math.log(2))-6)
    fstep = fstep or 11
    g.setstep(istep)
    if mags then
        magindex = 1
        currmag = mags[magindex]
        g.setmag(currmag)
        magindex = magindex + 1
    end
    
    while n > 0 do
        if (istep > fstep) and (n/(2^istep) < 4) then
            istep = istep - 4
            g.setstep(istep)
            if mags and magindex <= #mags then
                currmag = smoothmag(currmag, mags[magindex])
                magindex = magindex + 1
            end
        end
        n = n - (2^istep)
        g.step()
    end
end

g.show("Fast-forwarding to first collision of gliders from GPSEs...")

run_for(number * 4 - 640, 30, 6, {-30, -25, -20, -15, -10, -5, 0})

g.show("Following gliders to initial collision...")

for i=1,96 do
    g.step()
    g.setpos(16*i, -16*i)
end
for i=1,48 do
    g.step()
end

g.show("Fast-forwarding to first bit-reading gliders...")

run_for(number * 6 + 33344, 30)

g.show("Transform the initial crash site into a usable blinker elbow")
run_for(16580608)
g.setmag(-2)
g.setpos("768", "-1536")
g.show("Position some blocks in useful locations")
run_for(657850368)
g.show("Construct the decoder and better construction arm (DBCA)")
run_for(81722277888)
g.show("Launch a Corderrake to activate the meteor shower seed and pass control to the DBCA")
run_for(105840640)
g.show("Initialise DBCA and position construction elbow")
run_for(13303808)
g.show("The DBCA constructs some switching circuitry")
run_for(462422016)
g.setpos("1024", "0")
g.show("The DBCA constructs the extreme compression construction arm (ECCA)")
run_for(10528358400)
g.setpos("1024", "-1024")
g.show("The DBCA constructs some additional switching circuitry and jumps southeast")
run_for(172228608)
g.show("The DBCA constructs a BSRD and some Corderabsorbers in the far south-east")
run_for(1355415552)
g.setpos("768", "-1536")
g.show("The last glider-emission instruction activates switching circuitry to redirect future bits to the BSRD")
run_for(589824)
g.setmag(0)
g.setpos("1024", "-1024")
g.show("The p8 reflectors are activated and subsequent gliders are rerouted to the BSRD")
run_for(780387434496)
g.setmag(-2)
g.setpos("195435859968", "195435859968")
g.show("The BSRD and Corderabsorbers commence construction in the far south-east")
run_for(1356005376)
g.setmag(-3)
g.setpos("195435860736", "195435859200")
g.show("The BSRD in the far south-east begins reflecting gliders")
run_for(196608)
g.setmag(-4)
g.setpos("195435860736", "195435859200")
g.show("The BSRD continues reflecting gliders (grab a coffee; this takes a while...)")
run_for(12621250560)
g.setmag(-5)
g.setpos("195435860736", "195435859200")
g.show("The BSRD continues reflecting gliders (almost finished now...)")
run_for(511115264)
g.note("The BSRD finishes reflecting gliders! Press OK when ready", false)
g.setmag(-30)
g.show("The recipe returns from the BSRD to the ECCA")
run_for(768611008512)
g.setmag(-2)
g.setpos("1024", "0")
g.show("The ECCA reflects the first glider back to destroy the BSRD")
run_for(65536)
g.setmag(-3)
g.setpos("512", "-1024")
g.show("The ECCA destroys the remnants of the DBCA")
run_for(250347520)
g.show("The ECCA fires a glider to switch the direction of subsequent gliders")
run_for(11730944)
g.setmag(0)
g.setpos("0", "0")
g.show("The ECCA eliminates ash from the GPSE collision")
run_for(42139648)
g.show("The ECCA builds an elbow in the far northwest")
run_for(83492864)
g.setmag(0)
g.show("The ECCA launches a salvo of Corderships to clean the south-east trail")
run_for(3425239040)
g.show("The ECCA builds some Corderabsorbers in the far south-west")
run_for(1643511808)
g.setmag(-2)
g.show("The ECCA launches a salvo of Corderships to clean the south-west trail")
run_for(1363542016)
g.show("The ECCA launches a salvo of Corderships to clean the north-west trail")
run_for(1968111616)
g.show("The ECCA prepares circuitry to destroy its own elbow")
run_for(20709376)
g.show("The ECCA builds a seed for the ATBC")
run_for(3812425728)
g.show("The ECCA constructs Corderabsorbers in the far north-west")
run_for(510722048)
g.show("The ECCA returns to a known state for self-destruction")
run_for(393216)
g.setmag(-30)
g.show("The Corderships embark on their journey to clean up the ash trails")
run_for(772424024064)
g.setmag(0)
g.setpos("-195435859568", "195435859568")
g.show("The Corderabsorbers commence construction using slow^2 gliders")
run_for(1643511808)
g.show("The Corderabsorbers are fully complete")
run_for(7164788736)
g.setmag(-2)
g.setpos("-195435859968", "-195435859968")
g.show("The Corderabsorbers commence construction in the far north-west")
run_for(510722048)
g.setmag(-30)
g.setpos("0", "0")
g.show("The Corderships continue cleaning the ash trails")
run_for(1550742618112)
g.setmag(-2)
g.setpos("195435859968", "195435859968")
g.show("The Corderships begin colliding with the SE Corderabsorbers")
run_for(3425239040)
g.show("The Corderships have finished colliding with the SE Corderabsorbers")
run_for(1643511808)
g.setpos("-195435859968", "195435859968")
g.show("The Corderships begin colliding with the SW Corderabsorbers")
run_for(1363542016)
g.setmag(-2)
g.setpos("-195435859968", "-195435859968")
g.show("The Corderships begin colliding with the NW Corderabsorbers")
run_for(1968111616)
g.setmag(-30)
g.show("The last NW Cordership sends a return signal back to destroy the ECCA")
run_for(779775328256)
g.setmag(-2)
g.setpos("1024", "0")
g.show("The ECCA awaits the return glider before self-destructing and emitting an MWSS")
run_for(1968111616)
g.setmag(-3)
g.setpos("0", "0")
g.show("The MWSS triggers the ATBC seed")
That's a direct port, plus an additional g.note() to pause the script after BSRD finishes reflecting gliders.
I think it wouldn't hurt doing some polishing to better showcase different parts of the construction.

User avatar
dvgrn
Moderator
Posts: 10612
Joined: May 17th, 2009, 11:00 pm
Location: Madison, WI
Contact:

Re: RCT remaining tasks

Post by dvgrn » November 10th, 2022, 7:05 pm

Pavgran wrote:
November 10th, 2022, 6:59 pm
dvgrn wrote:
November 10th, 2022, 3:49 pm
Might anybody be interested in porting the Python viewer script to Lua?
Done...

I think it wouldn't hurt doing some polishing to better showcase different parts of the construction.
Great -- thank you! I'll link to this script specifically in the general-purpose linkable RCT blog post. As it gets patched up to run a little smoother, we can edit the new version back into that post, and eventually back-port it to the Git repository I suppose.

The purpose of the blog post is to have something out there with a title that will read well on Hacker News and Slashdot and Reddit and so on, for people who don't know RCT jargon. Which is ... the entire population of the world, minus about fifty people.

If anyone wants to actually put a link out on any of these places, please mention your plans here and/or on Discord a few hours or a day in advance of actually doing anything. It would be good if people here know about the posting in advance, and could plan to go and comment and so forth if they want to.

For what we think of as "big news items", what usually happens is that links get posted on Hacker News about five times over a period of a month or so ... and each one gets about five upvotes.

We're a small community, for sure, but we can probably arrange to be a little more organized than that!

But before any of that happens, I'm sure the article could use some reviewing:
  • Where did I write whole extra boring paragraphs?
  • Where did I slip back into unnecessary jargon?
  • What else should have a link?
  • etc...

User avatar
calcyman
Moderator
Posts: 2932
Joined: June 1st, 2009, 4:32 pm

Re: RCT remaining tasks

Post by calcyman » November 10th, 2022, 7:43 pm

Pavgran wrote:
November 10th, 2022, 6:59 pm
dvgrn wrote:
November 10th, 2022, 3:49 pm
Might anybody be interested in porting the Python viewer script to Lua? It should be an unusually easy job; a lot of the code can remain completely unchanged, since Golly supports all the same commands in Python and in Lua.
Done:
Awesome. I've pushed a commit in the repo to generate this Lua script as well as the Golly Python script.
What do you do with ill crystallographers? Take them to the mono-clinic!

User avatar
Pavgran
Posts: 220
Joined: June 12th, 2019, 12:14 pm

Re: RCT remaining tasks

Post by Pavgran » November 12th, 2022, 9:34 am

RCT15 preliminary design:

Code: Select all

x = 7491, y = 7412, rule = B3/S23
131bobo$132b2o$132bo$135b2o$136b2o$135bo$142b3o$142bo$143bo144$271b3o$
271bo$272bo6607$7488bobo$7488b2o$7489bo211$2bo$obo$b2o23$7274bo$7275bo
$7273b3o$7350bo$7348b2o$7349b2o69$7353bo$7352b2o$7352bobo51$337bo$337b
obo$337b2o47$138bo$137bo$137b3o$130bo$131b2o$130b2o$127bo$127b2o$126bo
bo222$335bo$334b2o$334bobo2$59b2o$60b2o$59bo!
The idea is to use different 4g GPSEs for SE and NW that emit extra gliders that would collide with extra gliders from 7g SW GPSE pair to produce an elbow, therefore eliminating an elbow-producing NE glider.
Thanks to Danielle for compiling a list of different semi-clean 4G GPSE-producing collisions that allowed for the design above.

The elbow that is produced is a honeyfarm plus a little extra junk behind, and it has enough clearance to allow quite a wide range of initial manipulations, including existing honeyfarm-to-blinker-elbow recipe. There's also extra junk from one of initial glider collisions, but that junk can potentially be cleaned by DBCA. The only potential issue is timing to avoid collision with GPSE gliders, but that could be solved by slow^2 0-degree gliders.

I've outlined in Discord a list of problems to solve to construct RCT15:
(1) transform initial elbow (quite easy)
(2) clean extra ash near the center by DBCA (potentially easy, but timing issues may arise. If we have to stick with different GPSE center crash procedure, a medium amount of work would be required to clean different center ash)
(3) Modify SE-related procedures to account for different GPSE launch ash (medium, some work is required, but it can be somewhat tedious)
(4) Modify NW-related procedures to account for different GPSE launch ash (medium, essentially the same kind of problem as for SE)

User avatar
dvgrn
Moderator
Posts: 10612
Joined: May 17th, 2009, 11:00 pm
Location: Madison, WI
Contact:

Re: RCT remaining tasks

Post by dvgrn » November 12th, 2022, 12:07 pm

Pavgran wrote:
November 12th, 2022, 9:34 am
RCT15 preliminary design...
Yup, that looks like it will work just fine. I mostly wanted to check that the messy phase of retrograde gliders hitting the NE GPSE ash trail wouldn't return a glider that causes a bad explosion with the remnant pi debris near the epicentre. That's a bit combination that isn't represented in your sample RCT15 until very late, when GPSEs are already colliding and it's hard to see what's going on. But the glider reflected from the messy retrograde glider collision just flies safely past the pi debris.

Presumably we'll combine this with the RISC idea (Reduced Instruction Set Constructor), replacing the current DBCA. And maybe we'll use RCT15 to build a breeder pattern instead of a decimal counter, if a good seed pattern gets completed.

It might be a bit of a toss-up whether RCT15 needs more or fewer bits to than RCT16, to build a given object, in that case. RCT15 will need quite a lot more bits initially to push the construction-arm elbow far enough away to start building the RISC. But we can probably make up for that with the other design improvements.

I've been looking for ways to avoid having to build the ECCA in its current location, between the DBCA and the epicentre (measuring along the NE/SW axis). It would be nice if a RISC replacement DBCA could fire NE instead of SW, maybe building a double-sized ECCA with construction arms extending both NW and SE, with both arms firing gliders SW.

But that doesn't allow for building the BSRD in the southeast by the time it's needed, except with slow^3 or slow^4 gliders (!) which would make up for any possible cost savings. So I think we're safe from that radical of a redesign.

User avatar
Pavgran
Posts: 220
Joined: June 12th, 2019, 12:14 pm

Re: RCT remaining tasks

Post by Pavgran » November 15th, 2022, 3:05 pm

RCT15 works as expected

Semilator pattern:
rct15.mc.gz
(828.71 KiB) Downloaded 68 times
Python viewer script:

Code: Select all

number = 195435859872
import golly as g
from time import sleep

g.setbase(2)
g.setpos("0","0")

false_literal = False
true_literal = True
g.autoupdate(true_literal)

def smoothmag(imag, fmag):

    while (imag != fmag):
        if imag < fmag:
            imag += 1
        else:
            imag -= 1
        g.setmag(imag)
        sleep(0.2)
    return imag

def run_for(n, istep=None, fstep=11, mags=None):

    if istep is None:
        istep = min(30, len(bin(n)) - 9)

    g.setstep(istep)
    if mags:
        currmag = mags[0]
        g.setmag(currmag)
        mags = mags[1:]

    while (n > 0):
        if (istep > fstep) and ((n >> istep) < 4):
            istep -= 4
            g.setstep(istep)
            if mags:
                currmag = smoothmag(currmag, mags[0])
                mags = mags[1:]
        n -= (1 << istep)
        g.step()

g.show("Fast-forwarding to first collision of gliders from GPSEs...")
run_for(number * 4 + 1280, 30, 6, [-30, -25, -20, -15, -10, -5, 0])
run_for(2560, 6, 6)
g.show("Fast-forwarding to first bit-reading gliders...")
run_for(number * 6 + 40000, 30)
g.show("Transform the initial crash site into a usable blinker elbow")
run_for(16580608)
g.setmag(-2)
g.setpos("768", "-768")
g.show("Move the blinker elbow far to the northeast")
run_for(1038090240)
g.setmag(-2)
g.setpos("768", "-1536")
g.show("Position some blocks in useful locations")
run_for(657850368)
g.show("Construct the decoder and better construction arm (DBCA)")
run_for(81722277888)
g.show("Launch a Corderrake to activate the meteor shower seed and pass control to the DBCA")
run_for(105840640)
g.show("Initialise DBCA and position construction elbow")
run_for(13303808)
g.setmag(0)
g.setpos("0", "0")
g.show("The DBCA removes the pi explosion")
run_for(7667712)
g.setmag(-2)
g.setpos("768", "-1536")
g.show("The DBCA constructs some switching circuitry")
run_for(404029440)
g.setpos("1024", "0")
g.show("The DBCA constructs the extreme compression construction arm (ECCA)")
run_for(10528358400)
g.setpos("1024", "-1024")
g.show("The DBCA constructs some additional switching circuitry and jumps southeast")
run_for(172228608)
g.show("The DBCA constructs a BSRD and some Corderabsorbers in the far south-east")
run_for(1389035520)
g.setpos("768", "-1536")
g.show("The last glider-emission instruction activates switching circuitry to redirect future bits to the BSRD")
run_for(589824)
g.setmag(0)
g.setpos("1024", "-1024")
g.show("The p8 reflectors are activated and subsequent gliders are rerouted to the BSRD")
run_for(780353814528)
g.setmag(-2)
g.setpos("195435859968", "195435859968")
g.show("The BSRD and Corderabsorbers commence construction in the far south-east")
run_for(1389625344)
g.setmag(-3)
g.setpos("195435860736", "195435859200")
g.show("The BSRD in the far south-east begins reflecting gliders")
run_for(196608)
g.setmag(-4)
g.setpos("195435860736", "195435859200")
g.show("The BSRD continues reflecting gliders (grab a coffee and come back in 15 minutes; we will wait for you)")
run_for(13113229312)
g.note("The BSRD finishes reflecting gliders! Press OK when ready", false_literal)
g.setmag(-30)
g.show("The recipe returns from the BSRD to the ECCA")
run_for(768630145024)
g.setmag(-2)
g.setpos("1024", "0")
g.show("The ECCA reflects the first glider back to destroy the BSRD")
run_for(65536)
g.setmag(-3)
g.setpos("512", "-1024")
g.show("The ECCA destroys the remnants of the DBCA")
run_for(250347520)
g.show("The ECCA fires a glider to switch the direction of subsequent gliders")
run_for(11730944)
g.setmag(0)
g.setpos("0", "0")
g.show("The ECCA eliminates ash from the GPSE collision")
run_for(41680896)
g.show("The ECCA builds an elbow in the far northwest")
run_for(50331648)
g.setmag(0)
g.show("The ECCA launches a salvo of Corderships to clean the south-east trail")
run_for(3425239040)
g.show("The ECCA builds some Corderabsorbers in the far south-west")
run_for(1643511808)
g.setmag(-2)
g.show("The ECCA launches a salvo of Corderships to clean the south-west trail")
run_for(1363542016)
g.show("The ECCA launches a salvo of Corderships to clean the north-west trail")
run_for(1968111616)
g.show("The ECCA prepares circuitry to destroy its own elbow")
run_for(20709376)
g.show("The ECCA builds a seed for the ATBC")
run_for(3812425728)
g.show("The ECCA constructs Corderabsorbers in the far north-west")
run_for(525205504)
g.show("The ECCA returns to a known state for self-destruction")
run_for(393216)
g.setmag(-30)
g.show("The Corderships embark on their journey to clean up the ash trails")
run_for(772409540608)
g.setmag(0)
g.setpos("-195435859568", "195435859568")
g.show("The Corderabsorbers commence construction using slow^2 gliders")
run_for(1643511808)
g.show("The Corderabsorbers are fully complete")
run_for(7164788736)
g.setmag(-2)
g.setpos("-195435859968", "-195435859968")
g.show("The Corderabsorbers commence construction in the far north-west")
run_for(525205504)
g.setmag(-30)
g.setpos("0", "0")
g.show("The Corderships continue cleaning the ash trails")
run_for(1550728134656)
g.setmag(-2)
g.setpos("195435859968", "195435859968")
g.show("The Corderships begin colliding with the SE Corderabsorbers")
run_for(3425239040)
g.show("The Corderships have finished colliding with the SE Corderabsorbers")
run_for(1643511808)
g.setpos("-195435859968", "195435859968")
g.show("The Corderships begin colliding with the SW Corderabsorbers")
run_for(1363542016)
g.setmag(-2)
g.setpos("-195435859968", "-195435859968")
g.show("The Corderships begin colliding with the NW Corderabsorbers")
run_for(1968111616)
g.setmag(-30)
g.show("The last NW Cordership sends a return signal back to destroy the ECCA")
run_for(779775328256)
g.setmag(-2)
g.setpos("1024", "0")
g.show("The ECCA awaits the return glider before self-destructing and emitting an MWSS")
run_for(1968111616)
g.setmag(-3)
g.setpos("0", "0")
g.show("The MWSS triggers the ATBC seed")
Lua viewer script:

Code: Select all

local number = 195435859872
local g = golly()

g.setbase(2)
g.setpos("0","0")

local false_literal = false
local true_literal = true
g.autoupdate(true_literal)

local function smoothmag(imag, fmag)
    while imag ~= fmag do
        if imag < fmag then
            imag = imag + 1
        else
            imag = imag - 1
        end
        g.setmag(imag)
        g.sleep(200)
    end
    return imag
end

local function run_for(n, istep, fstep, mags)
    istep = istep or math.min(30, math.floor(math.log(n)/math.log(2))-6)
    fstep = fstep or 11
    g.setstep(istep)
    if mags then
        magindex = 1
        currmag = mags[magindex]
        g.setmag(currmag)
        magindex = magindex + 1
    end
    
    while n > 0 do
        if (istep > fstep) and (n/(2^istep) < 4) then
            istep = istep - 4
            g.setstep(istep)
            if mags and magindex <= #mags then
                currmag = smoothmag(currmag, mags[magindex])
                magindex = magindex + 1
            end
        end
        n = n - (2^istep)
        g.step()
    end
end

g.show("Fast-forwarding to first collision of gliders from GPSEs...")
run_for(number * 4 + 1280, 30, 6, {-30, -25, -20, -15, -10, -5, 0})
run_for(2560, 6, 6)
g.show("Fast-forwarding to first bit-reading gliders...")
run_for(number * 6 + 40000, 30)
g.show("Transform the initial crash site into a usable blinker elbow")
run_for(16580608)
g.setmag(-2)
g.setpos("768", "-768")
g.show("Move the blinker elbow far to the northeast")
run_for(1038090240)
g.setmag(-2)
g.setpos("768", "-1536")
g.show("Position some blocks in useful locations")
run_for(657850368)
g.show("Construct the decoder and better construction arm (DBCA)")
run_for(81722277888)
g.show("Launch a Corderrake to activate the meteor shower seed and pass control to the DBCA")
run_for(105840640)
g.show("Initialise DBCA and position construction elbow")
run_for(13303808)
g.setmag(0)
g.setpos("0", "0")
g.show("The DBCA removes the pi explosion")
run_for(7667712)
g.setmag(-2)
g.setpos("768", "-1536")
g.show("The DBCA constructs some switching circuitry")
run_for(404029440)
g.setpos("1024", "0")
g.show("The DBCA constructs the extreme compression construction arm (ECCA)")
run_for(10528358400)
g.setpos("1024", "-1024")
g.show("The DBCA constructs some additional switching circuitry and jumps southeast")
run_for(172228608)
g.show("The DBCA constructs a BSRD and some Corderabsorbers in the far south-east")
run_for(1389035520)
g.setpos("768", "-1536")
g.show("The last glider-emission instruction activates switching circuitry to redirect future bits to the BSRD")
run_for(589824)
g.setmag(0)
g.setpos("1024", "-1024")
g.show("The p8 reflectors are activated and subsequent gliders are rerouted to the BSRD")
run_for(780353814528)
g.setmag(-2)
g.setpos("195435859968", "195435859968")
g.show("The BSRD and Corderabsorbers commence construction in the far south-east")
run_for(1389625344)
g.setmag(-3)
g.setpos("195435860736", "195435859200")
g.show("The BSRD in the far south-east begins reflecting gliders")
run_for(196608)
g.setmag(-4)
g.setpos("195435860736", "195435859200")
g.show("The BSRD continues reflecting gliders (grab a coffee and come back in 15 minutes; we will wait for you)")
run_for(13113229312)
g.note("The BSRD finishes reflecting gliders! Press OK when ready", false_literal)
g.setmag(-30)
g.show("The recipe returns from the BSRD to the ECCA")
run_for(768630145024)
g.setmag(-2)
g.setpos("1024", "0")
g.show("The ECCA reflects the first glider back to destroy the BSRD")
run_for(65536)
g.setmag(-3)
g.setpos("512", "-1024")
g.show("The ECCA destroys the remnants of the DBCA")
run_for(250347520)
g.show("The ECCA fires a glider to switch the direction of subsequent gliders")
run_for(11730944)
g.setmag(0)
g.setpos("0", "0")
g.show("The ECCA eliminates ash from the GPSE collision")
run_for(41680896)
g.show("The ECCA builds an elbow in the far northwest")
run_for(50331648)
g.setmag(0)
g.show("The ECCA launches a salvo of Corderships to clean the south-east trail")
run_for(3425239040)
g.show("The ECCA builds some Corderabsorbers in the far south-west")
run_for(1643511808)
g.setmag(-2)
g.show("The ECCA launches a salvo of Corderships to clean the south-west trail")
run_for(1363542016)
g.show("The ECCA launches a salvo of Corderships to clean the north-west trail")
run_for(1968111616)
g.show("The ECCA prepares circuitry to destroy its own elbow")
run_for(20709376)
g.show("The ECCA builds a seed for the ATBC")
run_for(3812425728)
g.show("The ECCA constructs Corderabsorbers in the far north-west")
run_for(525205504)
g.show("The ECCA returns to a known state for self-destruction")
run_for(393216)
g.setmag(-30)
g.show("The Corderships embark on their journey to clean up the ash trails")
run_for(772409540608)
g.setmag(0)
g.setpos("-195435859568", "195435859568")
g.show("The Corderabsorbers commence construction using slow^2 gliders")
run_for(1643511808)
g.show("The Corderabsorbers are fully complete")
run_for(7164788736)
g.setmag(-2)
g.setpos("-195435859968", "-195435859968")
g.show("The Corderabsorbers commence construction in the far north-west")
run_for(525205504)
g.setmag(-30)
g.setpos("0", "0")
g.show("The Corderships continue cleaning the ash trails")
run_for(1550728134656)
g.setmag(-2)
g.setpos("195435859968", "195435859968")
g.show("The Corderships begin colliding with the SE Corderabsorbers")
run_for(3425239040)
g.show("The Corderships have finished colliding with the SE Corderabsorbers")
run_for(1643511808)
g.setpos("-195435859968", "195435859968")
g.show("The Corderships begin colliding with the SW Corderabsorbers")
run_for(1363542016)
g.setmag(-2)
g.setpos("-195435859968", "-195435859968")
g.show("The Corderships begin colliding with the NW Corderabsorbers")
run_for(1968111616)
g.setmag(-30)
g.show("The last NW Cordership sends a return signal back to destroy the ECCA")
run_for(779775328256)
g.setmag(-2)
g.setpos("1024", "0")
g.show("The ECCA awaits the return glider before self-destructing and emitting an MWSS")
run_for(1968111616)
g.setmag(-3)
g.setpos("0", "0")
g.show("The MWSS triggers the ATBC seed")
This version of RCT was obtained by taking a 'path of least resistance' from RCT16, i.e. modifying as few things as possible to reach target. The most glaring example is at the start: In RCT15 the elbow is first pushed quite far, and then it is retracted back to the start to build something. That's because in RCT16 the elbow started all the way back, and it was necessary to pull it. And the easiest way to adapt RCT15 with its fixed elbow position was to just push the elbow to the same starting point as it was in RCT16.

There are some plans to do optimizations that would reduce total cost from ~1.6M bits to ~1.5M bits, or about 5-10%. These are not specific to RCT15, but it seems pointless to do any work on RCT16 now.

User avatar
Hippo.69
Posts: 271
Joined: July 14th, 2020, 7:35 pm

Re: RCT remaining tasks

Post by Hippo.69 » December 11th, 2022, 10:52 am

Pavgran wrote:
November 15th, 2022, 3:05 pm
Lua viewer script:
This version of RCT was obtained by taking a 'path of least resistance' from RCT16, i.e. modifying as few things as possible to reach target. The most glaring example is at the start: In RCT15 the elbow is first pushed quite far, and then it is retracted back to the start to build something. That's because in RCT16 the elbow started all the way back, and it was necessary to pull it. And the easiest way to adapt RCT15 with its fixed elbow position was to just push the elbow to the same starting point as it was in RCT16.

There are some plans to do optimizations that would reduce total cost from ~1.6M bits to ~1.5M bits, or about 5-10%. These are not specific to RCT15, but it seems pointless to do any work on RCT16 now.
I have made few changes in lua viewer script ... now you can stop the script run it at your will and restart from current position.
I had to change duration to duration+end format, what allows adding new checkpoints ... let one of the parameters nil and script tels you what to fill. (English in comments could definitely be improved...)

Code: Select all

local number = 195435859872
local showtext = ""
local g = golly()

g.setbase(2)
g.setpos("0","0")
local bn = require "../gplus.bignum"

local false_literal = false
local true_literal = true
local startGen = g.getgen()
local bnZero = BigNum.new(0)
g.autoupdate(true_literal)

local function smoothmag(imag, fmag)
    while imag ~= fmag do
        if imag < fmag then
            imag = imag + 1
        else
            imag = imag - 1
        end
        g.setmag(imag)
        g.sleep(200)
    end
    return imag
end

local function run_for_to(n, targetgen, istep, fstep, mags)
    local bnGen=BigNum.new(g.getgen())
    local bnEnterGen=bnGen
    local bnTargetGen
    local bnN
    local magindex
    fstep = fstep or 11
    if (targetgen == nil) and (n == nil) then
        g.note(showtext.." - run_for_to with unknown duration")
        return
    end
    if targetgen ~= nil then
    	  bnTargetGen = BigNum.new(targetgen)
    end
    if n ~= nil then
        bnN = BigNum.new(n)
    end
    if (targetgen ~= nil) and (n ~= nil) then
       if bnN+bnGen ~= bnTargetGen  then
          if startGen > bnTargetGen then return end -- skipping milestones to restart
          if startGen + bnN < bnTargetGen then -- must be script error
          	g.note(showtext.." - run_for_to for not matching to"..BigNum.mt.tostring(bnGen).." + "..BigNum.mt.tostring(bnN).."->"..BigNum.mt.tostring(bnTargetGen))
          	return
          else
    		--g.note(showtext.." : "..BigNum.mt.tostring(bnGen).." + "..BigNum.mt.tostring(bnN).."->"..BigNum.mt.tostring(bnTargetGen).." running to first milestone after restart")
            bnN = bnTargetGen - bnGen
            fstep = 0
          end
       end
    end
    if (n==nil) then -- helper for editting
	bnN = bnTargetGen - bnGen 
      --g.note(showtext.." : "..BigNum.mt.tostring(bnGen).." + "..BigNum.mt.tostring(bnN).."->"..BigNum.mt.tostring(bnTargetGen))
    end
    if (targetgen == nil) then -- helper for editting
      bnTargetGen = bnN + bnGen
      g.note(showtext.." : "..BigNum.mt.tostring(bnGen).." + "..BigNum.mt.tostring(bnN).."->"..BigNum.mt.tostring(bnTargetGen))
    end
    local sTargetGen = BigNum.mt.tostring(bnTargetGen)
    if bnN<=0 then return end
    local nn=BigNum.mt.tostring(bnN)
    istep = istep or math.min(30, math.floor(math.log(nn)/math.log(2))-6)
    local cstep = g.getstep()
    if cstep<fstep then cstep = fstep end
    if cstep>istep then cstep = istep end
    if mags then
        magindex = 1
        currmag = mags[magindex]
        g.setmag(currmag)
        magindex = magindex + 1
    end
    local bn3Eistep = BigNum.new(3*2^istep)
    g.setstep(cstep)
    while bnN > bnZero do
        g.show(showtext.." : "..BigNum.mt.tostring(bnN).."->"..BigNum.mt.tostring(bnTargetGen).." i"..istep.." f"..fstep)

        if (istep > fstep) and (bnN < bn3Eistep) then
            istep = istep - 2
            if istep < 0 then istep = 0 end
            bn3Eistep = BigNum.new(3*2^istep)
            cstep = istep
            if mags and magindex <= #mags then
                currmag = smoothmag(currmag, mags[magindex])
                magindex = magindex + 1
            end
            g.setstep(cstep)
        end
        g.step()
        bnGen=BigNum.new(g.getgen())
        bnN = bnTargetGen - bnGen
        cstep = g.getstep()
        if (cstep<istep) then -- owerwriting manual slowdown
          cstep = cstep+1
          g.setstep(cstep)
        end
        if (cstep>istep) then -- owerwriting manual speedup
          cstep = cstep-1
          g.setstep(cstep)
        end
    end
    if n==nil then
      bnN=bnGen-bnEnterGen
      g.note(showtext.." final generation: "..BigNum.mt.tostring(bnEnterGen).." + "..BigNum.mt.tostring(bnN).."->"..BigNum.mt.tostring(bnGen))
    end
end

showtext="Fast-forwarding to first collision of gliders from GPSEs..."
run_for_to("781743440768", "781743440768", 30, 6, {-30, -26, -23, -20, -18, -16, -14, -12, -10, -8, -6, -4, -2})
showtext="Note the gliders going  from the center..."
run_for_to("1546", "781743442314", 4, 4, {0})
showtext="Fast-forwarding to first bit-reading gliders..."
run_for_to("1172615157952", "1954358600272",30, 6, {-2})
showtext="Note the gliders going  from the center ..."
run_for_to("2048","1954358602320", 4, 4, {0})
showtext="Transform the initial crash site into a usable (inserted bits speeded up sloooo ooowly returning gliders) blinker elbow"
run_for_to("16621568", "1954375223888")
g.setpos("768", "-768")
showtext="Move the blinker elbow a bit to the northeast to make room for construction arms"
run_for_to("1038089520","1955413313408", nil, nil, {-2})
g.setpos("768", "-1536")
showtext="Position some blocks in useful locations"
run_for_to(653883392,"1956067197520",nil,nil,{-2})
run_for_to("4480","1956067202000", 6, 6)
run_for_to("3962880","1956071164880",nil,nil,{-2})
showtext="Construct the decoder and better construction arm (DBCA)"
run_for_to("81722276800","2037793441680",30,6)
showtext="Launch a Corderrake to activate the meteor shower seed and pass control to the DBCA"
run_for_to("105840640","2037899282320",nil,6)
showtext="Initialise DBCA and position construction elbow"
run_for_to("13303808","2037912586128")
g.setpos("0", "0")
showtext="The DBCA removes the pi explosion"
run_for_to("7667712","2037920253840",nil, 6, {0})
g.setpos("768", "-1536")
showtext="The DBCA constructs some switching circuitry and lounches first glider far SE"
run_for_to("12374000","2037932627840",14,4,{-2})
g.setpos("0", "0")
showtext="The DBCA lounches third glider far SE to make one time reflector"
run_for_to("5302784","2037937930624",nil,6,{0})
run_for_to("992","2037937931616",3,3)
g.setpos("1024", "0")
showtext="The DBCA constructs some switching circuitry"
run_for_to("386351648","2038324283264",nil,5,{-2})
showtext="The DBCA constructs the extreme compression construction arm (ECCA)"
run_for_to("10528358400","2048852641664")
g.setpos("1024", "-1024")
showtext="The DBCA constructs some additional switching circuitry and jumps southeast"
run_for_to("172052480","2049024694144",nil,6,{-2})
showtext="Notice one glider phase and color will emit gliders, which are counted by the circuitry trash"
run_for_to("36864","2049024731008",6,6)
showtext="The DBCA constructs a BSRD and some Corderabsorbers in the far south-east"
run_for_to("1389174784","2050413905792",30,6)
g.setpos("768", "-1536")
showtext="The trash is gone and the last glider-emission activates switching circuitry to redirect future bits to the BSRD and closes DBCA"
run_for_to("557056","2050414462848",nil,6)
run_for_to("32768","2050414495616",6,6)
showtext="The p8 reflectors are activated and the 'few' remaining gliders are rerouted to the BSRD"
run_for_to("753664","2050415249280")
showtext="Remaining bits generated"
g.setpos("0", "0")
run_for_to("294815055872","2345230305152",nil,6,{-4, -4, -4, -4, -4, -4, -3})
run_for_to("20480","2345230325632",5,5,{-2})
showtext="Now we wait for recepies to reach far SE (creating reflectors and corder absorbers)"
run_for_to("89524727808","2434755053440")
g.setpos("195435860019", "195435859863")
showtext="SE one time reflector is almost created"
run_for_to("384920715264","2819675768704",nil,nil,{0})
showtext="SE one time reflector is created"
run_for_to("11534336","2819687303040",nil,6)
showtext="The DBCA jump to far SE arrives"
run_for_to("11080855040","2830768158080",nil,6)
g.setpos("195435859968", "195435859968")
showtext="The BSRD and Corderabsorbers commence construction in the far south-east"
run_for_to("8092","2830768166172",8,8,{-3})
run_for_to("1456288256","2832224454528")
g.setpos("195435860736", "195435859200")
showtext="The BSRD in the far south-east begins reflecting gliders"
run_for_to("196096","2832224651136",nil,6,{-3})
g.setpos("195435860736", "195435859200")
showtext="The BSRD continues reflecting gliders (grab a coffee and come back in 15 minutes; we will wait for you)"
run_for_to("13113229312","2845337880448",25,nil,{-4})
showtext="The recipe returns from the BSRD to the ECCA"
run_for_to("768630145024","3613968025472",nil,nil,{-30})
g.note("Gliders reaching ECCA! Press OK when ready", false_literal)
g.setpos("1024", "0")
showtext="The ECCA reflects the first glider back to destroy the BSRD"
run_for_to("65536","3613968091008",nil,nil,{-2})
g.setpos("512", "-1024")
showtext="The ECCA destroys the remnants of the DBCA"
run_for_to("250347520","3614218438528",nil,nil,{-3})
showtext="The ECCA fires a glider to switch the direction of subsequent gliders"
run_for_to("11730944", "3614230169472")
g.setpos("0", "0")
showtext="The ECCA eliminates ash from the GPSE collision"
run_for_to("41680896","3614271850368",nil,nil,{0})
showtext="The ECCA builds an elbow in the far northwest"
run_for_to("50331648","3614322182016")
showtext="The ECCA launches a salvo of Corderships to clean the south-east trail"
run_for_to("3425239040","3617747421056",nil,nil,{0})
showtext="The ECCA builds some Corderabsorbers in the far south-west"
run_for_to("1643511808","3619390932864")
showtext="The ECCA launches a salvo of Corderships to clean the south-west trail"
run_for_to("1363542016","3620754474880",nil,nil,{-2})
showtext="The ECCA launches a salvo of Corderships to clean the north-west trail"
run_for_to("1968111616","3622722586496")
showtext="The ECCA prepares circuitry to destroy its own elbow"
run_for_to("20709376","3622743295872")
showtext="The ECCA builds a seed for the ATBC"
run_for_to("3812425728","3626555721600")
showtext="The ECCA constructs Corderabsorbers in the far north-west"
run_for_to("525205504","3627080927104")
showtext="The ECCA returns to a known state for self-destruction"
run_for_to("393216","3627081320320")
showtext="The Corderships embark on their journey to clean up the ash trails"
run_for_to("772409540608","4399490860928",nil,nil,{-30})
g.setpos("-195435859568", "195435859568")
showtext="The Corderabsorbers commence construction using slow^2 gliders"
run_for_to("1643511808","4401134372736",nil,nil,{0})
showtext="The Corderabsorbers are fully complete"
run_for_to("7164788736","4408299161472")
g.setpos("-195435859968", "-195435859968")
showtext="The Corderabsorbers commence construction in the far north-west"
run_for_to("525205504","4408824366976",nil,nil,{-2})
g.setpos("0", "0")
showtext="The Corderships continue cleaning the ash trails"
run_for_to("1550728134656","5959552501632",nil,nil,{-30})
g.setpos("195435859968", "195435859968")
showtext="The Corderships begin colliding with the SE Corderabsorbers"
run_for_to("3425239040","5962977740672",nil,nil,{-2})
showtext="The Corderships have finished colliding with the SE Corderabsorbers"
run_for_to("1643511808","5964621252480", nil, nil, {-13})
g.setpos("-195435859968", "195435859968")
showtext="The Corderships begin colliding with the SW Corderabsorbers"
run_for_to("1363542016","5965984794496", nil, nil, {-13})
g.setpos("-195435860365", "-195435860351")
showtext="The Corderships begin colliding with the NW Corderabsorbers"
run_for_to("1901569536","5967886364032",nil, 6, {-13, -13, -13, -10, -8, -6, -4, -2, -1})
run_for_to("2464","5967886366496",2,2)
g.setpos("-195435860000", "-195435860800")
showtext="The last NW Cordership sends a return signal back to destroy the ECCA"
run_for_to("3656","5967886370152",2,2,{-2})
showtext="The ECCA awaits the return glider before self-destructing and emitting an MWSS"
g.setpos("768", "0")
run_for_to("781743439552", "6749629809704", 30, 6,{-30, -28, -26, -24, -22, -20, -18, -16, -14, -12, -10, -8, -6, -4})
showtext="The MWSS triggers the ATBC seed"
run_for_to("30296","6749629840000",0,0,{-1})
I had to find some bignum library, but the one I have downloaded was buggy in tostring, so I have made small changes (and removed some not needed parts) ... it should work with any unbuggy bignum library.

Code: Select all

--%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%{{{1
--
--  File Name:              bignum.lua
--  Package Name:           BigNum 
--
--  Project:    Big Numbers library for Lua
--  Mantainers: fmp - Frederico Macedo Pessoa
--              msm - Marco Serpa Molinaro
--              vm  - Vladan Majerech
--
--  History:
--     Version      Autor       Date            Notes
--      2.0      vm         12/11/2022   Edited for personal needs (just +,-,<,=,>,tostring) bug fixing tostring
--      1.1      fmp/msm    12/11/2004   Some bug fixes (thanks Isaac Gouy)
--      alfa     fmp/msm    03/22/2003   Start of Development
--      beta     fmp/msm    07/11/2003   Release
--
--  Description:
--    Big numbers manipulation library for Lua.
--    A Big Number is a table with as many numbers as necessary to represent
--       its value in base 'RADIX'. It has a field 'len' containing the num-
--       ber of such numbers and a field 'signal' that may assume the values
--       '+' and '-'.
--
--$.%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%


--%%%%%%%%  Constants used in the file %%%%%%%%--{{{1
   RADIX_LEN = 6 ;
   RADIX_FIL = "000000" ; -- length >= RADIX_LEN
   RADIX = 10^RADIX_LEN ;

--%%%%%%%%        Start of Code        %%%%%%%%--

BigNum = {} ;
BigNum.mt = {} ;


--BigNum.new{{{1
--%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
--
--  Function: New 
--
--
--  Description:
--     Creates a new Big Number based on the parameter num.
--
--  Parameters:
--     num - a string, number or BigNumber.
--
--  Returns:
--     A Big Number, or a nil value if an error occured.
--
--
--  %%%%%%%% --

function BigNum.new( num ) --{{{2
   local bignum = {} ;
   setmetatable( bignum , BigNum.mt ) ;
   BigNum.change( bignum , num ) ;
   return bignum ;
end

--%%%%%%%%%%%%%%%%%%%% Functions for metatable %%%%%%%%%%%%%%%%%%%%--{{{1
--BigNum.mt.sub{{{2
function BigNum.mt.sub( num1 , num2 )
   local temp = BigNum.new() ;
   local bnum1 = BigNum.new( num1 ) ;
   local bnum2 = BigNum.new( num2 ) ;
   BigNum.sub( bnum1 , bnum2 , temp ) ;
   return temp ;
end

--BigNum.mt.add{{{2
function BigNum.mt.add( num1 , num2 )
   local temp = BigNum.new() ;
   local bnum1 = BigNum.new( num1 ) ;
   local bnum2 = BigNum.new( num2 ) ;
   BigNum.add( bnum1 , bnum2 , temp ) ;
   return temp ;
end

--BigNum.mt.tostring{{{2
function BigNum.mt.tostring( bnum )
   local i = 0
   local j
   local temp = ""
   local str
   local dotpos
   if bnum == nil then
      return "nil"
   elseif bnum.len > 0 then
      for i = bnum.len - 2 , 0 , -1  do
         str = tostring(bnum[i])
         dotpos = string.find(str..".","%.") 
         temp = temp .. string.sub(RADIX_FIL..string.sub(str,1,dotpos-1),-RADIX_LEN)
      end
      str = tostring(bnum[bnum.len - 1])
      dotpos = string.find(str..".","%.")
      temp = string.sub(str,1,dotpos-1) .. temp
      if bnum.signal == '-' then
         temp = bnum.signal .. temp
      end
      return temp
   else
      return ""
   end
end

--BigNum.mt.eq{{{2
function BigNum.mt.eq( num1 , num2 )
   local bnum1 = BigNum.new( num1 ) ;
   local bnum2 = BigNum.new( num2 ) ;
   return BigNum.eq( bnum1 , bnum2 ) ;
end

--BigNum.mt.lt{{{2
function BigNum.mt.lt( num1 , num2 )
   local bnum1 = BigNum.new( num1 ) ;
   local bnum2 = BigNum.new( num2 ) ;
   return BigNum.lt( bnum1 , bnum2 ) ;
end

--BigNum.mt.le{{{2
function BigNum.mt.le( num1 , num2 )
   local bnum1 = BigNum.new( num1 ) ;
   local bnum2 = BigNum.new( num2 ) ;
   return BigNum.le( bnum1 , bnum2 ) ;
end

--BigNum.mt.unm{{{2
function BigNum.mt.unm( num )
   local ret = BigNum.new( num )
   if ret.signal == '+' then
      ret.signal = '-'
   else
      ret.signal = '+'
   end
   return ret
end

--%%%%%%%%%%%%%%%%%%%% Metatable Definitions %%%%%%%%%%%%%%%%%%%%--{{{1

BigNum.mt.__metatable = "hidden"           ; -- answer to getmetatable(aBignum)
-- BigNum.mt.__index     = "inexistent field" ; -- attempt to acess nil valued field 
-- BigNum.mt.__newindex  = "not available"    ; -- attempt to create new field
BigNum.mt.__tostring  = BigNum.mt.tostring ;
-- arithmetics
BigNum.mt.__add = BigNum.mt.add ;
BigNum.mt.__sub = BigNum.mt.sub ;
BigNum.mt.__unm = BigNum.mt.unm ;
-- Comparisons
BigNum.mt.__eq = BigNum.mt.eq   ; 
BigNum.mt.__le = BigNum.mt.le   ;
BigNum.mt.__lt = BigNum.mt.lt   ;
--concatenation
-- BigNum.me.__concat = ???

setmetatable( BigNum.mt, { __index = "inexistent field", __newindex = "not available", __metatable="hidden" } ) ;

--%%%%%%%%%%%%%%%%%%%% Basic Functions %%%%%%%%%%%%%%%%%%%%--{{{1
--%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%{{{2
--
--  Function: ADD 
--
--
--  Description:
--     Adds two Big Numbers.
--
--  Parameters:
--     bnum1, bnum2 - Numbers to be added.
--     bnum3 - result
--
--  Returns:
--     0
--
--  Exit assertions:
--     bnum3 is the result of the sum.
--
--  %%%%%%%% --
--Funcao BigNum.add{{{2
function BigNum.add( bnum1 , bnum2 , bnum3 )
   local maxlen = 0 ;
   local i = 0 ;
   local carry = 0 ;
   local signal = '+' ;
   local old_len = 0 ;
   --Handle the signals
   if bnum1 == nil or bnum2 == nil or bnum3 == nil then
      error("Function BigNum.add: parameter nil") ;
   elseif bnum1.signal == '-' and bnum2.signal == '+' then
      bnum1.signal = '+' ;
      BigNum.sub( bnum2 , bnum1 , bnum3 ) ;

      if not rawequal(bnum1, bnum3) then
         bnum1.signal = '-' ;
      end
      return 0 ;
   elseif bnum1.signal == '+' and bnum2.signal == '-' then   
      bnum2.signal = '+' ;
      BigNum.sub( bnum1 , bnum2 , bnum3 ) ;
      if not rawequal(bnum2, bnum3) then
         bnum2.signal = '-' ;
      end
      return 0 ;
   elseif bnum1.signal == '-' and bnum2.signal == '-' then
      signal = '-' ;
   end
   --
   old_len = bnum3.len ;
   if bnum1.len > bnum2.len then
      maxlen = bnum1.len ;
   else
      maxlen = bnum2.len ;
      bnum1 , bnum2 = bnum2 , bnum1 ;
   end
   --School grade sum
   for i = 0 , maxlen - 1 do
      if bnum2[i] ~= nil then
         bnum3[i] = bnum1[i] + bnum2[i] + carry ;
      else
         bnum3[i] = bnum1[i] + carry ;
      end
      if bnum3[i] >= RADIX then
         bnum3[i] = bnum3[i] - RADIX ;
         carry = 1 ;
      else
         carry = 0 ;
      end
   end
   --Update the answer's size
   if carry == 1 then
      bnum3[maxlen] = 1 ;
   end
   bnum3.len = maxlen + carry ;
   bnum3.signal = signal ;
   for i = bnum3.len, old_len do
      bnum3[i] = nil ;
   end
   return 0 ;
end


--%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%{{{2
--
--  Function: SUB 
--
--
--  Description:
--     Subtracts two Big Numbers.
--
--  Parameters:
--     bnum1, bnum2 - Numbers to be subtracted.
--     bnum3 - result
--
--  Returns:
--     0
--
--  Exit assertions:
--     bnum3 is the result of the subtraction.
--
--  %%%%%%%% --
--Funcao BigNum.sub{{{2
function BigNum.sub( bnum1 , bnum2 , bnum3 )
   local maxlen = 0 ;
   local i = 0 ;
   local carry = 0 ;
   local old_len = 0 ;
   --Handle the signals
   
   if bnum1 == nil or bnum2 == nil or bnum3 == nil then
      error("Function BigNum.sub: parameter nil") ;
   elseif bnum1.signal == '-' and bnum2.signal == '+' then
      bnum1.signal = '+' ;
      BigNum.add( bnum1 , bnum2 , bnum3 ) ;
      bnum3.signal = '-' ;
      if not rawequal(bnum1, bnum3) then
         bnum1.signal = '-' ;
      end
      return 0 ;
   elseif bnum1.signal == '-' and bnum2.signal == '-' then
      bnum1.signal = '+' ;
      bnum2.signal = '+' ;
      BigNum.sub( bnum2, bnum1 , bnum3 ) ;
      if not rawequal(bnum1, bnum3) then
         bnum1.signal = '-' ;
      end
      if not rawequal(bnum2, bnum3) then
         bnum2.signal = '-' ;
      end
      return 0 ;
   elseif bnum1.signal == '+' and bnum2.signal == '-' then
      bnum2.signal = '+' ;
      BigNum.add( bnum1 , bnum2 , bnum3 ) ;
      if not rawequal(bnum2, bnum3) then
         bnum2.signal = '-' ;
      end
      return 0 ;
   end
   --Tests if bnum2 > bnum1
   if BigNum.compareAbs( bnum1 , bnum2 ) == 2 then
      BigNum.sub( bnum2 , bnum1 , bnum3 ) ;
      bnum3.signal = '-' ;
      return 0 ;
   else
      maxlen = bnum1.len ;
   end
   old_len = bnum3.len ;
   bnum3.len = 0 ;
   --School grade subtraction
   for i = 0 , maxlen - 1 do
      if bnum2[i] ~= nil then
         bnum3[i] = bnum1[i] - bnum2[i] - carry ;
      else
         bnum3[i] = bnum1[i] - carry ;
      end
      if bnum3[i] < 0 then
         bnum3[i] = RADIX + bnum3[i] ;
         carry = 1 ;
      else
         carry = 0 ;
      end

      if bnum3[i] ~= 0 then
         bnum3.len = i + 1 ;
      end
   end
   bnum3.signal = '+' ;
   --Check if answer's size if zero
   if bnum3.len == 0 then
      bnum3.len = 1 ;
      bnum3[0]  = 0 ;
   end
   if carry == 1 then
      error( "Error in function sub" ) ;
   end
   for i = bnum3.len , max( old_len , maxlen - 1 ) do
      bnum3[i] = nil ;
   end
   return 0 ;
end


--%%%%%%%%%%%%%%%%%%%% Comparison Functions %%%%%%%%%%%%%%%%%%%%--{{{1
--%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%{{{2
--
--  Function: EQ
--
--
--  Description:
--     Compares two Big Numbers.
--
--  Parameters:
--     bnum1, bnum2 - numbers
--
--  Returns:
--     Returns true if they are equal or false otherwise.
--
--  %%%%%%%% --
--BigNum.eq{{{2
function BigNum.eq( bnum1 , bnum2 )
   if BigNum.compare( bnum1 , bnum2 ) == 0 then
      return true ;
   else
      return false ;
   end
end

--%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%{{{2
--
--  Function: LT
--
--
--  Description:
--     Verifies if bnum1 is lesser than bnum2.
--
--  Parameters:
--     bnum1, bnum2 - numbers
--
--  Returns:
--     Returns true if bnum1 is lesser than bnum2 or false otherwise.
--
--  %%%%%%%% --
--BigNum.lt{{{2
function BigNum.lt( bnum1 , bnum2 )
   if BigNum.compare( bnum1 , bnum2 ) == 2 then
      return true ;
   else
      return false ;
   end
end


--%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%{{{2
--
--  Function: LE
--
--
--  Description:
--     Verifies if bnum1 is lesser or equal than bnum2.
--
--  Parameters:
--     bnum1, bnum2 - numbers
--
--  Returns:
--     Returns true if bnum1 is lesser or equal than bnum2 or false otherwise.
--
--  %%%%%%%% --
--BigNum.le{{{2
function BigNum.le( bnum1 , bnum2 )
   local temp = -1 ;
   temp = BigNum.compare( bnum1 , bnum2 )
   if temp == 0 or temp == 2 then
      return true ;
   else
      return false ;
   end
end

--%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%{{{2
--
--  Function: Compare Absolute Values
--
--
--  Description:
--     Compares absolute values of bnum1 and bnum2.
--
--  Parameters:
--     bnum1, bnum2 - numbers
--
--  Returns:
--     1 - |bnum1| > |bnum2|
--     2 - |bnum1| < |bnum2|
--     0 - |bnum1| = |bnum2|
--
--  %%%%%%%% --
--BigNum.compareAbs{{{2
function BigNum.compareAbs( bnum1 , bnum2 )
   if bnum1 == nil or bnum2 == nil then
      error("Function compare: parameter nil") ;
   elseif bnum1.len > bnum2.len then
      return 1 ;
   elseif bnum1.len < bnum2.len then
      return 2 ;
   else
      local i ;
      for i = bnum1.len - 1 , 0 , -1 do
         if bnum1[i] > bnum2[i] then
            return 1 ;
         elseif bnum1[i] < bnum2[i] then
            return 2 ;
         end
      end
   end
   return 0 ;
end


--%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%{{{2
--
--  Function: Compare 
--
--
--  Description:
--     Compares values of bnum1 and bnum2.
--
--  Parameters:
--     bnum1, bnum2 - numbers
--
--  Returns:
--     1 - |bnum1| > |bnum2|
--     2 - |bnum1| < |bnum2|
--     0 - |bnum1| = |bnum2|
--
--  %%%%%%%% --
--BigNum.compare{{{2
function BigNum.compare( bnum1 , bnum2 )
   local signal = 0 ;
   
   if bnum1 == nil or bnum2 == nil then
      error("Funtion BigNum.compare: parameter nil") ;
   elseif bnum1.signal == '+' and bnum2.signal == '-' then
      return 1 ;
   elseif bnum1.signal == '-' and bnum2.signal == '+' then
      return 2 ;
   elseif bnum1.signal == '-' and bnum2.signal == '-' then
      signal = 1 ;
   end
   if bnum1.len > bnum2.len then
      return 1 + signal ;
   elseif bnum1.len < bnum2.len then
      return 2 - signal ;
   else
      local i ;
      for i = bnum1.len - 1 , 0 , -1 do
         if bnum1[i] > bnum2[i] then
            return 1 + signal ;
	 elseif bnum1[i] < bnum2[i] then
	    return 2 - signal ;
	 end
      end
   end
   return 0 ;
end         


--%%%%%%%%%%%%%%%%%%%% Low level Functions %%%%%%%%%%%%%%%%%%%%--{{{1
--BigNum.copy{{{2
function BigNum.copy( bnum1 , bnum2 )
   if bnum1 ~= nil and bnum2 ~= nil then
      local i ;
      for i = 0 , bnum1.len - 1 do
         bnum2[i] = bnum1[i] ;
      end
      bnum2.len = bnum1.len ;
   else
      error("Function BigNum.copy: parameter nil") ;
   end
end


--%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%{{{2
--
--  Function: Change
--
--  Description:
--     Changes the value of a BigNum.
--     This function is called by BigNum.new.
--
--  Parameters:
--     bnum1, bnum2 - numbers
--
--  Returns:
--     1 - |bnum1| > |bnum2|
--     2 - |bnum1| < |bnum2|
--     0 - |bnum1| = |bnum2|
--
--  %%%%%%%% --
--BigNum.change{{{2
function BigNum.change( bnum1 , num )
   local j = 0 ;
   local len = 0  ;
   local num = num ;
   local l ;
   local oldLen = 0 ;
   if bnum1 == nil then
      error( "BigNum.change: parameter nil" ) ;
   elseif type( bnum1 ) ~= "table" then
      error( "BigNum.change: parameter error, type unexpected" ) ;
   elseif num == nil then
      bnum1.len = 1 ;
      bnum1[0] = 0 ;
      bnum1.signal = "+";
   elseif type( num ) == "table" and num.len ~= nil then  --check if num is a big number
      --copy given table to the new one
      for i = 0 , num.len do
         bnum1[i] = num[i] ;
      end
      if num.signal ~= '-' and num.signal ~= '+' then
         bnum1.signal = '+' ;
      else
         bnum1.signal = num.signal ;
      end
      oldLen = bnum1.len ;
      bnum1.len = num.len ;
   elseif type( num ) == "string" or type( num ) == "number" then
      if string.sub( num , 1 , 1 ) == '+' or string.sub( num , 1 , 1 ) == '-' then
         bnum1.signal = string.sub( num , 1 , 1 ) ;
         num = string.sub(num, 2) ;
      else
         bnum1.signal = '+' ;
      end
      num = string.gsub( num , " " , "" )
      local sf = string.find( num , "e" )
      --Handles if the number is in exp notation
      if sf ~= nil then
         local e = string.sub( num , sf + 1 )
         num = string.sub( num , 1 , sf - 1 )
         e = tonumber(e) ;
         if e ~= nil and e > 0 then 
            e = tonumber(e) ;
         else
            error( "Function BigNum.change: string is not a valid number" ) ;
         end
         local dotpos=string.find(num..".","%.")
         num = string.gsub( num , "%." , "" )
         local dotshift = string.len(num)+1-dotpos
         for i = 1 , e do
            num = num .. "0"
         end
         if dotshift>0 then num = string.sub(num,1,-dotshift-1) end
      else
         sf = string.find( num , "%." ) ;
         if sf ~= nil then
            num = string.sub( num , 1 , sf - 1 ) ;
         end
      end

      l = string.len( num ) ;
      oldLen = bnum1.len ;
      if (l > RADIX_LEN) then
         local mod = l-( math.floor( l / RADIX_LEN ) * RADIX_LEN ) ;
         for i = 1 , l-mod, RADIX_LEN do
            bnum1[j] = tonumber( string.sub( num, -( i + RADIX_LEN - 1 ) , -i ) );
            --Check if string dosn't represents a number
            if bnum1[j] == nil then
               error( "Function BigNum.change: string is not a valid number" ) ;
               bnum1.len = 0 ;
               return 1 ;
            end
            j = j + 1 ; 
            len = len + 1 ;
         end
         if (mod ~= 0) then
            bnum1[j] = tonumber( string.sub( num , 1 , mod ) ) ;
            bnum1.len = len + 1 ;
         else
            bnum1.len = len ;            
         end
         --Eliminate trailing zeros
         for i = bnum1.len - 1 , 1 , -1 do
            if bnum1[i] == 0 then
               bnum1[i] = nil ;
               bnum1.len = bnum1.len - 1 ;
            else
               break ;
            end
         end
         
      else     
         -- string.len(num) <= RADIX_LEN
         bnum1[j] = tonumber( num ) ;
         bnum1.len = 1 ;
      end
   else
      error( "Function BigNum.change: parameter error, type unexpected" ) ;
   end

   --eliminates the deprecated higher order 'algarisms'
   if oldLen ~= nil then
      for i = bnum1.len , oldLen do
         bnum1[i] = nil ;
      end
   end

   return 0 ;
end 

--BigNum.put{{{2
--Places int in the position pos of bignum, fills before with zeroes and
--after with nil.
function BigNum.put( bnum , int , pos )
   if bnum == nil then
      error("Function BigNum.put: parameter nil") ;
   end
   local i = 0 ;
   for i = 0 , pos - 1 do
      bnum[i] = 0 ;
   end
   bnum[pos] = int ;
   for i = pos + 1 , bnum.len do
      bnum[i] = nil ;
   end
   bnum.len = pos ;
   return 0 ;
end

--printraw{{{2
function printraw( bnum )
   local i = 0 ;
   if bnum == nil then
      error( "Function printraw: parameter nil" ) ;
   end
   while 1 == 1 do
      if bnum[i] == nil then
         io.write( ' len '..bnum.len ) ;
         if i ~= bnum.len then
            io.write( ' ERRO!!!!!!!!' ) ;
         end
         io.write( "\n" ) ;
         return 0 ;
      end
      io.write( 'r'..bnum[i] ) ;
      i = i + 1 ;
   end
end
--max{{{2
function max( int1 , int2 )
   if int1 > int2 then
      return int1 ;
   else
      return int2 ;
   end
end

--decr{{{2
function decr( bnum1 )
   local temp = {} ;
   temp = BigNum.new( "1" ) ;
   BigNum.sub( bnum1 , temp , bnum1 ) ;
   return 0 ;
end
If some of my DBCA versions would replace current DBCA, the delaying trash counting gliders (N gliders absorber) of one color and phase should be either roughly twice prolonged, as in my version it would count all gliders of that color. Or ... the p256 filtering stream should be used to filter one of phases out.
I bet changing the trash counter would be much cheaper.

BTW: I do not know why (on my comp) the cofee waiting phase is slower when run with 2^{30} steps. This is why I have forced 2^{25}. Surprisingly following phases are fine with 2^{30}.

To make the script adjustable, eon units should be introduced (number?)... added parameter ... number of duration eons and global variable current eon.
For editting purposes nil, target generation is good input, which should be translated to generation raletive to current eon when in duration+target format.
So ... nil, targetGeneration,..., (target eon increment) / duration, nil,...., (target eon increment) / duration, target generation in target eon, ...., (target eon increment) will be used. Hmmm, another todo.

User avatar
toroidalet
Posts: 1514
Joined: August 7th, 2016, 1:48 pm
Location: My computer
Contact:

Re: RCT remaining tasks

Post by toroidalet » December 20th, 2022, 3:14 am

What's the smallest population that an RCT can be? Here is a first attempt with 54 cells:

Code: Select all

x = 7201, y = 7334, rule = B3/S23
6b3o$17bo2$18b2o$20bo$21b2o$22b2o$21b2o$23bo3490$3817b3o3517$7200bo$
7200bo$7200bo6$7185bo$7185b4o$7185bo3bo2$7187b3o186$16bo$15bo$14b2o$
12bo2bo$12bobo$13bo2$3o97$81bo$78b3o$77bobo$76bo$77b2o10$74bo$74bo$74b
o!
Currently, it does not work. If the second bit makes a single glider instead, it produces a probably-usable explosion (if not, you can replace it with a preblock).
Also, the first southeast glider produced by the reverse caber-tossing escapes, which could be avoided with a different GPSE predecessor. For timing reasons, it is a different predecessor from the northwest (the southwest ones can be either, since you can adjust them by 4n).

It is possible to use the aperiodic ash of the GPSE predecessor in the northwest and southwest:

Code: Select all

x = 247, y = 221, rule = B3/S23
244bobo$244b2o$245bo202$4bobo$7bo$3bo2bo$2b3o11$o$o$o!
There are some GPSE producers that release additional gliders in the right direction, like this one (with the same timing as the one above):

Code: Select all

x = 27, y = 37, rule = B3/S23
6$18bobo$21bo$17bo2bo$16b3o17$9bo$9bo$9bo!
This should make a small sawtooth and SKOP_n for very large n (for a sawtooth, make it an extremely high-period gun shooting the fleet from logarithmic_width.mc; for an adjustable oscillator, move the blinker further back)
Any sufficiently advanced software is indistinguishable from malice.

Post Reply