Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Halloween Game - Part 1
#21
Yeah looks good to me too, maybe some glowing Pumpkin eyes and nose for that middle hill with grave yard for hair. That would break up all that black as well.

Pinball!! Yeah I tried that earlier this year, I used line intersect circle on flippers. No joy when ball is moving down faster and faster by gravity and the flipper moves up almost instantly, oft times the ball seems to go through the flipper between loop checks for collision.
  724  855  599  923  575  468  400  206  147  564  878  823  652  556 bxor cross forever
Reply
#22
(09-13-2025, 09:39 PM)bplus Wrote:
Quote:but as bplus came up with the premise, i'll leave it to him to decide the final product.

Well in the Happy Easter thread I became very curious what people might do with the idea of Harvesting some Isometric Candy Corn. 

Good luck with that! LOL

I remember @Dav (are you still checking in?) started a Game that did use a Candy Corn image. He threatened to come back and finsih it. Smile


Hi @bplus (and everyone else!).  I've been away from programming most of the all year.  A lot of life changes been going on.  Still trying to make it as a musician  Tongue  

Hope you have been well.   Yeah I think you helped me do a with flying through the candy corn thing, and I a few other little halloween games. I will have to dig them up and see.

Looks like I have a lot of threads to read and catch up on!

- Dav

Find my programs here in Dav's QB64 Corner
Reply
#23
hey @Dav! we did a candy corn thing already? I remember flying a witch through obstacles, I think, was candy corn involved also? That reminds me, I had an idea for growing candy corn!

dbox has an app started that makes it look like work, farmer work. I was thinking there might be an easier way.

Welcome back Dav Smile
  724  855  599  923  575  468  400  206  147  564  878  823  652  556 bxor cross forever
Reply
#24
do you mind posting some gameplay screenshots?
Reply
#25
Post away! 

This project seems to have died as fast as it was spawned! Shame though as i made the main menu epic! My last version had flashing lightning and thinder sound fx! 

side note : Halloweeeeeeeeeeeeeeeeeeeeen games....I will never finish this, but heres an idea of a Bat based flappy birds game...press space to make the bat go up


Code: (Select All)
'///////////////////////////////////////////////////////////////////////////////////////////////////////////////
RANDOMIZE TIMER
CONST Fall_Rate = .15, NumSpikes = 20, Lvl_Speed = 4.5, ScrnW& = 1024, ScrnH& = 660
DIM SHARED Bat AS LONG, Bat_y AS INTEGER, Bat_Frame AS _BYTE, GT#, AT#, DT#

SCREEN _NEWIMAGE(1024, 660, 32)
_SCREENMOVE 0, 0
Bat = Load_Sprite_Data
Bat_y = 300

TYPE Spike
  X AS INTEGER
  Height AS INTEGER
  Is_Floor AS _BYTE '// if true then is floor else is ceiling
  Visible AS _BYTE
END TYPE

DIM SHARED Spikes(1 TO NumSpikes) AS Spike
DIM SHARED Score AS LONG, Game_Over AS _BYTE


DO '///////////////////////////////////////////////////////////////////////////////////////////////////////////////
  GT# = TIMER(.001)
  _LIMIT 60

  IF _KEYDOWN(32) THEN Fall_Speed = -4 ELSE IF Fall_Speed < 10 THEN Fall_Speed = Fall_Speed + Fall_Rate
  IF Bat_y < 550 THEN Bat_y = Bat_y + Fall_Speed 'ELSE Bat_y = 560

  IF GT# - AT# > .2 THEN
    IF Bat_Frame < 3 THEN Bat_Frame = Bat_Frame + 1 ELSE Bat_Frame = 1
    AT# = GT#
  END IF

  IF GT# - st# > NextSpike THEN
    Spawn_Spike
    st# = GT#
    NextSpike = RND + .1
  END IF

  IF Check_Collision THEN Game_Over = 1 ELSE Score = Score + 1 ' increment score only if not game over

  CLS

  LINE (0, 600)-(1024, 600), _RGB32(110, 110, 210)
  LINE (0, 150)-(1024, 150), _RGB32(110, 110, 210)

  FOR i = 1 TO NumSpikes
    IF Spikes(i).Visible THEN
      IF Spikes(i).X < -20 THEN
        Spikes(i).Visible = 0
      ELSE
        Spikes(i).X = Spikes(i).X - Lvl_Speed
        IF Spikes(i).Is_Floor THEN
          LINE (Spikes(i).X - 10, 600)-(Spikes(i).X, 600 - Spikes(i).Height), _RGB32(120, 120, 220)
          LINE (Spikes(i).X + 10, 600)-(Spikes(i).X, 600 - Spikes(i).Height), _RGB32(120, 120, 220)
        ELSE
          LINE (Spikes(i).X - 10, 150)-(Spikes(i).X, 150 + Spikes(i).Height), _RGB32(120, 120, 220)
          LINE (Spikes(i).X + 10, 150)-(Spikes(i).X, 150 + Spikes(i).Height), _RGB32(120, 120, 220)
        END IF
      END IF
    END IF
  NEXT

  Draw_Sprite Bat, 200, Bat_y, Bat_Frame, 3

  LOCATE 1, 1: PRINT "Score: "; Score ' Display the score


  _DISPLAY

LOOP UNTIL INKEY$ = CHR$(27)

'///////////////////////////////////////////////////////////////////////////////////////////////////////////////

SUB Spawn_Spike
  FOR i = 1 TO NumSpikes
    IF Spikes(i).Visible = 0 THEN
      Spikes(i).Visible = 1
      Spikes(i).X = 1075
      Spikes(i).Height = INT(RND * 160) + 80 ' Random height
      IF INT(RND * 4) + 1 < 2 THEN Spikes(i).Is_Floor = 0 ELSE Spikes(i).Is_Floor = 1
      EXIT FOR
    END IF
  NEXT
END SUB

'///////////////////////////////////////////////////////////////////////////////////////////////////////////////

SUB Restart_game
  ' Reset player variables
  Bat_y = 330 ' Set the bat to a starting y position
  Fall_Speed = 0 ' Stop any initial movement
  Score = 0 ' Reset the player's score
  Game_Over = 0 ' Reset the game over flag

  ' Reset spikes array
  FOR i = 1 TO NumSpikes
    Spikes(i).Visible = 0 ' Make all spikes invisible
    Spikes(i).X = 0
    Spikes(i).Height = 0
    Spikes(i).Is_Floor = 0
  NEXT i

  ' Reset timers and spawn next spike quickly
  GT# = TIMER(.001)
  AT# = GT#
  st# = GT#
  NextSpike = 0 ' Set to 0 to spawn a spike immediately
END SUB

'///////////////////////////////////////////////////////////////////////////////////////////////////////////////

FUNCTION Load_Sprite_Data&
  READ w%, h%
  image& = _NEWIMAGE(w%, h%, 32)
  _DEST image&
  FOR y = 0 TO h%
    FOR x = 0 TO w%
      READ clr~&
      PSET (x, y), clr~&
    NEXT
  NEXT
  _DEST 0
  _CLEARCOLOR _RGB32(255, 0, 255), image&
  Load_Sprite_Data = image&
END FUNCTION

'///////////////////////////////////////////////////////////////////////////////////////////////////////////////

SUB Draw_Sprite (Image&, X%, y%, Frame%, XFrames%)
  Fw% = (_WIDTH(Image&) / XFrames%)
  Fs% = ((Frame% - 1) * Fw%)
  _PUTIMAGE (X%, y%), Image&, , (Fs%, 0)-(Fs% + Fw%, _HEIGHT(Image&))
END SUB

'///////////////////////////////////////////////////////////////////////////////////////////////////////////////

FUNCTION Check_Collision%%
  Fw% = (_WIDTH(Bat) / 3) ' Bat frame width
  batLeft = 200
  batRight = 200 + Fw%
  batTop = Bat_y
  batBottom = Bat_y + _HEIGHT(Bat)

  FOR i = 1 TO NumSpikes
    IF Spikes(i).Visible THEN
      spikeX = Spikes(i).X
      spikeHeight = Spikes(i).Height

      ' Simplified rectangular collision for demonstration
      ' Check for X-overlap
      IF batRight > (spikeX - 10) AND batLeft < (spikeX + 10) THEN
        ' Check for Y-overlap (for floor spikes)
        IF Spikes(i).Is_Floor AND batBottom > (600 - spikeHeight) THEN
          Check_Collision = 1 ' Collision detected
          EXIT FUNCTION
        END IF

        ' Check for Y-overlap (for ceiling spikes)
        IF NOT Spikes(i).Is_Floor AND batTop < (150 + spikeHeight) THEN
          Check_Collision = 1 ' Collision detected
          EXIT FUNCTION
        END IF
      END IF
    END IF
  NEXT

  ' Check for collision with ceiling and floor
  IF Bat_y < 150 OR Bat_y + _HEIGHT(Bat) > 600 THEN
    Check_Collision = 1 ' Collision detected with the world boundaries
    EXIT FUNCTION
  END IF

  Check_Collision = 0 ' No collision
END FUNCTION

'///////////////////////////////////////////////////////////////////////////////////////////////////////////////

DATA 183,51
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4284236655,4284236655,4282593107,4282593107,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4284236655,4284236655,4282593107,4282593107,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4284236655,4284236655,4290081457,4290081457,4290081457,4290081457,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4280096798,4280096798,4290081457,4290081457,4290081457,4290081457,4284236655,4284236655,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4284236655,4284236655,4290081457,4290081457,4290081457,4290081457,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4280096798,4280096798,4290081457,4290081457,4290081457,4290081457,4284236655,4284236655,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4284236655,4284236655,4290081457,4290081457,4290081457,4290081457,4290081457,4290081457,4290081457,4290081457,4284236655,4284236655,4284236655,4284236655,4286022818,4286022818,4280096798,4280096798,4284236655,4284236655,4286022818,4286022818,4282593107,4282593107,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4284440443,4284440443,4290081457,4290081457,4284236655,4284236655,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4284236655,4284236655,4290081457,4290081457,4290081457,4290081457,4290081457,4290081457,4290081457,4290081457,4284236655,4284236655,4284236655,4284236655,4286022818,4286022818,4280096798,4280096798,4284236655,4284236655,4286022818,4286022818,4282593107,4282593107,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4284440443,4284440443,4290081457,4290081457,4284236655,4284236655,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4284236655,4284236655,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4282593107,4282593107,4284236655,4284236655,4280096798,4280096798,4284236655,4284236655,4284236655,4284236655,4286022818,4286022818,4286022818,4286022818,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4282593107,4282593107,4290081457,4290081457,4284236655,4284236655,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4284236655,4284236655,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4282593107,4282593107,4284236655,4284236655,4280096798,4280096798,4284236655,4284236655,4284236655,4284236655,4286022818,4286022818,4286022818,4286022818,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4282593107,4282593107,4290081457,4290081457,4284236655,4284236655,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4280096798,4280096798,4282593107,4282593107,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4282593107,4282593107,4280096798,4280096798,4284236655,4284236655,4284440443,4284440443,4286022818,4286022818,4280096798,4280096798,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4284236655,4284236655,4286022818,4286022818,4282593107,4282593107,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4290081457,4290081457,4290081457,4290081457,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4280096798,4280096798,4282593107,4282593107,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4282593107,4282593107,4280096798,4280096798,4284236655,4284236655,4284440443,4284440443,4286022818,4286022818,4280096798,4280096798,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4284236655,4284236655,4286022818,4286022818,4282593107,4282593107,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4290081457,4290081457,4290081457,4290081457,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4280096798,4280096798,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4280096798,4280096798,4280096798,4280096798,4284440443,4284440443,4286022818,4286022818,4280096798,4280096798,4289593344,4289593344,4286022818,4286022818,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4284236655,4284236655,4284236655,4284236655,4286022818,4286022818,4286022818,4286022818,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4282593107,4282593107,4284236655,4284236655,4284236655,4284236655,4282593107,4282593107,4284236655,4284236655,4284236655,4284236655,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4280096798,4280096798,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4280096798,4280096798,4280096798,4280096798,4284440443,4284440443,4286022818,4286022818,4280096798,4280096798,4289593344,4289593344,4286022818,4286022818,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4284236655,4284236655,4284236655,4284236655,4286022818,4286022818,4286022818,4286022818,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4282593107,4282593107,4284236655,4284236655,4284236655,4284236655,4282593107,4282593107,4284236655,4284236655,4284236655,4284236655,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4280096798,4280096798,4282593107,4282593107,4280096798,4280096798,4280096798,4280096798,4284440443,4284440443,4280096798,4280096798,4286022818,4286022818,4286022818,4286022818,4286022818,4286022818,4286022818,4286022818,4284440443,4284440443,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4284236655,4284236655,4284440443,4284440443,4286022818,4286022818,4280096798,4280096798,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4284236655,4284236655,4284236655,4284236655,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4284236655,4284236655,4284236655,4284236655,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4280096798,4280096798,4282593107,4282593107,4280096798,4280096798,4280096798,4280096798,4284440443,4284440443,4280096798,4280096798,4286022818,4286022818,4286022818,4286022818,4286022818,4286022818,4286022818,4286022818,4284440443,4284440443,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4284236655,4284236655,4284440443,4284440443,4286022818,4286022818,4280096798,4280096798,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4284236655,4284236655,4284236655,4284236655,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4284236655,4284236655,4284236655,4284236655,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4282593107,4282593107,4282593107,4282593107,4280096798,4280096798,4284440443,4284440443,4280096798,4280096798,4286022818,4286022818,4284440443,4284440443,4294965718,4294965718,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4280096798,4280096798,4284440443,4284440443,4286022818,4286022818,4280096798,4280096798,4289593344,4289593344,4286022818,4286022818,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4280096798,4280096798,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4284236655,4284236655,4284236655,4284236655,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4282593107,4282593107,4282593107,4282593107,4280096798,4280096798,4284440443,4284440443,4280096798,4280096798,4286022818,4286022818,4284440443,4284440443,4294965718,4294965718,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4280096798,4280096798,4284440443,4284440443,4286022818,4286022818,4280096798,4280096798,4289593344,4289593344,4286022818,4286022818,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4280096798,4280096798,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4284236655,4284236655,4284236655,4284236655,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4284236655,4284236655,4280096798,4280096798,4282593107,4282593107,4280096798,4280096798,4284236655,4284236655,4284236655,4284236655,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4284440443,4284440443,4280096798,4280096798,4286022818,4286022818,4286022818,4286022818,4286022818,4286022818,4286022818,4286022818,4284440443,4284440443,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4282593107,4282593107,4284236655,4284236655,4282593107,4282593107,4284236655,4284236655,4280096798,4280096798,4284236655,4284236655,4286022818,4286022818,4282593107,4282593107,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4284236655,4284236655,4280096798,4280096798,4282593107,4282593107,4280096798,4280096798,4284236655,4284236655,4284236655,4284236655,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4284440443,4284440443,4280096798,4280096798,4286022818,4286022818,4286022818,4286022818,4286022818,4286022818,4286022818,4286022818,4284440443,4284440443,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4282593107,4282593107,4284236655,4284236655,4282593107,4282593107,4284236655,4284236655,4280096798,4280096798,4284236655,4284236655,4286022818,4286022818,4282593107,4282593107,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4286022818,4286022818,4284236655,4284236655,4284236655,4284236655,4280096798,4280096798,4280096798,4280096798,4284236655,4284236655,4284440443,4284440443,4286022818,4286022818,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4284236655,4284236655,4284440443,4284440443,4284440443,4284440443,4282593107,4282593107,4280096798,4280096798,4286022818,4286022818,4280096798,4280096798,4286022818,4286022818,4284440443,4284440443,4294965718,4294965718,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4284236655,4284236655,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4280096798,4280096798,4284236655,4284236655,4284236655,4284236655,4286022818,4286022818,4286022818,4286022818,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4286022818,4286022818,4284236655,4284236655,4284236655,4284236655,4280096798,4280096798,4280096798,4280096798,4284236655,4284236655,4284440443,4284440443,4286022818,4286022818,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4284236655,4284236655,4284440443,4284440443,4284440443,4284440443,4282593107,4282593107,4280096798,4280096798,4286022818,4286022818,4280096798,4280096798,4286022818,4286022818,4284440443,4284440443,4294965718,4294965718,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4284236655,4284236655,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4280096798,4280096798,4284236655,4284236655,4284236655,4284236655,4286022818,4286022818,4286022818,4286022818,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4286022818,4286022818,4284440443,4284440443,4284440443,4284440443,4284440443,4284440443,4286022818,4286022818,4286022818,4286022818,4284440443,4284440443,4280096798,4280096798,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4284236655,4284236655,4284440443,4284440443,4290081457,4290081457,4284236655,4284236655,4282593107,4282593107,4280096798,4280096798,4284440443,4284440443,4284236655,4284236655,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4282593107,4282593107,4284236655,4284236655,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4280096798,4280096798,4284236655,4284236655,4284440443,4284440443,4286022818,4286022818,4280096798,4280096798,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4286022818,4286022818,4284440443,4284440443,4284440443,4284440443,4284440443,4284440443,4286022818,4286022818,4286022818,4286022818,4284440443,4284440443,4280096798,4280096798,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4284236655,4284236655,4284440443,4284440443,4290081457,4290081457,4284236655,4284236655,4282593107,4282593107,4280096798,4280096798,4284440443,4284440443,4284236655,4284236655,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4282593107,4282593107,4284236655,4284236655,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4280096798,4280096798,4284236655,4284236655,4284440443,4284440443,4286022818,4286022818,4280096798,4280096798,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4284236655,4284236655,4284440443,4284440443,4284236655,4284236655,4286022818,4286022818,4286022818,4286022818,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4284236655,4284236655,4290081457,4290081457,4282593107,4282593107,4284236655,4284236655,4284236655,4284236655,4282593107,4282593107,4284236655,4284236655,4284440443,4284440443,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4284236655,4284236655,4282593107,4282593107,4282593107,4282593107,4280096798,4280096798,4280096798,4280096798,4284440443,4284440443,4286022818,4286022818,4280096798,4280096798,4289593344,4289593344,4286022818,4286022818,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4284236655,4284236655,4284440443,4284440443,4284236655,4284236655,4286022818,4286022818,4286022818,4286022818,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4284236655,4284236655,4290081457,4290081457,4282593107,4282593107,4284236655,4284236655,4284236655,4284236655,4282593107,4282593107,4284236655,4284236655,4284440443,4284440443,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4284236655,4284236655,4282593107,4282593107,4282593107,4282593107,4280096798,4280096798,4280096798,4280096798,4284440443,4284440443,4286022818,4286022818,4280096798,4280096798,4289593344,4289593344,4286022818,4286022818,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4280096798,4280096798,4282593107,4282593107,4282593107,4282593107,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4284236655,4284236655,4290081457,4290081457,4282593107,4282593107,4284236655,4284236655,4284236655,4284236655,4280096798,4280096798,4286022818,4286022818,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4280096798,4280096798,4282593107,4282593107,4284236655,4284236655,4280096798,4280096798,4284440443,4284440443,4280096798,4280096798,4284440443,4284440443,4286022818,4286022818,4286022818,4286022818,4286022818,4286022818,4284440443,4284440443,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4280096798,4280096798,4282593107,4282593107,4282593107,4282593107,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4284236655,4284236655,4290081457,4290081457,4282593107,4282593107,4284236655,4284236655,4284236655,4284236655,4280096798,4280096798,4286022818,4286022818,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4280096798,4280096798,4282593107,4282593107,4284236655,4284236655,4280096798,4280096798,4284440443,4284440443,4280096798,4280096798,4284440443,4284440443,4286022818,4286022818,4286022818,4286022818,4286022818,4286022818,4284440443,4284440443,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4294902015,4294902015,4280096798,4280096798,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4284236655,4284236655,4284440443,4284440443,4290081457,4290081457,4282593107,4282593107,4284236655,4284236655,4282593107,4282593107,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4282593107,4282593107,4282593107,4282593107,4280096798,4280096798,4286022818,4286022818,4280096798,4280096798,4284440443,4284440443,4284440443,4284440443,4294965718,4294965718,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4294902015,4294902015,4280096798,4280096798,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4284236655,4284236655,4284440443,4284440443,4290081457,4290081457,4282593107,4282593107,4284236655,4284236655,4282593107,4282593107,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4282593107,4282593107,4282593107,4282593107,4280096798,4280096798,4286022818,4286022818,4280096798,4280096798,4284440443,4284440443,4284440443,4284440443,4294965718,4294965718,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4284236655,4284236655,4290081457,4290081457,4284236655,4284236655,4282593107,4282593107,4282593107,4282593107,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4284236655,4284236655,4284236655,4284236655,4280096798,4280096798,4282593107,4282593107,4280096798,4280096798,4284236655,4284236655,4284440443,4284440443,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4284236655,4284236655,4290081457,4290081457,4284236655,4284236655,4282593107,4282593107,4282593107,4282593107,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4284236655,4284236655,4284236655,4284236655,4280096798,4280096798,4282593107,4282593107,4280096798,4280096798,4284236655,4284236655,4284440443,4284440443,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4290081457,4290081457,4284236655,4284236655,4284236655,4284236655,4284236655,4284236655,4282593107,4282593107,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4286022818,4286022818,4284236655,4284236655,4284236655,4284236655,4284236655,4284236655,4280096798,4280096798,4280096798,4280096798,4284440443,4284440443,4284440443,4284440443,4286022818,4286022818,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4290081457,4290081457,4284236655,4284236655,4284236655,4284236655,4284236655,4284236655,4282593107,4282593107,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4286022818,4286022818,4284236655,4284236655,4284236655,4284236655,4284236655,4284236655,4280096798,4280096798,4280096798,4280096798,4284440443,4284440443,4284440443,4284440443,4286022818,4286022818,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4280096798,4280096798,4284236655,4284236655,4284440443,4284440443,4284440443,4284440443,4290081457,4290081457,4290081457,4290081457,4284236655,4284236655,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4284236655,4284236655,4284440443,4284440443,4284440443,4284440443,4284440443,4284440443,4284440443,4284440443,4284440443,4284440443,4286022818,4286022818,4286022818,4286022818,4284236655,4284236655,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4280096798,4280096798,4284236655,4284236655,4284440443,4284440443,4284440443,4284440443,4290081457,4290081457,4290081457,4290081457,4284236655,4284236655,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4284236655,4284236655,4284440443,4284440443,4284440443,4284440443,4284440443,4284440443,4284440443,4284440443,4284440443,4284440443,4286022818,4286022818,4286022818,4286022818,4284236655,4284236655,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4282593107,4282593107,4290081457,4290081457,4284236655,4284236655,4284236655,4284236655,4284440443,4284440443,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4280096798,4280096798,4282593107,4282593107,4282593107,4282593107,4286022818,4286022818,4286022818,4286022818,4286022818,4286022818,4284236655,4284236655,4284236655,4284236655,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4282593107,4282593107,4290081457,4290081457,4284236655,4284236655,4284236655,4284236655,4284440443,4284440443,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4282593107,4282593107,4280096798,4280096798,4282593107,4282593107,4282593107,4282593107,4286022818,4286022818,4286022818,4286022818,4286022818,4286022818,4284236655,4284236655,4284236655,4284236655,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4294902015,4294902015,4280096798,4280096798,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4290081457,4290081457,4284236655,4284236655,4282593107,4282593107,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4294902015,4294902015,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4294902015,4294902015,4280096798,4280096798,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4290081457,4290081457,4284236655,4284236655,4282593107,4282593107,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4294902015,4294902015,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4290081457,4290081457,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4290081457,4290081457,4282593107,4282593107,4282593107,4282593107,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4284440443,4284440443,4284236655,4284236655,4282593107,4282593107,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4284440443,4284440443,4284236655,4284236655,4282593107,4282593107,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4284440443,4284440443,4284440443,4284440443,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4284440443,4284440443,4284440443,4284440443,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4280096798,4280096798,4284236655,4284236655,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4280096798,4280096798,4284236655,4284236655,4280096798,4280096798,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4280096798,4280096798,4282593107,4282593107,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294902015,4294967295
DATA 4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295,4294967295



John
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Another Halloween Game SMcNeill 0 287 09-21-2025, 12:21 PM
Last Post: SMcNeill
  Endian conversion...Part 2, The Endian Is Nigh! tantalus 0 395 03-22-2025, 09:43 PM
Last Post: tantalus
  simple 2D vector graphics part 25 madscijr 0 574 11-18-2022, 04:25 PM
Last Post: madscijr
  simple 2D vector graphics part 19 madscijr 1 672 11-18-2022, 05:12 AM
Last Post: Pete
  simple 2D vector graphics part 2: moving in the direction of an angle madscijr 4 1,733 10-28-2022, 10:36 PM
Last Post: madscijr

Forum Jump:


Users browsing this thread: