SQLite format 3@  .WJ V ^ O- & m a cQ }tabletracertracer CREATE TABLE tracer ( -- A row per file indicating the tracer used for that file. file_id integer primary key, tracer text, foreign key (file_id) references file (id) ) etablearcarc CREATE TABLE arc ( -- If recording branches, a row per context per from/to line transition executed. file_id integer, -- foreign key to `file`. context_id integer, -- foreign key to `context`. fromno integer, -- line number jumped from. tono integer, -- line number jumped to. foreign key (file_id) references file (id), foreign key (context_id) references context (id), unique (file_id, context_id, fromno, tono) )% 9indexsqlite_autoindex_arc_1arc qtableline_bitsline_bits CREATE TABLE line_bits ( -- If recording lines, a row per context per file executed. -- All of the line numbers for that file/context are in one numbits. file_id integer, -- foreign key to `file`. context_id integer, -- foreign key to `context`. numbits blob, -- see the numbits functions in coverage.numbits foreign key (file_id) references file (id), foreign key (context_id) references context (id), unique (file_id, context_id) )1 Eindexsqlite_autoindex_line_bits_1line_bits  tablecontextcontextCREATE TABLE context ( -- A row per context measured. id integer primary key, context text, unique (context) )-Aindexsqlite_autoindex_context_1contextqtablefilefileCREATE TABLE file ( -- A row per file measured. id integer primary key, path text, unique (path) )';indexsqlite_autoindex_file_1file[tablemetametaCREATE TABLE meta ( -- Key-value pairs, to record metadata about the data key text, value text, unique (key) -- Possible keys: -- 'has_arcs' boolean -- Is this data recording branches? -- 'sys_argv' text -- The coverage command line that recorded the data. -- 'version' text -- The version of coverage.py that made the file. -- 'when' text -- Datetime when the file was created. )';indexsqlite_autoindex_meta_1meta++utablecoverage_schemacoverage_schemaCREATE TABLE coverage_schema ( -- One row, to record the version of the schema in this db. version integer )   has_arcs0version7.3.1  has_arcs  version "d > n ! A Z  ^  q ~)*cG"/home/jenkins/workspace/NBI-stage_2_master/osm_nbi/subscriptions.pyB! /home/jenkins/workspace/NBI-stage_2_master/osm_nbi/html_out.py< /home/jenkins/workspace/NBI-stage_2_master/osm_nbi/nbi.pyG/home/jenkins/workspace/NBI-stage_2_master/osm_nbi/notifications.py>/home/jenkins/workspace/NBI-stage_2_master/osm_nbi/auth.pyT-/home/jenkins/workspace/NBI-stage_2_master/osm_nbi/tests/pmjob_mocks/response.pyQ'/home/jenkins/workspace/NBI-stage_2_master/osm_nbi/tests/test_pmjobs_topic.pyT-/home/jenkins/workspace/NBI-stage_2_master/osm_nbi/tests/test_instance_topics.pyS+/home/jenkins/workspace/NBI-stage_2_master/osm_nbi/tests/test_db_descriptors.pyM/home/jenkins/workspace/NBI-stage_2_master/osm_nbi/tests/test_osm_vnfm.pyO#/home/jenkins/workspace/NBI-stage_2_master/osm_nbi/tests/test_base_topic.pyQ'/home/jenkins/workspace/NBI-stage_2_master/osm_nbi/tests/test_admin_topics.pyS+/home/jenkins/workspace/NBI-stage_2_master/osm_nbi/osm_vnfm/vnf_subscription.pyM/home/jenkins/workspace/NBI-stage_2_master/osm_nbi/subscription_topics.pyG/home/jenkins/workspace/NBI-stage_2_master/osm_nbi/pmjobs_topics.pyW3/home/jenkins/workspace/NBI-stage_2_master/osm_nbi/osm_vnfm/vnf_instance_actions.pyO#/home/jenkins/workspace/NBI-stage_2_master/osm_nbi/osm_vnfm/base_methods.pyP%/home/jenkins/workspace/NBI-stage_2_master/osm_nbi/osm_vnfm/vnf_instances.pyK/home/jenkins/workspace/NBI-stage_2_master/osm_nbi/osm_vnfm/__init__.pyM/home/jenkins/workspace/NBI-stage_2_master/osm_nbi/vnf_instance_topics.pyI/home/jenkins/workspace/NBI-stage_2_master/osm_nbi/instance_topics.pyF /home/jenkins/workspace/NBI-stage_2_master/osm_nbi/admin_topics.pyI /home/jenkins/workspace/NBI-stage_2_master/osm_nbi/authconn_tacacs.pyK /home/jenkins/workspace/NBI-stage_2_master/osm_nbi/authconn_internal.pyK /home/jenkins/workspace/NBI-stage_2_master/osm_nbi/authconn_keystone.py@ /home/jenkins/workspace/NBI-stage_2_master/osm_nbi/engine.py?/home/jenkins/workspace/NBI-stage_2_master/osm_nbi/utils.pyK/home/jenkins/workspace/NBI-stage_2_master/osm_nbi/descriptor_topics.pyT-/home/jenkins/workspace/NBI-stage_2_master/osm_nbi/tests/test_pkg_descriptors.pyD /home/jenkins/workspace/NBI-stage_2_master/osm_nbi/validation.pyD /home/jenkins/workspace/NBI-stage_2_master/osm_nbi/base_topic.pyB /home/jenkins/workspace/NBI-stage_2_master/osm_nbi/authconn.pyB /home/jenkins/workspace/NBI-stage_2_master/osm_nbi/__init__.pyV1/home/jenkins/workspace/NBI-stage_2_master/osm_nbi/tests/test_descriptor_topics.py "e B! "  o d [ _ r  + *?  H/home/jenkins/workspace/NBI-stage_2_master/osm_nbi/subscriptions.py"C /home/jenkins/workspace/NBI-stage_2_master/osm_nbi/html_out.py!=/home/jenkins/workspace/NBI-stage_2_master/osm_nbi/nbi.py H/home/jenkins/workspace/NBI-stage_2_master/osm_nbi/notifications.py?/home/jenkins/workspace/NBI-stage_2_master/osm_nbi/auth.pyU-/home/jenkins/workspace/NBI-stage_2_master/osm_nbi/tests/pmjob_mocks/response.pyR'/home/jenkins/workspace/NBI-stage_2_master/osm_nbi/tests/test_pmjobs_topic.pyU-/home/jenkins/workspace/NBI-stage_2_master/osm_nbi/tests/test_instance_topics.pyT+/home/jenkins/workspace/NBI-stage_2_master/osm_nbi/tests/test_db_descriptors.pyN/home/jenkins/workspace/NBI-stage_2_master/osm_nbi/tests/test_osm_vnfm.pyP#/home/jenkins/workspace/NBI-stage_2_master/osm_nbi/tests/test_base_topic.pyR'/home/jenkins/workspace/NBI-stage_2_master/osm_nbi/tests/test_admin_topics.pyT+/home/jenkins/workspace/NBI-stage_2_master/osm_nbi/osm_vnfm/vnf_subscription.pyN/home/jenkins/workspace/NBI-stage_2_master/osm_nbi/subscription_topics.pyH/home/jenkins/workspace/NBI-stage_2_master/osm_nbi/pmjobs_topics.pyX3/home/jenkins/workspace/NBI-stage_2_master/osm_nbi/osm_vnfm/vnf_instance_actions.pyP#/home/jenkins/workspace/NBI-stage_2_master/osm_nbi/osm_vnfm/base_methods.pyQ%/home/jenkins/workspace/NBI-stage_2_master/osm_nbi/osm_vnfm/vnf_instances.pyL/home/jenkins/workspace/NBI-stage_2_master/osm_nbi/osm_vnfm/__init__.pyN/home/jenkins/workspace/NBI-stage_2_master/osm_nbi/vnf_instance_topics.pyJ/home/jenkins/workspace/NBI-stage_2_master/osm_nbi/instance_topics.pyG/home/jenkins/workspace/NBI-stage_2_master/osm_nbi/admin_topics.py J/home/jenkins/workspace/NBI-stage_2_master/osm_nbi/authconn_tacacs.py L/home/jenkins/workspace/NBI-stage_2_master/osm_nbi/authconn_internal.py L/home/jenkins/workspace/NBI-stage_2_master/osm_nbi/authconn_keystone.py A/home/jenkins/workspace/NBI-stage_2_master/osm_nbi/engine.py @/home/jenkins/workspace/NBI-stage_2_master/osm_nbi/utils.pyL/home/jenkins/workspace/NBI-stage_2_master/osm_nbi/descriptor_topics.pyU-/home/jenkins/workspace/NBI-stage_2_master/osm_nbi/tests/test_pkg_descriptors.pyE /home/jenkins/workspace/NBI-stage_2_master/osm_nbi/validation.pyE /home/jenkins/workspace/NBI-stage_2_master/osm_nbi/base_topic.pyC /home/jenkins/workspace/NBI-stage_2_master/osm_nbi/authconn.pyC /home/jenkins/workspace/NBI-stage_2_master/osm_nbi/__init__.pyV1 /home/jenkins/workspace/NBI-stage_2_master/osm_nbi/tests/test_descriptor_topics.py   u$ X )   S cME w u .%  .y r`?6޽Ͽۼ7wھ}>;6ߧp챟?޿~U *$  ! D{ok;# Hw}}zA??~@$` @L?n[]ڷ_=~~w}{{n|{7?{sw{}{{oy{s7?~~mn۶   :=  ,_>~~% LqP_`@ߌ  / `PO o @`k@V LYnE[@@ _n>Ns8` @4g0tr|t0?H2/ NǞ|e_ހ  `>8b?  . @@@o  ^ @ޅ@ Z-??fp  l  X 0   @>  ~  `@ @ $s $_rѳ `^K۹ n3 @bw+o4ZZ(p=V||sN7,ҿ/}_ufwK`k6@y=w~6w}_޽_X 8S:~@@ο/A- \4 @I }_)s7k3721?/_@E/ 7a1{>|_</߀e JyƛC<;8Ι#8@[0@7ON @P@~g)&! &_t+H. ^ L38#F1f ` @ @  Y8 r˻_}ww9y{3gߞ}9g{{}}gw?s}3߻g}>s}}}3o=<{ww;>w]L~=s{&33gf>ǻֽs{Ϝ}{9{}{߹<{3&?߻ߛ 7}vohaZSLE>7