the file format is:
from construct import *
file_format=Struct(
'n_links'/ Int32ul, # number of links
'links'/ Array(this.n_links, Int32ul), # links
'n_Items' / ??? # how to do here ?
)
02000000 0C000000 10000000 55000000 AA000000
n_links link_0 link_1 value_of_link_0 value_of_link_1
how to parse 'n_Items' ?